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
[Shadow] Mas Ico Safe
#1
I need a script to use 'exori mas ico' safely and on all monsters
Reply

#2
Hello.

Cast spell when there are at least X monsters on screen and no players around.
local SPELL = 'exori mas ico'
local MONSTER_COUNT = 3 -- Min monsters amount to cast spell.

if maround() >= MONSTER_COUNT and paround() == 0 and cancast() then
    say(SPELL)
    wait(800, 1200)
end

Cast spell when there are at least X monsters on screen, no players around and you have enough mana
local SPELL = 'exori mas ico'
local MONSTER_COUNT = 3 -- Min monsters amount to cast spell.
local MIN_MANA = 200 -- Min mana to cast spell.

if maround() >= MONSTER_COUNT and paround() == 0 and cancast() and mp() >= MIN_MANA then
    say(SPELL)
    wait(800, 1200)
end

Cast spell when there are at least X monsters on screen, no players around, you have enough mana and targeting a monster.
local SPELL = 'exori mas ico'
local MONSTER_COUNT = 3 -- Min monsters amount to cast spell.
local MIN_MANA = 200 -- Min mana to cast spell.

if maround() >= MONSTER_COUNT and paround() == 0 and cancast() and mp() >= MIN_MANA and attacked().id > 0 then
    say(SPELL)
    wait(800, 1200)
end
Reply

#3
Arkilys,

Could you adapt the above script to use mana rune when the health is above x%?

Also, if possible, only attack when the monster is targeted.


Thanksss!
Reply

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

I recommend you to use Healer for that, so you don't mess up with it. Simply create a rule below/after the rule that you use to actually heal.

I've added only when monster is targeted.
Reply

#5
Thanks!
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016