Tried searching for solutions and the only one's i could find are castsequences, while i dont particularly dislike it, i just wanted to know if there were other solutions
Current macro is
#showtooltip
/use [target=mouseover,help,exists] [target=target,help,nodead] [target=targettarget,help,nodead] [target=player]14,13
The Trinkets i'm trying to use are
[Tarratus Keystone]
[Ishkar's Felshield Emitter]
One emits a shield, another an aoe a heal with an internal cooldown is about 20 seconds before i can use the other.
Obviously the macro doesnt work, once it uses one (the 13th one for some reason) it wont cast the 14th slot even if its ready to use.
Any way around this?
I tried setting up 2 commands like this
#showtooltip
/use [target=mouseover,help,exists] [target=target,help,nodead] [target=targettarget,help,nodead] [target=player]14
/use [target=mouseover,help,exists] [target=target,help,nodead] [target=targettarget,help,nodead] [target=player]13
But it still doesn't work. Thanks for the help in advance
They both trigger the GCD so they can't be macro'd together. You'll need to use a modifier.
#showtooltip
/use [mod,@mouseover,help,nodead] [mod,help,nodead] [mod,@targettarget,help,nodead] [mod,@player] 14; [@mouseover,help,nodead] [help,nodead] [@targettarget,help,nodead] [@player] 13
ah, and what's the modifier? is it the semi colon that does it?
just trying to understand the difference between both macros aside from the "mod" and semi colon
mod means any modifier, modifier being CTRL, ALT, or SHIFT.
you can also specify which modifier ie [mod:alt]
The ; acts as an "else" if you're at all familiar with programming.
What you originally had was basically this:
/use 14,13
And that comma , is incorrect syntax. Some macro commands use a comma like castsequence but cast/use does not.
You can use "cast" or " use" interchangeably but as Elvenbane pointed out you can't trigger them both simultaneously, it had to be activate macro->trigger trinket, activate macro again->next trinket
All I want to do is macro the one trinket (Ishkar's) and while I've tried all of those macros above, it still will cast the shield on me. It doesn't do that for any of my other mouseover macros.
Please help?
You sure you actually put the macro on your bar?
#showtooltip
/use [@mouseover,help,nodead] [help,nodead] [@targettarget,help,nodead] [@player] Ishkar's Felshield Emitter
/use [mod,@mouseover,help,nodead] [mod,help,nodead] [mod,@targettarget,help,nodead] [mod,@player] 14; [@mouseover,help,nodead] [help,nodead] [@targettarget,help,nodead] [@player] 13
this macro does not work.
the [mod,@player] seems to make one of them work but why was it not added to the 2nd one at the end?
tried fixing it for the 2nd one and nope still doesn't work.
10/31/2018 06:58 AMPosted by
Vìle
the [mod,@player] seems to make one of them work but why was it not added to the 2nd one at the end?
Without knowing the trinkets you're referring to we couldn't say.
Personally I'd use the following macro instead
/use [mod,@mouseover,help,nodead] [mod,help,nodead] [mod,@targettarget,help,nodead] [mod] 14; [@mouseover,help,nodead] [help,nodead] [@targettarget,help,nodead] [] 13