Log in

View Full Version : Anti para



Kristaps
02-06-2015, 06:07 PM
Hello.
I have a question, how can I fix bot, that he is prioritizing healing with GHP, not curing anti paralyze. Because the monsters pumps my mana to 0 and while he's trying to cure anti paralzye with exura ico, the health potion ain't working , and i jsut simply die. any ideas how to fix this?
P.S. I hope u guys understood what I meant.

anoyn
02-06-2015, 06:57 PM
Not tested.
Remove anti-para from healing settings and use this instead.
Will only cast antiParaSpell when mana is greater than minMana,


antiParaSpell = "exura ico" -- spell to cast when paralyzed
minMana = 200 -- Must be greater than this to fix paralyze


Module.New('antiPara', function(antiPara)
if Self.isParalyzed() and Self.Mana() > minMana then
Self.Say(antiParaSpell)
end
antiPara:Delay(500)
end)

Kristaps
02-08-2015, 12:10 AM
Not tested.
Remove anti-para from healing settings and use this instead.
Will only cast antiParaSpell when mana is greater than minMana,


antiParaSpell = "exura ico" -- spell to cast when paralyzed
minMana = 200 -- Must be greater than this to fix paralyze


Module.New('antiPara', function(antiPara)
if Self.isParalyzed() and Self.Mana() > minMana then
Self.Say(antiParaSpell)
end
antiPara:Delay(500)
end)


Thank you! Working perfectly!