Log in

View Full Version : Help with firewalker boots



manllo
08-16-2016, 02:49 AM
Hey guys, I was trying to use a script I found in the forums for refilling my firewalker boots, which is the following


local bp = 'blue bag'



while(true) do

c = Container.GetByName(bp)

if(Self.Feet().id ~= 9019 and Self.Feet().id == 9020) then

for spot = 0, c:ItemCount()-1 do

if c:GetItemData(spot).id == 676 then

Self.Dequip("feet", c)

wait(400,500)

c:UseItemWithContainerItem(spot, 1, 0)

wait(400,500)

Self.Equip(9019, "feet")

end

end

end

wait(2000)

end


I do understand everything it is doing, and it does remove the boots from the slot, but when trying to refilling them it just says "Sorry, not possible."

I have tried tweaking the script a bit but cannot make it work. Any help would be appreciated.

Thanks!