Lightheaded + other #163


  • Enhancment
  • New
Open
Assigned to ckknight
  • _ForgeUser320666 created this issue Sep 11, 2008

    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.

  • _ForgeUser320666 added the tags New Enhancment Sep 11, 2008
  • _ForgeUser1216471 posted a comment Oct 5, 2008

    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.