So i made a macro for healing with trmor totem and i cant figure it out.
What i tried was:
#showtooltip
/stopcasting
/stopcasting
/cast tremor totem
And if i was healing with my mouse over a player still it would interrupt the heal but not drop totem. If i was hovering over the ground it would cancel and drop totem.
So what I made was:
#showtooltip
/stopcasting
/stopcasting
/cast tremor totem
/cast tremor totem
Which now works fine every time. So I can understand why the first doesnt work what did I do wrong? I added the second line as a joke but now Iām not laughing.
Because the actual ācastingā of Tremor Totem has a radial I think it requires differnet macro lines.
Something like:
#showtooltip Tremor Totem
/cast [@cursor] Tremor Totem
This didnt change anything for me. Still just stops my cast but then doesnt drop totem. I like where youre heads at though. I tried [] and [@player] too
Maybe its a GCD issue? You may have to hit the macro once to āactivateā the spell then again to ādropā the totem wherever the mouse cusor is.
1 Like
And at that point that would be fine if I always just assumed i had to hit it 2 times. Once to stop casting, a second time to cast it. I just cant figure out why its not playing ball with me. As you said, the totem always drops at the player so thats why i cant figure out why hovering over a player can be any sort of a conditional issue.
edit: so i did the following macro still cant explain it. Seems if I cast this too quickly after io cast a heal it only interrupts, no totem. If i wait till the heal is half cast then it all goes off with out a hitch. Cant explain any of it but im done fussing. thanks for the help.
#showtooltip tremor totem
/stopcasting
/cast [@mouseover][] tremor totem
Tremor doesnāt use a radial. Just plonks down.
Could just be a GCD issue.
2 Likes
Its the GCD
I use
#show Tremor Totem(Earth Totem)
/stopcasting
/cast Tremor Totem(Earth Totem)
You cant just stop casting at he beginning and drop the totem. So if you immediately use this macro as you start to cast you are in the GCD window and it will make you stop casting but not drop the totem.
However right after you cast you can āload the next spellā before the end of the GCD so as soon as the GCD ends it immediately goes to the next spell.
As you enter this part of the GCD the macro is one push. It seems to be about halfway of the GCD.
Before this you have to double mash it. No amount of lines is going to change it. You are just at the mercy of the GCD.
Iām embarrassed to admit I was tired, thought GCD was āgreatest common denominatorā and meant there was a logic issue. Everyone was right, the global cool down was the actual problem and I thought it was strange things causing it. Thanks for the help.
2 Likes