its very useful for the lazy beastlord who doesn't like to heal 3 or 4k 100hps per cast
Code: Select all
|This macro is my first attempt at making one
|What it does is just target and heal you upto full
|useage is /macro healme
|its easier to add /healme=/macro healme to your Aliases
|so here is Healme by lan
----------------------------------
|What spell do you use to heal yourself
#define healspell healing
#turbo
#Include spellcast.inc
Sub Main
:loop
/if (${Me.PctHPs}<100) {
/goto :healme
} else {
/popup We are done healing
/goto :end
}
:healme
/target Myself
/call Cast "healspell"
/goto :loop
:end
/echo ending
/endmacro
