Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Drop blank rune
#1
Big Grin 
Hello, I need a script that drops blank runes from my backpack to under my feet so fast as it is possible, it would be cool to drop like 100 blank runes under my feet in few seconds not depending on how much cap I have but it can be done with cap < 2000


Changed this one
if cap() < 10 then

    while itemcount('fish') > 0 do

        moveitems('fish', ground(DROP_LOCATION.X, DROP_LOCATION.Y, DROP_LOCATION.Z), '', 100)

        wait(300, 800)

    end

end
to:
if cap() < 1100 then

    while itemcount('blankrune') > 0 do

        moveitems('blankrune', ground(DROP_LOCATION.X, DROP_LOCATION.Y, DROP_LOCATION.Z), '', 100)

        wait(300, 800)

    end

end
but it doesn't work.



#edit

and I need a script that pick up items from my under feet, also it have to pick as fast as it is possible
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Smile" title="Smile" class="smilie smilie_1" />
Reply

#2
I didn't understand what you meant about your cap.

"blankrune"? It's "blank rune". hehe
You didn't setup "DROP_LOCATION" variable.

To pickup instead of drop then you just need to reverse the parameters.

Drop
local DROP_LOCATION = { X = 12345, Y = 12345, Z = 6 }
if cap() < 1100 then

    while itemcount('blank rune') > 0 do

        moveitems('blank rune', ground(DROP_LOCATION.X, DROP_LOCATION.Y, DROP_LOCATION.Z), '', 100)

        wait(300, 800)

    end

end

Pickup
local DROP_LOCATION = { X = 12345, Y = 12345, Z = 6 }
if cap() < 1100 then
    local BLANK_ID = itemid('blank rune')
    while topitem(DROP_LOCATION.X, DROP_LOCATION.Y, DROP_LOCATION.Z, false).id == BLANK_ID do

        moveitems('blank rune', '', ground(DROP_LOCATION.X, DROP_LOCATION.Y, DROP_LOCATION.Z), 100)

        wait(300, 800)

    end

end
Reply

#3
Thank You boss, you're best!
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016