QuestHelper_File["tomtom.lua"] = "4.0.1.$svnversion$"
QuestHelper_Loadtime["tomtom.lua"] = GetTime()
local tomtom_cb
local tomtom_uid
local function tomtom_wp_update(c, z, x, y, desc)
if tomtom_uid then
TomTom:RemoveWaypoint(tomtom_uid)
tomtom_uid = nil
end
if not QuestHelper_Pref.hide and c and c >= 0 and z and x and y then -- so there
tomtom_uid = TomTom:AddZWaypoint(c, z, x*100, y*100, desc, false, false, false)
function QuestHelper:EnableTomTom()
if TomTom then
if not tomtom_cb then
tomtom_cb = QuestHelper:AddWaypointCallback(tomtom_wp_update)
function QuestHelper:DisableTomTom()
if tomtom_cb then
QuestHelper:RemoveWaypointCallback(tomtom_cb)
tomtom_cb = nil