Log in

View Full Version : Paladin Quiver Refiller script



Tjenalena
04-14-2021, 11:45 AM
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! :D

bocian25
04-22-2021, 07:47 PM
+1 my friend, anyone can make it?

thepretty
04-25-2021, 12:21 AM
x2 uhmmmm

Kuken32
05-01-2021, 10:19 AM
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 :




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)

Werewoolf
05-10-2021, 07:17 PM
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.

Sprayndpray
05-11-2021, 05:42 AM
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?

mocoba
05-11-2021, 04:37 PM
please guys we need help
anyone have this script ??

Werewoolf
05-12-2021, 10:55 AM
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?

mocoba
05-12-2021, 12:53 PM
any help guys

mocoba
05-12-2021, 09:52 PM
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)

nitroxwizard
06-08-2021, 01:03 PM
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?

any solution for this?

jarek121
09-02-2021, 08:54 AM
any solution for this?
find this:

Self.OpenMainBackpack(true):OpenChildren({_supplie sBackpack, true}, {_stackBackpack, true}, {_rareBackpack, true}, {_goldBackpack, true}, {_ammoBackpack, true})
wait(200, 400)
until SolidScripts.CheckBackpacks(6)
then add this:

Self.UseItemFromEquipment("shield")