ado21 / DynamicMacros

Addon designed for WoW
5 stars 2 forks source link

Issues #2

Closed KingGlyph closed 1 year ago

KingGlyph commented 1 year ago

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

ado21 commented 1 year ago

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.

KingGlyph commented 1 year ago

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

Great addon btw, appreciate you.

ado21 commented 1 year ago

Glad you made it work.