(My hotbutton 1
/target npc
/pause 10
/pet attack
I made it this way so I easy can change target without editing macro)
And another thing, if the pet isnt healed it doesnt ask for it again, I thought it would with this code?
Code: Select all
#define Pet.ID "$char(pet)"
#Event speed "Your restless nature fades."
#include SpellSub.mac
#include routines.mac
Sub Main
/echo Macro startet
:petcheck
/if $spawn(Pet.ID,hp,pct)<45 /call petheal
/delay 5s
/call kill
/goto :petcheck
/return
Sub Kill
:kill
/press 1
/face
/delay 90s
/press 3
/return
/goto :petcheck
Sub petheal
:petheal
/g heal my pet please
/delay 13s
/return
/goto :petcheck
Sub Event_speed
/press esc
/press esc
/press f1
/sit off
/cast 5
/delay 7s
/press f1
/cast 5
/delay 7s
/return
