Cartographer
CARTOGRAPHER HAS NOT BEEN UPDATED FOR 3.3!!!
DO NOT CREATE BUG REPORTS SAYING IT IS BROKEN!
There are no plans to do any major bug fixes for Cartographer (v2 or v3). If there is an update it will only be a minor fix. (It has already been this way since at least 2008.) Cartographer(v2) uses an outdated framework that will not be updated in the case of major breakages so Cartographer(v2) would require a complete rewrite. Neither of the two main developers (Ckknight and Arrowmaster) have the time nor desire to do this currently. Occasionally a new version might be released to include fixes made by other developers or new versions of embedded libraries.
Cartographer is a modular, lightweight, and efficient framework for manipulation of the world map. It is based on Rock and other libraries of the WoWAce community.
- Battlegrounds : allows viewing of battlegrounds outside of the zone.
- Coordinates : adds coordinates to the bottom of the world map of the player and the cursor.
- Foglight : Shows unexplored areas on the map. replacement for MozzFullWorldMap or Unexplorer. Much more efficient, though.
- Group Colors : turns all your party's and your raid's POIs into circles colored based on class, and shows a number on them based on their raid group.
- Instance Maps : shows maps of instances.
- Instance Notes : adds boss notes and such to instance maps.
- Look 'n' Feel : allows you to change the transparency, position, and scale of the world map.
- Notes : lets you put notes on the map, similar to MapNotes.
- Zone Info : on hovering over a zone, it will show the levels of the zone, the instances in the zone, their levels, and the group size the instance is made for (e.g. 5-man, 40-man).
Does anyone know how to fix the waypoint related error?
I edited my .lua file and it seems to be working ok without errors now. The file had some special characters that my textpad didn't like so I only used notepad. It is available here for download here .. please make a backup copy of your current lua file as I'm not sure if it's 100% fixed or I broke it more lol.. the errors have stopped though.
I don't understand just how we edit them. Where it says COPPER_ABBR do you delete the ABBR or keep it and add the _AMOUNT? Somebody please help this poor, PC challenged soul.
BEGIN QUOTE - - - - - - - - - - - - - - -
microcronz wrote on May 14, 2008 at 05:53 AM (whatever time zone)
Very easy fix here. go to
C:\Program Files\World of Warcraft\Interface\AddOns\Cartographer\libs\LibAbacus-3.0
Look for the words GOLD COPPER and SILVER. Only look for those words that are all in capitals. And where there is nothing else after the word or before it. Example GOLD_CHAR or gold in lower case. And add _AMOUNT so it would look like this GOLD_AMOUNT. Or silver or copper. Only add it to the single word that has all letters of the word capitalized. This worked for all my outdated mods. Seems Blizard decided to change the code a little.
- - - - - - - - - - - - - - - END QUOTE
What I 'understand' (and I use that word loosely) from the above, ONE of the TWO following 'options' is what is being suggested for the editing process, in order to get the "CARTOGRAPHER" add-on to work with WoWarcraft's v2.4.2 patch.
I am just trying to figure out which one *before* I commit to editing the whole *.lua file.
Would be far easier for the masses if a kind, geeky soul (and I say that with much affection) would take on this task and upload the resulting file for others to share in the 'bliss'. *warm smile*
________________________________________
C:\Program Files\World of Warcraft\Interface\AddOns\Cartographer\libs\LibAbacus-3.0\LibAbacus-3.0.lua
## CODE SNIPPET ##
function Abacus:FormatMoneyShort(copper, colorize, textColor)
local color = COLOR_WHITE
if textColor then
if copper > 0 then
color = COLOR_GREEN
elseif copper < 0 then
color = COLOR_RED
end
end
## -------------------- ##
## EDITED CODE SNIPPET ## OPTION 1
if value == inf or value == -inf then
return format("%s", value)
elseif value ~= value then
return format("0%s", COPPER_ABBR)
elseif value >= 10000 or value <= -10000 then
return format("%s%d%s %d%s %d%s", negl, gold, GOLD_ABBR, silver, SILVER_ABBR, copper, COPPER_ABBR)
elseif value >= 100 or value <= -100 then
return format("%s%d%s %d%s", negl, silver, SILVER_ABBR, copper, COPPER_ABBR)
else
return format("%s%d%s", negl, copper, COPPER_ABBR)
end
# -- IN ANOTHER SECTION OF CODING -- ##
function Abacus:FormatMoneyShort(copper, colorize, textColor)
local color = COLOR_WHITE
if textColor then
if copper_amount > 0 then
color = COLOR_GREEN
elseif copper_amount < 0 then
color = COLOR_RED
end
end
## -------------------- ##
## EDITED CODE SNIPPET ## OPTION 2
if value == inf or value == -inf then
return format("%s", value)
elseif value ~= value then
return format("0%s", COPPER_ABBR)
elseif value >= 10000 or value <= -10000 then
return format("%s%d%s %d%s %d%s", negl, gold_amount, GOLD_ABBR, silver_amount, SILVER_ABBR, copper_amount, COPPER_ABBR)
elseif value >= 100 or value <= -100 then
return format("%s%d%s %d%s", negl, silver_amount, SILVER_ABBR, copper_amount, COPPER_ABBR)
else
return format("%s%d%s", negl, copper_amount, COPPER_ABBR)
end
# -- IN ANOTHER SECTION OF CODING -- ##
function Abacus:FormatMoneyShort(copper_amount, colorize, textColor)
local color = COLOR_WHITE
if textColor then
if copper_amount > 0 then
color = COLOR_GREEN
elseif copper_amount < 0 then
color = COLOR_RED
end
end
## -------------------- ##
My post is not working. TEST!
Very easy fix here. go to
C:\Program Files\World of Warcraft\Interface\AddOns\Cartographer\libs\LibAbacus-3.0
Look for the words GOLD COPPER and SILVER. Only look for those words that are all in capitals. And where there is nothing else after the word or before it. Example GOLD_CHAR or gold in lower case. And add _AMOUNT so it would look like this GOLD_AMOUNT. Or silver or copper. Only add it to the single word that has all letters of the word capitalized. This worked for all my outdated mods. Seems Blizard decided to change the code a little.
SOOO many errors with 2.4.2 patch. This is the greatest mod ever and it would be a shame to see it go.
Yea with the new WoW patch released it needs to be updated v.v
I also agree this is an awesome and helpful mod that I'd like to see continued (if I worded that properly)
I get the same error as ningyningy.
Might be because of new patch today.
I was getting an error message with something to do with COPPER so after reading what they did for questhelper, i did it for this also.
This is what jhemfl said to do for questhelper. i just changed the file name for the file in Cartographer. so i tried it for this and i haven't got the error when i log in now.
The constants COPPER, GOLD, SILVER got replaced to COPPER_AMOUNT, GOLD_AMOUNT, SILVER_AMOUNT.
Open up the LibAbacus-3.0.lua file in notepad in the Cartographer\libs\LibAbacus-3.0 folder and use Ctrl+H (replace) and replace all the pre-existing constants. Example: Replace COPPER with COPPER_AMOUNT.
Im having issues with this addon after I downloaded the latest patch. Can you please update?
to ugotdie----Have you tried going to the addons icon in the bottom-left corner of the screen when you go to select a character to play?
Broken with Today's (13 May 2008) patch.
I just downloaded the latest patch from WoW and now I am having troubles with cartographer went through all the steps for issues and still have a problem with the waypoint thing I disable it and enable it and still there is an issue I know it is no biggie but it is annoying
hey i downloaded cartographer andextracted and everything but in gameplay it doesnt do anything. how do i start it and use it?
i have issues with my placed map markers not showing after i enter the coordinates
For some time now when I open the map in an instance it displays the zone map, not the instance map. I googled the issue an saw folks dealing with it last year. There was a time not long ago it worked for me, though. Any idea what might be going on?
I currently have version r73088 installed, though its happened in older versions.
I don't have BigWigs but I am getting the minimapbutton glitch too. After a few moments it separates the "button" from it's "ring"... highly annoying issue on an otherwise nice addon.
thank you, I went and hopefully have gotten it fixed. =)
Misty, go to wowace.com & get the mining node portion of it. Instead of being heavy on resources with things you dont need its simply a seperate download than cartographer.
Nut sure the overall "cause," but it turns out with BigWigs enabled MinimapButtonBag wasn't working quite right, but was basically fixing itself a couple seconds after loading (at least appearance wise, not sure about running/system resources/whatever else.)
With the newest cartographer it wasnt working at all, but then I tried disabling Bigwigs and they (latest cartographer & minimapbuttonbag) worked together fine.
So maybe Bigwigs is glitched & Cartographer is causing problems with that? or maybe none of them are entirely compatible atm? not really too sure... *head explodes*