Hi,
How I can make script to drop juicy roots from main bp to the ground?
Thanks 4help
Hi,
How I can make script to drop juicy roots from main bp to the ground?
Thanks 4help
--Drop Roots
auto(1000)
local DropRoots = true
local NumberRoots = 20
local mainbp = 'brocade backpack'
if $connected then
if DropRoots then
if maroundreachable() == 0 and itemcount(21291, mainbp) >= NumberRoots then
pausewalking(10000)
if itemcount(21291, mainbp) > 0 then
moveitems(21291, 'ground')
wait(234,456)
end
pausewalking(0)
end
end
end
cool, thanks a lot m8