EC: Tracking skill UI and additional improvement (part 1)
This is a bug / improvement to tracking.
Two changes:
- Reliably show tracking markers for targets in the mini-map.
- Attempt to attribute name of target in tracking marker. (hover over marker will show name, right click "View Waypoint data" will also show name).
A separate post will cover some improvements to the way the tracking gump is handled.
Changes in MapCommon.lua:
MapCommon.UpdateWaypoints(), comment out this code:
--if( IsMobile(waypointId) == true)then
-- continue
--end
MapCommon.WaypointMouseOver(), replace existing wname code line with new code below.
--wname = GetStringFromTid(1155436)
if(TrackingPointer.TrackWaypoints[waypointId].MobName ~= nil) then
wname = TrackingPointer.TrackWaypoints[waypointId].MobName
wtype = 58 -- type = target
else
if(WindowData.MobileName[waypointId] and WindowData.MobileName[waypointId].MobName) then
wname = WindowData.MobileName[waypointId].MobName
TrackingPointer.TrackWaypoints[waypointId].MobName = wname
wtype = 58 -- type = target
else
wname = GetStringFromTid(1155436)
end
end
MapCommon.WaypointOnRButtonUp(), replace existing wname code line with new code below.
--wname = GetStringFromTid(1155436)
if(TrackingPointer.TrackWaypoints[waypointId].MobName) then
wname = TrackingPointer.TrackWaypoints[waypointId].MobName
wtype = 58 -- type = target
else
if(WindowData.MobileName[waypointId] and WindowData.MobileName[waypointId].MobName) then
wname = WindowData.MobileName[waypointId].MobName
TrackingPointer.TrackWaypoints[waypointId].MobName = wname
wtype = 58 -- type = target
else
wname = GetStringFromTid(1155436)
end
end
New results when using tracking:
Moderator, feel free to move to the bugs
subforum -- BUT I've read the "General Discussions" may get more
reading attention from the developer(s), however (reference: link)?
Comments
when you use the skill again doesn’t it cancel the initial track?”