This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
With this new version 3.o I cant click coordinate links in lightheaded anymore and have them create a waypoint in cartographer.
I dont like how when I open the map it has to scroll around to find me. I would like it to instantly have me in the middle of the screen as per I constantly open my map to see where im at..
Thanks for your consideration and if u add these you are awesome.
I patched Lightheaded using this [FIND in lightheaded.lua] if TomTom then TomTom:AddWaypoint(x, y, note) end [INSERT BELOW] local x1,y1 x1 = x / 100 y1 = y / 100 if Cartographer3_Notes and type(Cartographer3_Notes.AddNote == "function" then DEFAULT_CHAT_FRAME:AddMessage("|cffffff7fLightHeaded - X:" .. x1 .. " Y:".. y1 .. " Icon: " .. "Star" .. "Title: " .. note .. " Desc:" .. note) Cartographer3_Notes.AddNote(Cartographer3.Data.currentMapTexture, x1, y1, "Star", note, note) end if Cartographer3_Waypoints and type(Cartographer3_Waypoints.SetWaypoint == "function" then Cartographer3_Waypoints.SetWaypoint(Cartographer3.Data.currentMapTexture, x1, y1, note) end
To post a comment, please login or register a new account.