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
Alert on Mana X%
#1
An alarm that tells you once you've reached X ammount of mana

I wanna do the runes myself so I'm even safer but sometimes when I check I'm full mana so an alarm that lets me know when I'm getting to full mana would be great!

Thankssss
Reply

#2
Hello.

if mp() >= 500 then
    playsound('default')
    flashclient()
end
Reply

#3
works ! thx!
Reply

#4
if mp() >= 500 then
    playsound('default')
    flashclient()
end


If i add to say something because the default sound is quite annoying will it work? like this


if mp() >= 500 then
    speech("Max Mana Reached")
    flashclient()
end


Also for the rune maker will it work?



local mana_gain_alert = 1 -- More than this value means alert and disable runemaker, wait 10-15s and enable again.
if connected() then
    LAST_MANA = LAST_MANA or mp()
    local current_mana = mp()
    if (current_mana - LAST_MANA) > mana_gain_alert then
        speech("You got more then 1 mana be carefull")
        flashclient()
        setsettings('Runemaker/Enabled', false)
        wait(10000, 15000)
        setsettings('Runemaker/Enabled', true)
    end

    LAST_MANA = current_mana
else
    LAST_MANA = nil
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016