NEW VERSION:
Code: Select all
|PL-Easy, KISS Continuous Heal
----------------------------------------
|Where it says "PctHPs}<70) {" Change the 70 to What % You Want To Heal At
|Where it says "/cast 8", make sure you replace with whatever spell slot you'd like to continually cast @ that percent
|Where it says "/target", make sure you replace with whoever you're trying to heal
---------------------------------------------------
|v1.01 Added the "/if (${Me.Casting.ID})" Command to keep from spamming if you're already casting (thanks A_Druid_00)
---------------------------------------------------
|v1.02 Added a "/target" command just put whoever you're looking to heal after /target (IE. /target Iamnoob)
---------------------------------------------------
|v1.03 Changed some things to work correctly (thx lum and LPW)
---------------------------------------------------
|v1.04 Changed to work with/without Mounts, will Auto-Sit Now. (thx peach and summar)
-----------------------------
#turbo
Sub Main
:loop
/if (${Me.Casting.ID}) /goto :loop
/target
/if (${Target.PctHPs}<70) {
/goto :heal
} else {
/goto :loop
}
:heal
/cast 8
/if (${Me.Standing} && !${Me.Mount.ID}) /sit
}
/goto :loopThis macro could also be changed in such a way that you could practice a spell. Just target an NPC in PoK or Bazaar and set the "/cast" command to what spell you'd like to practice(Abjur, Evoc, Alter etc...). Just put a low level of the spell in the slot, so that you always have enough mana, and start it up. Make sure you change the Pct Hps to heal at to 100% so it will just continually do it...




