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
Drink mana fluid from ground
#1
Exclamation 
I'v been trying to find a script that drinks mana fluids from the ground.

exampel: if i buy alot of mana fluids and they will drop under me. could there be a script that drinks it?

would be greatful if anyone could help me 
|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.loading="lazy" alt="[Image: smile.png]" class="mycode_img" />
Reply

#2
Hello.

I think this should work.
local FLASK_ID = 0 -- Move empty vial to another sqm after using fluid? Setup flask id OR setup 0 to dont.

local item_tile = topitem(posx(), posy(), posz(), false)
while (item_tile.id == 2874 and item_tile.count == 7) or item_tile.id == 5595 or item_tile.id == 5596 or item_tile.id == 5597 or item_tile.id == 5598 do
    useitemon(item_tile.id, item_tile.posx, item_tile.posy, item_tile.posz, ground(item_tile.posx, item_tile.posy, item_tile.posz))
    wait(500, 800)
    if FLASK_ID ~= nil and FLASK_ID > 0 then
        wait(200, 400)
        moveitems(FLASK_ID, ground(item_tile.posx + 1, item_tile.posy, item_tile.posz), ground(item_tile.posx, item_tile.posy, item_tile.posz))
        wait(500, 800)
    end
    item_tile = topitem(posx(), posy(), posz(), false)
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016