AP-PoM-Pyro Macro

Posted:
Sun Jun 14, 2015 9:18 pm
by Lindow
So I made sure I tested every single macro that I could find googling before I wrote this thread. I just can't get it working, so there must be something with this patch build that is messing with it and that I'm obviously unaware of.
Like, I'm not even getting close to a 1 button macro, heck, best case scenario I have to press it twice to fully work. But even then, Arcane Power fades after pressing the macro for the 2nd time. So what it does is, it casts AP on first press, then AP fades and PoM is cast on second press, then instant Pyro is fired on 3rd press.
I swear I've tested all kinds of macros, but none of them seem to work.
Re: AP-PoM-Pyro Macro

Posted:
Sun Jun 14, 2015 11:25 pm
by Lindow
After some more research, I came across this thread that gives a working solution using an addon called Supermacro.
http://www.wow-one.com/forum/topic/2427 ... esnt-work/Now I have to figure out how to add a trinket use in there.
EDIT: Just added ' /run if not SNE then UseInventoryItem(13); end ' and it worked fine.
I hope this helps someone else!
Re: AP-PoM-Pyro Macro

Posted:
Wed Jun 17, 2015 8:41 pm
by Milton3450
Thx, gonna use this when I hit level 60.
Re: AP-PoM-Pyro Macro

Posted:
Mon Dec 14, 2015 8:24 am
by Passionara
Bumping this thread.
Can anyone share the common macro for using ap/pom/trinket/pyro?
If ap/pom cant be combined, is there a macro for ap/trinket/pyro?
Many thanks
Re: AP-PoM-Pyro Macro

Posted:
Tue Dec 15, 2015 12:14 am
by Dreez
Passionara wrote:Bumping this thread.
Can anyone share the common macro for using ap/pom/trinket/pyro?
If ap/pom cant be combined, is there a macro for ap/trinket/pyro?
Many thanks
- Code: Select all
/run local c=CastSpellByName a=GetActionCooldown UseInventoryItem(13) if(a(2)==0 and a(3)==0) then c("Arcane Power") end if (a(3)==0 and a(2)>=1) then c("Presence of Mind") end c("Pyroblast")
where 2 is the action bar slot Arcane power is on
3 is the action bar slot Presence of Mind is on
and 13 is the upper trinket slot (14 would be the lower)
you will definitely have to press it multiple times, there's no macro with multiple spell actions that only needs one key press
Re: AP-PoM-Pyro Macro

Posted:
Tue Dec 15, 2015 11:27 am
by Dreez
edited it, accidentally put in Arcane Explosion instead of Pyroblast^^
Re: AP-PoM-Pyro Macro

Posted:
Fri Dec 18, 2015 6:35 am
by Ohhgee
My best advice for AP PoM Pyro is visit a class trainer and respec immediately
Re: AP-PoM-Pyro Macro

Posted:
Fri Dec 18, 2015 6:55 pm
by furier
Dreez wrote:- Code: Select all
/run local c=CastSpellByName a=GetActionCooldown UseInventoryItem(13) if(a(2)==0 and a(3)==0) then c("Arcane Power") end if (a(3)==0 and a(2)>=1) then c("Presence of Mind") end c("Pyroblast")
Can not get this macro to work
Re: AP-PoM-Pyro Macro

Posted:
Fri Dec 18, 2015 7:18 pm
by Dreez
what error message do you get? It worked perfectly fine for me
also remember this:
Dreez wrote:where 2 is the action bar slot Arcane power is on
3 is the action bar slot Presence of Mind is on
and 13 is the upper trinket slot (14 would be the lower)
you will definitely have to press it multiple times, there's no macro with multiple spell actions that only needs one key press