Page 1 of 1
Macro help!
Posted: Fri Apr 20, 2007 2:41 pm
by heartless_
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.
Posted: Fri Apr 20, 2007 3:21 pm
by Skyfire
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.

Posted: Fri Apr 20, 2007 3:36 pm
by Babs
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:
Code: Select all
/cast [harm,button:1] Stormstrike
/cast [harm,button:2] Purge
/startattack [harm]
the harm part is to prevent error mesages when targeting a friendly player.
Posted: Fri Apr 20, 2007 4:31 pm
by heartless_
This should work somehow though. You can make a macro to drop three different totems with a single button. But I can't seem to get the same logic to work for this situation :/
Posted: Fri Apr 20, 2007 8:18 pm
by heartless_
Hmmm... wonder if this will work. Can't test it right now.
Code: Select all
/castsequence reset=1 Stormstrike, Purge(Rank 2)
Posted: Fri Apr 20, 2007 9:01 pm
by DM.
/castsequence reset=1 Stormstrike, Purge(Rank 2)
That should cast Stormstrike first then if you click it again within 1 second it will cast Purge. But since the Global Cooldown is a bit longer than 1 second it wont do anything
So change 1 to the cooldown of Stormstrike and it should work.