Log in

View Full Version : Help with anti paralyze



Bjornen
01-03-2013, 06:24 AM
I have an issue with this Anti-Paralyze feature.

I have exura vita set to 95~% hp and anti-paralyze set to exura vita but it takes 2-3 seconds before it actually removes the paralyze.
I'm a lazy person. I know I can do it manually, but when I got a bot to do it, why do it manually?

Anyway, I tried with exura & utani gran hur - Still the same. Takes 2-3 seconds before it makes any spell to get rid of the paralyze.

Abuse
01-03-2013, 06:33 PM
I'm not much of a scripter, but im sure theres a LUA file where it will use anti-para instantly

Bjornen
01-10-2013, 09:45 AM
I'm not much of a scripter, but im sure theres a LUA file where it will use anti-para instantly

It didn't even cure the paralyze :(

Infernal Bolt
01-10-2013, 10:46 AM
I wrote this script a long time ago, it should work just fine.



cureSpell = "exura ico"
spellMana = 40

function curePara()
if (Self.Speed() < 250) then
print("Healing Paralyze")
Self.Cast(cureSpell, spellMana)
wait(300,700)
end
end

while true do
curePara()
wait(200,400)
end