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
FREE Alert if moved far away / "teleported"
#1
Hello.

Alerts -> GM Detect already detects when you changed your location X sqms always since last check. X = the value that you setup on it. It's "0" by default, which means disabled. It's not 100% on high lvl characters, since you would walk fast there as well.

You can could make your own alerts using Persistents, something like:
local DISTANCE_ALERT = 3 -- If your character went X sqms far from last check then trigger.
local PAUSE = false -- Pause bot?


if LAST_X == nil or LAST_Y == nil then
    LAST_X = posx()
    LAST_Y = posy()
end

if proximity(LAST_X, LAST_Y, posx(), posy()) >= DISTANCE_ALERT then
    playsound('default')
    flashclient()
    if PAUSE then
        pausebot(true)
    end
end
I recommend you to use VERY VERY VERY LOW interval on Persistents, like 50 ms or so.
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016