DynamicMacros for PvP

DynamicMacros for PvP

4.6k Downloads

Issues

KingGlyph opened this issue ยท 3 comments

commented

When having damager macro e.g.

/cast [@damager] Intervene or /cast [@'..D..'] Intervene

This will be replaced to /cast @'..H..' Intervene, even when the player assigned is a damage dealer.

Additionally, if healer loads in first all macros will be replaced with healer name, if the damage dealer loads in second the code won't trigger to replace '..D..' with the damage dealer name, as it's already been changed to '..H..' and replaced with healer name.

image

image
image

commented

That is clearly not how addon works. Please read through documentation carefully. You used it completely wrong.

Intervene for healer only:
#showtooltip
/cast [@healer] Intervene

Intervene for damager only:
#showtooltip
/cast [@healer]
/cast [@damager] Intervene

Both in one macro:
#showtooltip
/cast [nomod,@healer] Intervene
/cast [mod:shift,@damager] Intervene

Additional hint: After entering arena wait like 3 seconds after all of your teammates joined into arena. After that you can open your macro window to verify results.

Everything is mentioned in documentation.

commented

I had an epiphany after I wrote the issue of how to make it work. Good to go.

Great addon btw, appreciate you.

commented

Glad you made it work.