Skip to content
Track Humanoids

Spell

Track Humanoids

Physical

Hunter

Instant castSelf Only

Advertisement
Top Comments

The highest voted Wowhead comments for this page. They are community notes, not TheWoWDB comments.

1
Strator+20via Wowhead (opens the original comment in a new tab)

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.

2
Friarruse+12via Wowhead (opens the original comment in a new tab)

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

3
610373+6via Wowhead (opens the original comment in a new tab)

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.

16 more comments below ↓

Track Humanoids
Advertisement

Tooltip

Shows the location of all nearby humanoids on the minimap.

Spell facts

SchoolPhysical
Cast timeInstant
DurationInfinite
EffectApply Aura
ClassHunter
RangeSelf Only
Taught byHunter (skill 1)
Spell ID19883

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 here

The comments below were written by Wowhead users. They are community notes, not TheWoWDB comments. See them in context on Wowhead.

peachi+2via Wowhead (opens the original comment in a new tab)

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

purenrgy+2via Wowhead (opens the original comment in a new tab)

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

913874+1via Wowhead (opens the original comment in a new tab)

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.

vexis58+1via Wowhead (opens the original comment in a new tab)

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!

DQTawnos+1via Wowhead (opens the original comment in a new tab)

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)

Aquifel+0via Wowhead (opens the original comment in a new tab)

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.