View Single Post
01-12-21, 08:38 PM   #1
Jynks
A Frostmaul Preserver
Join Date: Oct 2006
Posts: 264
How can I modify this macro to be more like this other one?

I have this macro for finding these plants for a WQ in Ardenvale... when I press the button it tries to target the flower, then puts a symbol on it and then plays a sound...

Code:
/cleartarget
/tar lunarlight bud
/run local r,T,t,a=SMRI,nil,"target",{8,7,1,2,3,4} if not r then r=1 end if UnitExists(t)then T=t end if T then if GetRaidTargetIndex(T)==nil then SetRaidTarget(T,a[r]) PlaySound(120,"master") r=r%#a+1 end end SMRI=r
How can I change this to cycle through all the target marks? This one only seems to do 5? Basicaly I would like it to do the same thing but go through the entire target mark list before it removes the first mark placed to the latest find.

Thanks
  Reply With Quote