I found a script at Blizzard US forums but I had to figure out the number for humanoids because it didnt match humanoids anymore, humanoids are 8. The script toggles Track Humanoids on and off easily with a click.
/run local _,_,active=GetTrackingInfo(9) if (active) then SetTracking(9,false) print("Tracking Disabled") else SetTracking(9,true) print("Tracking Enabled") end
The icon is among the priest spells in icon library.Edit: I discovered the code also enabled battlepet tracking so I reworked it to only track humanoids.
Updated for Legion 7.3.5 since tracking library change again to No.9.
The highest voted Wowhead comments for this page. They are community notes, not TheWoWDB comments.
Here's an updated Track Humanoid Macro for Dragonflight Release (based on purenrgy's previous macro)
/run for i=1,C_Minimap.GetNumTrackingTypes() do local x,_,y=C_Minimap.GetTrackingInfo(i) if x==GetSpellInfo(19883) then C_Minimap.SetTracking(i, not y) z='OFF' if not y then z='ON' end DEFAULT_CHAT_FRAME:AddMessage("| Track Humanoids |---> "..z) end end
While it should be common sense, this does not show you the location of Druids in Bear, Cat, Travel, Aqua, Flight and (I believe,) Tree of Life forms, Shaman in Ghost Wolf, Warlocks who have Metamorphed and Death Knights under the Lichborne buff.
It WILL, however, show you the location of Friendly/Enemy Forsaken players, as they count as Humanoid for game balance reasons.
Tooltip
Shows the location of all nearby humanoids on the minimap.
Spell facts
Datamined from the current retail build. Numbers that scale with level or stats are shown at their base value.
More Hunter spells
Related
Community notes from Wowhead · 19 comments
Top 3 shown above · 16 more hereThe comments below were written by Wowhead users. They are community notes, not TheWoWDB comments. See them in context on Wowhead.
hunter Track Humanoids on/off for Warlords of Draenor
/run for i = 1, GetNumTrackingTypes() do local name, _, active = GetTrackingInfo(i) if name == "Track Humanoids" then return SetTracking(i, not active) end end
Toggle macro:
- Track Beasts
#showtooltip Track Beasts
/run for i=1,GetNumTrackingTypes() do local a,_,b=GetTrackingInfo(i) if select(1,a)=="Track Beasts" then if b==1 then SetTracking(i,false) elseif b==nil then SetTracking(i,true) end end end
- Track Demons
#showtooltip Track Demons
/run for i=1,GetNumTrackingTypes() do local a,_,b=GetTrackingInfo(i) if select(1,a)=="Track Demons" then if b==1 then SetTracking(i,false) elseif b==nil then SetTracking(i,true) end end end
- Track Dragonkin
#showtooltip Track Dragonkin
/run for i=1,GetNumTrackingTypes() do local a,_,b=GetTrackingInfo(i) if select(1,a)=="Track Dragonkin" then if b==1 then SetTracking(i,false) elseif b==nil then SetTracking(i,true) end end end
- Track Elementals
#showtooltip Track Elementals
/run for i=1,GetNumTrackingTypes() do local a,_,b=GetTrackingInfo(i) if select(1,a)=="Track Elementals" then if b==1 then SetTracking(i,false) elseif b==nil then SetTracking(i,true) end end end
- Track Giants
#showtooltip Track Giants
/run for i=1,GetNumTrackingTypes() do local a,_,b=GetTrackingInfo(i) if select(1,a)=="Track Giants" then if b==1 then SetTracking(i,false) elseif b==nil then SetTracking(i,true) end end end
- Track Humanoids
#showtooltip Track Humanoids
/run for i=1,GetNumTrackingTypes() do local a,_,b=GetTrackingInfo(i) if select(1,a)=="Track Humanoids" then if b==1 then SetTracking(i,false) elseif b==nil then SetTracking(i,true) end end end
- Track Undead
#showtooltip Track Undead
/run for i=1,GetNumTrackingTypes() do local a,_,b=GetTrackingInfo(i) if select(1,a)=="Track Undead" then if b==1 then SetTracking(i,false) elseif b==nil then SetTracking(i,true) end end end
Updated: Macro script to toggle Track Humanoids. Works for Dragonflight
/run for i=1,C_Minimap.GetNumTrackingTypes() do local x,_,y=C_Minimap.GetTrackingInfo(i) if x==GetSpellInfo(19883) then C_Minimap.SetTracking(i, not y) z='OFF' if not y then z='ON' end DEFAULT_CHAT_FRAME:AddMessage("| Track Humanoids |---> "..z) end end
Once used with a HUD display such as Minimaphuge or gathermate's on-board tracking ability the power of this skill is easily underestimated. It is definitely your number one hunter (and druid, of course) skill in battlegrounds. It's radar for your hunter.
Even without this, those HUDs will show you when you are exposed and unprotected by your team, but turn this on and additionally you get the offensive advantage of knowing when the bad guys are vulnerable, when you are getting closed in... and how to get out of it.
Humanoid tracking is like a secret weapon in battlegrounds.
For some reason, even though the spells have been combined into Tracking and no longer appear in the spellbook. I keep seeing "You have learned Track Humanoids" etc in my log while leveling up. I was able to actually select Humanoids from the tracking list and track them from the moment I learned Tracking, but I hadn't yet learned Track Humanoids!
This macro doesnt work anymore since patch 11. Any idea how to fix ? :(
Those looking for a toggle button for hidden and humanoids should use this instead. It toggles humanoid tracking on and off:
/run C_Minimap.SetTracking(10, true)
/run C_Minimap.SetTracking(4, true)
/run C_Minimap.SetTracking(10, false)
/run C_Minimap.SetTracking(4, false)
Find Herbs, Find Ore, and Find Fish can all be used at the same time as any of the Hunter tracking abilities.
Track Beasts will get almost all of the druid forms (except tree, i assume elemental would work, but have not checked) along with shaman wolf, warlock will of course be track demon, death knights will be track undead.
Thanks, those are helpful macros.
This macro only affects Track Hidden, so I changed 9 to 10 and it works perfectly. Thanks!
For me Humanoids are on 9
Works great! Thank you, ever so much. Really makes it easy, especially in cities and such.
This is trainable for 3 silver 60 copper.
is this spell passive now? Seems I can track humanoids at the same time as I'm tracking herbs..
Same here, the minimap is very messy, and the GM keep sending me the mail (third time) telling to delete the wtf-interface-cache folders....doesn't work.