此站点大量使用JavaScript。
请在您的浏览器中
启用JavaScript
。
正式服
PTR
经典怀旧服
TBC
小知识
屏幕截图
视频
评论
评论来自
19330
very useful in dungeons and battlegrounds. in battlegrounds use it to see where the enemy is coming from then make your pet wait in the path with aggressive mode on.
评论来自
Xtek
This is trainable for 3 silver 60 copper.
评论来自
sgtsolidus
useful in battlegrounds but track hidden and track beasts are more useful. tdue to the fact that all the permanently humanoids are usually in groups.
评论来自
57826
is this spell passive now? Seems I can track humanoids at the same time as I'm tracking herbs..
评论来自
238321
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.
评论来自
manko
As of 3.1 the tracking is now color coded for party/raid members. So Death Knights are red, Shamans are blue, etc ... It's pretty nice in PVP. It would be great if enemies were coded the same way, but seeing where your healers are isn't bad either.
评论来自
346424
You can still get this tracking ability if you aren't a hunter or cat form druid. Just eat a
Blackened Worg Steak
.
评论来自
matoh
anti-ganking radar
评论来自
Frolik
you can also use it to find people to gank :D
评论来自
476166
Keep in mind that feral druids are immune to this; you'll want to use
Track Beasts
. In cat form, I was toying with a level 80 hunter by killing a lvl 20 he was dual-box-training. When the 20 was up and moving, I'd prowl up behind them, stun it, kill it with mangle, and then dash away until I could stealth -- the 80 completely ignored the fact that Hunters can track anything, and instead tried flushing me out of stealth with AoEs (which did nothing).
The hunter is a ganker's worst enemy -- use your abilities wisely and you'll be near-immune to ganking.
评论来自
204972
Here's an interesting question: can you track people in ghost form?
评论来自
487963
Ghosts don't leave the traces, they are just flying =)
Also, note that you can track more effectively using Eagle's eye, as it changes your mini-map too.
评论来自
681734
Jesus was a human? :O
评论来自
noobking87
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.
评论来自
DarkGrover
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.
评论来自
peachi
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
评论来自
vexis58
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!
评论来自
Strator
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.
评论来自
PoderSujo
hunter
追踪人型生物
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
评论来自
purenrgy
Updated script to toggle Track Humanoids. Works as of 8.0.1
/run for i=1,GetNumTrackingTypes() do local x,_,y=GetTrackingInfo(i) if x==GetSpellInfo(19883) then SetTracking(i, not y) z='OFF' r=1 g=1 if not y then z='ON' r=0 g=1 end DEFAULT_CHAT_FRAME:AddMessage("| Track Humanoids |---> "..z,r,g,0) end end
链接
追踪人型生物
追踪人型生物
瞬发
需要 猎人
需要等级 4
在小地图上显示附近所有人型生物的位置。
魔法增益
追踪人型生物
正在追踪人型生物。
法术细节
持续时间
n/a
类型
物理
机制
n/a
驱散类型
n/a
GCD目录
普通
成本
无
范围
0码
(自身)
施法时间
瞬发
冷却
n/a
GCD
0秒
效果#1
Apply Aura:Track Creatures (人型)
效果#2
Apply Aura:Mod All Damage Done Against Creature - % (野兽、恶魔、龙类、元素、巨人、人型、亡灵)
标记
隐藏光环
骑乘时可用
坐下时可用
不打破潜行
不产生威胁
死亡后继续存在
相关
贡献
在发表评论前,请留心以下提示:
您的评论必须为简体中文,否则将会被删除。
不知道如何发评论?参考我们的
格式指南
!
发表前最好先自行校对一次。
有问题可以访问我们的
论坛
来寻求帮助。
你没有登录。
请登录
或者
注册账号
来添加你的评论。
使用下面的表格浏览您的截屏。
[Screenshots containing UI elements are generally declined on sight, the same goes for screenshots from the modelviewer or character selection screen.]
质量越高越好!
[Please review our
Screenshot Guidelines
before submitting!]
您没有登录。请
登录
后提交截屏。
将视频URL输入下列表格即可。
URL:
支持:仅限 YouTube
说明:您的视频需通过审核才能在站点上显示。
我们用
Wowhead 客户端
保证数据库的及时更新,向您提供额外的有趣的功能!
两大目的:
它还维护WoW的一个插件
Wowhead Looter
, 在您游戏时采集数据!
它将
采集所得数据
上传至Wowhead,保证数据库时刻掌握最新信息!
您可以用它追踪完成的任务、配方、坐骑、伙伴宠物以及头衔!
您还在等什么?立即
下载客户端
整装待发吧!
© 2021 Fanbyte
我们用 Wowhead 客户端保证数据库的及时更新,向您提供额外的有趣的功能!
两大目的:
您可以用它追踪完成的任务、配方、坐骑、伙伴宠物以及头衔!
您还在等什么?立即 下载客户端 整装待发吧!