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
I need script
#1
Wink 
Hello i need script i if lose per 1 s  for exaple 500 hp cavebot will  pause for 1 minute  and  say '??' . Bcse gm was teleporting to me and testing if i botting nad getting ban  . I will put healing per 3000ms and  i think will be ok
|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" />

#2
Hello.

You can't pause bot for 1 minute, because Pausing bot also pauses the persistents. But you can DISABLE specific tools (but all if you like) for 1 minute using setsettings() and wait().

For example, this script will: play sound, flash client, say "???", disable healer, cavebot, targeting and looter for 1 minute..
LAST_HP = LAST_HP or hp()

if (LAST_HP - hp()) >= 500 then
    playsound('gm_detected')
    flashclient()
    say('???')
    setsettings('Healer/Enabled', false)
    setsettings('Cavebot/Enabled', false)
    setsettings('Targeting/Enabled', false)
    setsettings('Looter/Enabled', false)
    wait(60000)
    setsettings('Healer/Enabled', true)
    setsettings('Cavebot/Enabled', true)
    setsettings('Targeting/Enabled', true)
    setsettings('Looter/Enabled', true)    
end

LAST_HP = hp()

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.

#4
I just noticed that it was missing a very important line, so i fixed it. I'm sorry!

LAST_HP = LAST_HP or hp()

if (LAST_HP - hp()) >= 500 then
    playsound('gm_detected')
    flashclient()
    say('???')
    setsettings('Healer/Enabled', false)
    setsettings('Cavebot/Enabled', false)
    setsettings('Targeting/Enabled', false)
    setsettings('Looter/Enabled', false)
    wait(60000)
    setsettings('Healer/Enabled', true)
    setsettings('Cavebot/Enabled', true)
    setsettings('Targeting/Enabled', true)
    setsettings('Looter/Enabled', true)    
end

LAST_HP = hp()



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016