Has to be a better way

Wendel

New member
Joined
Oct 4, 2007
Messages
135
Reaction score
0
Points
0
Looking for a better way to do this... any suggestions?

Code:
Sub Event_KillCall

	/target ${maintank}
	/delay 2s
	/assist ${maintank}
        /face
	/delay 1s
	/alt act 2869
	/delay 8s
 	/alt act 2869
	/delay 8s
	/alt act 2869
	/delay 8s
	/alt act 2869
	/delay 8s

/return
 
moved this thread right over to the EverQuest General Chat, Requests & Questions area where it belongs
 
what does that alt ability do? Do you want to just do it 4 times? Do you want to do it until the target is dead or below x hitpoints? Lots of ways you can make that better but without knowing what you really want to do with it, it limits it.
 
It's a nuke, I want to do it til the target is dead.

Thanks!
 
Code:
Sub Event_KillCall
	/target ${maintank}
	/delay 2s
	/assist ${maintank}
        /face
:killloop
	/alt act 2869
        /delay 8s !${Target.ID}
/if !${Target.ID} /return
/goto :killloop

/return

This is not the best way, what is the name of the ability you are using? I need to know exactly what it is called, uncluding rk.ii or whatever
 
Last edited:
Requires mq2cast pretty sure this will work just how you want it.
Code:
Sub Event_KillCall

/assist ${maintank}
/delay 1s
/face
/if (${Target.Type.Equal[NPC]}) /casting "AANAME" -kill
/return
 
Thanks guys, the alt ablility is either ice comet or lava bolt

Just modding a macro that was posted, but the casting doesn't always work so well.
 
Just a follow up, JJ's method worked the best :)

Thanks again!