I want a macro that can do the following.
1. Start attacking my target.
2. Cast Stormstrike if it is available.
3. If Stormstrike isn't cast (target is out of range, timer is up, etc.) I want it to cast Purge(Rank 2)
This one button would give me something to mash when in combat. It would hopefully use Purge until I'm in range for Stormstrike.
I can get a macro that does the first 2, but I am at a loss at how to get it to do a second thing.
Macro help!
Not allowed, since TBC came out, which was the conclusion of the people I was talking to over IRC. If you need confirmation: http://www.wowwiki.com/HOWTO:_Make_a_Macro#Logic
Sorries.
Sorries.

to bad there is no [range] option =(
however, what you can do is using mouse button 1 for SS, and mouse button 2 for purge:
the harm part is to prevent error mesages when targeting a friendly player.
however, what you can do is using mouse button 1 for SS, and mouse button 2 for purge:
Code: Select all
/cast [harm,button:1] Stormstrike
/cast [harm,button:2] Purge
/startattack [harm]
-
- Posts: 126
- Joined: Sun Jan 09, 2005 8:17 am
-
- Posts: 126
- Joined: Sun Jan 09, 2005 8:17 am
Hmmm... wonder if this will work. Can't test it right now.
Code: Select all
/castsequence reset=1 Stormstrike, Purge(Rank 2)