I want to set set marks when I target my team in arena. This is due to the bug which causes marks to disappear when classes stealth or go invis. However, I want to have it done only once in a given time frame or set it only if mark is not present.
I know I can do the following and put it in my target [@arena1] and so on macro: /script SetRaidTarget("target", number);
However, I have party members targetting on my scroll on the mouse:
-> scroll up - player -> middle button - party1 -> scroll down - party2
which causes the mark to disappear every even number of clicks on the scroll wheel (If I move scroll two clicks it will mark and remove mark).
Easiest way would be to have your teammate(s) make their own macro, something along the lines of this would be efficient, allowing you to spam your stealth macro while also putting up the symbol.
For Druids it’d look like;
Can you try the following macro? I set it up to set a star on party1 when used:
/run local i,u=1,"party1"if UnitExists(u)and i~=GetRaidTargetIndex(u)then SetRaidTarget(u,i)end
If it works you can change the start bit that says 1,"party1" to any number 1 to 8 for the eight different markers, and the party1 can be player, party#, raid#, and other valid unit tokens.