Simple Self Heal Event
Posted: Tue Feb 14, 2006 5:12 pm
I use this when I'm farming things, all it does is: if your HP are less then 99%, it cast's the specified spell, until your HP are > 99%
Useage = /echo healself
or add an alias
Recuires spell_routines.inc
-Edit: Updated 3/14/2006
Useage = /echo healself
or add an alias
Recuires spell_routines.inc
Code: Select all
#Event HealSelf "[MQ2] healself"
Sub Event_HealSelf
/if (${Me.PctHPs} > 99) {
/echo My HP's are FULL, you Fool!
/return
} else {
/echo My HP's are less then 99%, Healing Self.
:healloop
/target myself
|Edit Spell Name / Gem here
/call cast "Sylvan Water" gem2
/if (${Me.PctHPs} < 99) /goto :healloop
/echo # Done Healing Self to Full HP
}
/return