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:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Runemaker Afk - Tibia Old
#1
Hello I would like some scripts to put in Cavebot's Action.

- Label "keep": drop the main backpack (I saw that it has the function "drop" in Steps, but only drops items inside the main backpack);

- Label "refill": pick up the backpack on the floor below the character and put it in place of the main backpack;

- Label "open bp": open the main backpack and open the bp of slot 20 (it doesn't have to be in another window);

- Label "check": check if blank runes is greater than 0, if there are no blank runes go to waypoint "keep";

- Label "time": wait 8 minutes, return to the label "check";


I'm playing Tibia-Old and it has the "!Auto" function where the character can use automatic spells
 100% AFK...

I would like to have the character check the last bp if he has blank runes, when he finishes making all the runes the character goes to the house, drops the main BP on the floor and takes another bp on the floor and goes back to the starting point.


I tried to configure a few times, but without success ...
Reply

#2
Hello.

Everything that you wanna do can be done by Runemaker, but if you really wanna use LUA Scripts...

Label "Keep"
local back_item = back()
if back_item.id > 0 then
    moveitems(back_item.id, ground(posx(), posy(), posz()), 'back', 100)
    wait(400, 600)
end

Label "Refill"
local item_tile = topitem(posx(), posy(), posz(), false)
if item_tile.id > 0 then
    moveitems(item_tile.id, 'back', ground(posx(), posy(), posz()), 100)
    wait(400, 600)
end

Label "open bp"
local back_item = back()
if back_item.id > 0 then
    local window_count = windowcount()
    openitem(back_item.id, 'back')
    wait(800, 1200)
    if windowcount() > window_count then
        openitemslot(19, '0')
        wait(800, 1200)
    end
end

Label "check"
if itemcount('blank rune') == 0 then
    gotolabel('keep')
end

Label "time"
wait(1000 * 60 * 8)
Reply

#3
Oh Nice...

I will test the codes.

Thank you for your attention
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016