Hi all, I’m looking for a macro that can let me toggle the hunter tracking ability, humanoid, beast, etc.
https://www.curseforge.com/wow/addons/tracking-eye Best i could find. Not a macro but maybe useful.
Cool, much apreciated
You will need a separate macro for each enemy type.
/run for i=1,GetNumTrackingTypes() do local x,_,y=GetTrackingInfo(i) if x==GetSpellInfo(19883) then SetTracking(i, not y) z='OFF' r=0 g=1 if not y then z='ON' r=1 g=0 end DEFAULT_CHAT_FRAME:AddMessage("| Track Humanoids |---> "..z,r,g,0) end end
But it does exactly what you want — toggles tracking on and off, in this case toggles Track Humanoids.
And for beasts, for example, you can simply change spell ID and text message, like this:
/run for i=1,GetNumTrackingTypes() do local x,_,y=GetTrackingInfo(i) if x==GetSpellInfo(1494) then SetTracking(i, not y) z='OFF' r=0 g=1 if not y then z='ON' r=1 g=0 end DEFAULT_CHAT_FRAME:AddMessage("| Track Beasts |---> "..z,r,g,0) end end
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.