XenoBot Forums - Powered by vBulletin

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Quiver Refiller script

  1. #1

    Join Date
    Sep 2014
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Quiver Refiller script

    Hello, as the title says i want a script that refills the quiver when it has like 50 bolts/arrow left in it.
    Appreciate it!

  2. #2

    Join Date
    Apr 2021
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +1 my friend, anyone can make it?

  3. #3

    Join Date
    Nov 2015
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    x2 uhmmmm

  4. #4

    Join Date
    Dec 2020
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Elo, You guys could just use a script that move items and change the container to match the quiver name..

    I'll give you an example with 7seconds delay each try :


    Code:
    local ArrowID = {BOLTID}
    local ArrowBP = "NameOfArrow/BoltBackpack"
    local Quiver = "QuiverName"
    
    	Module.New("Move Suppliees", function()
    		local bp1 = Container(ArrowBP)
    			for spot, item in bp1:iItems() do
    				if (table.contains(ArrowID, item.id)) then
    					bp1:MoveItemToContainer(spot, Container.New(Quiver):Index()
                                            wait(7000)
    				break
    			end
    		end
    	end)

  5. #5

    Join Date
    May 2021
    Posts
    3
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm i wanted to use this script with crystalline arrows id" 15793
    ANd it doesn't work. I dont know where I do an error.
    Can someone help me please?
    21:16 XenoScript Error:
    Script: #quiver refill.lua
    Line #: 10
    Chunk: C:?Users?ASUS?DOCUME?1?XenoBot?Scripts???QUIVE?1.L UA
    Error: ')' expected (to close '(' at line 9) near 'wait'
    This is an error with user-input and should not be reported as a bug with XenoBot.

  6. #6

    Join Date
    May 2021
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im also wanting to bot my paladin but the server im on uses quivers and the built in scripts dont take quivers into account when loading ammo, it tries to put them in the hand. Is there anything i can do to amend this?

  7. #7

    Join Date
    Jan 2016
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    please guys we need help
    anyone have this script ??

  8. #8

    Join Date
    May 2021
    Posts
    3
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The probleme is where I go refill and bot restes BP then it doesn't open quiver and after refill the bot cant move arrows when quiver is closed. How can we repair it?

  9. #9

    Join Date
    Jan 2016
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any help guys

  10. #10

    Join Date
    Jan 2016
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i fixed error but script not working
    local ArrowID = {15793}
    local ArrowBP = "Crystalline Arrow/Jewelled Backpack"
    local Quiver = "Quiver"

    Module.New("Move Suppliees", function()
    local bp1 = Container(ArrowBP)
    for spot, item in bp1:iItems() do
    if (table.contains(ArrowID, item.id)) then
    bp1:MoveItemToContainer(spot, Container.New(Quiver):Index())
    wait(700)
    break
    end
    end
    end)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •