This project is abandoned and its default file will likely not work with the most recent version of World of Warcraft. Whether this project is out of date or its author has marked it as abandoned, this project is no longer maintained.
Keeps track of current money and all your characters on one realm.
Ok so I have not had any errors w/ the add on. it seems to have split any toon i have over 80 to its own total. So all my toons I have from 1-80 I can see there total gold minus my toons from 81-85 and vice versa. 2 over 80 are goblins 1 is a tauren.
/cry. Can't live without this, it still has the perfect layout for me. I changed to LDB (ChoclateBar) but haven't found a good money addon. Several much more complicated, yes. That's fun and helpful, but this gives me the basics and overview I need.
Is it my imagination or are Goblin characters considered Alliance for the purpose of tracking total money? Cause I'm sure my Goblin now counts towards total money Alliance side.
Had the same problem, decided to take the time to figure it out.
Problem is in AceDB-2.0 in the Libs folder @ line 342
local _,race = UnitRace("player") local faction if race == "Orc" or race == "Scourge" or race == "Troll" or race == "Tauren" or race == "BloodElf" then faction = FACTION_HORDE else faction = FACTION_ALLIANCE end
/******* if race == "Orc" or race == "Scourge" or race == "Troll" or race == "Tauren" or race == "BloodElf" then
Should be:
if race == "Orc" or race == "Scourge" or race == "Troll" or race == "Tauren" or race == "BloodElf" or race == "Goblin" then /*******
Now, for the fun part. There are other Add-ons that rely on AceDB-2.0 including almost all of the old FuBar plug-ins. You will need to point all of those plug-ins to the modified version of the AceDB-2.0 library or make the same change in ALL of the copies since you never know which one is going to get loaded first.
MoneyFu seperates my two goblin characters from my other characters. When I'm on my Orc I see all my characters but the goblins. When I'm on one of the goblins I only see info for the goblins.
MoneyFu no longer displays gold for me, only emblems/justice points is displayed. I thought I was using the wrong mod, but mousing over the addon tells me it's MoneyFu.
1x FuBar_MoneyFu-v1.2.4\MoneyFu.lua:334: attempt to perform arithmetic on field '?' (a nil value) AceAddon-2.0-91100 (FuBar_MoneyFu):979: in function <...Ons\FuBar_MoneyFu\Libs\AceAddon-2.0\AceAddon-2.0.lua:973> <in C code>: ? AceEvent-2.0-91097 (FuBar_MoneyFu):260: in function `TriggerEvent' AceEvent-2.0-91097 (FuBar_MoneyFu):910: in function <...Ons\FuBar_MoneyFu\Libs\AceEvent-2.0\AceEvent-2.0.lua:903>
---
1x FuBar_MoneyFu-v1.2.4\MoneyFu.lua:334: attempt to perform arithmetic on field '?' (a nil value) AceAddon-2.0-91100 (AtlasLootFu):979: in function <...ddOns\AtlasLootFu\Libs\AceAddon-2.0\AceAddon-2.0.lua:973> <in C code>: ? AceEvent-2.0-91097 (AtlasLootFu):260: in function `TriggerEvent' AceEvent-2.0-91097 (AtlasLootFu):910: in function <...ddOns\AtlasLootFu\Libs\AceEvent-2.0\AceEvent-2.0.lua:903>
1x FuBar_MoneyFu-v1.2.4\MoneyFu.lua:334: attempt to perform arithmetic on field '?' (a nil value) AceAddon-2.0-91100 (AtlasLootFu):979: in function <...ddOns\AtlasLootFu\Libs\AceAddon-2.0\AceAddon-2.0.lua:973> <in C code>: ? AceEvent-2.0-91097 (AtlasLootFu):260: in function `TriggerEvent' AceEvent-2.0-91097 (AtlasLootFu):910: in function <...ddOns\AtlasLootFu\Libs\AceEvent-2.0\AceEvent-2.0.lua:903>
Date: 2011-02-08 10:45:47
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\FuBar_MoneyFu\MoneyFu.lua line 334:
attempt to perform arithmetic on field '?' (a nil value)
Debug:
...\FuBar_FactionsFu\libs\AceAddon-2.0\AceAddon-2.0.lua:25:
...\FuBar_FactionsFu\libs\AceAddon-2.0\AceAddon-2.0.lua:23
...\FuBar_FactionsFu\libs\AceAddon-2.0\AceAddon-2.0.lua:1044: ManualEnable()
...\FuBar_FactionsFu\libs\AceAddon-2.0\AceAddon-2.0.lua:979:
...\FuBar_FactionsFu\libs\AceAddon-2.0\AceAddon-2.0.lua:973
[C]: ?
...\FuBar_FactionsFu\libs\AceEvent-2.0\AceEvent-2.0.lua:260: TriggerEvent()
...\FuBar_FactionsFu\libs\AceEvent-2.0\AceEvent-2.0.lua:910:
...\FuBar_FactionsFu\libs\AceEvent-2.0\AceEvent-2.0.lua:903
I changed to LDB (ChoclateBar) but haven't found a good money addon.
Several much more complicated, yes. That's fun and helpful, but this gives me the basics and overview I need.
Yes Sleakaj, it's due to the embedded library Ace2 which is outdated and not support Goblin as of the Horde.
Personally, I found an alternative with Bazooka, a FuBar-like and more. After that, you must add some Broker addon to recover what you had on FuBar.
Is it my imagination or are Goblin characters considered Alliance for the purpose of tracking total money? Cause I'm sure my Goblin now counts towards total money Alliance side.
Problem is in AceDB-2.0 in the Libs folder @ line 342
local _,race = UnitRace("player")
local faction
if race == "Orc" or race == "Scourge" or race == "Troll" or race == "Tauren" or race == "BloodElf" then
faction = FACTION_HORDE
else
faction = FACTION_ALLIANCE
end
/*******
if race == "Orc" or race == "Scourge" or race == "Troll" or race == "Tauren" or race == "BloodElf" then
Should be:
if race == "Orc" or race == "Scourge" or race == "Troll" or race == "Tauren" or race == "BloodElf" or race == "Goblin" then
/*******
Now, for the fun part. There are other Add-ons that rely on AceDB-2.0 including almost all of the old FuBar plug-ins. You will need to point all of those plug-ins to the modified version of the AceDB-2.0 library or make the same change in ALL of the copies since you never know which one is going to get loaded first.
Good Luck!
This fix worked perfectly for me. The only thing is, I had some trouble finding the file you're talking about. If anyone else is wondering, it's:
\World of Warcraft\Interface\AddOns\FuBar_MoneyFu\Libs\AceDB-2.0.lua
AceAddon-2.0-91100 (FuBar_MoneyFu):979: in function <...Ons\FuBar_MoneyFu\Libs\AceAddon-2.0\AceAddon-2.0.lua:973>
<in C code>: ?
AceEvent-2.0-91097 (FuBar_MoneyFu):260: in function `TriggerEvent'
AceEvent-2.0-91097 (FuBar_MoneyFu):910: in function <...Ons\FuBar_MoneyFu\Libs\AceEvent-2.0\AceEvent-2.0.lua:903>
---
1x FuBar_MoneyFu-v1.2.4\MoneyFu.lua:334: attempt to perform arithmetic on field '?' (a nil value)
AceAddon-2.0-91100 (AtlasLootFu):979: in function <...ddOns\AtlasLootFu\Libs\AceAddon-2.0\AceAddon-2.0.lua:973>
<in C code>: ?
AceEvent-2.0-91097 (AtlasLootFu):260: in function `TriggerEvent'
AceEvent-2.0-91097 (AtlasLootFu):910: in function <...ddOns\AtlasLootFu\Libs\AceEvent-2.0\AceEvent-2.0.lua:903>
---
Message: ..\AddOns\FuBar_MoneyFu\MoneyFu.lua line 334:
attempt to perform arithmetic on field '?' (a nil value)
Debug:
...Ons\BulkMail2\lib\Ace2\AceAddon-2.0\AceAddon-2.0.lua:25:
...Ons\BulkMail2\lib\Ace2\AceAddon-2.0\AceAddon-2.0.lua:23
...Ons\BulkMail2\lib\Ace2\AceAddon-2.0\AceAddon-2.0.lua:1044: ManualEnable()
...Ons\BulkMail2\lib\Ace2\AceAddon-2.0\AceAddon-2.0.lua:979:
...Ons\BulkMail2\lib\Ace2\AceAddon-2.0\AceAddon-2.0.lua:973
[C]: ?
...Ons\BulkMail2\lib\Ace2\AceEvent-2.0\AceEvent-2.0.lua:260: TriggerEvent()
...Ons\BulkMail2\lib\Ace2\AceEvent-2.0\AceEvent-2.0.lua:910:
...Ons\BulkMail2\lib\Ace2\AceEvent-2.0\AceEvent-2.0.lua:903
AceAddon-2.0-91100 (AtlasLootFu):979: in function <...ddOns\AtlasLootFu\Libs\AceAddon-2.0\AceAddon-2.0.lua:973>
<in C code>: ?
AceEvent-2.0-91097 (AtlasLootFu):260: in function `TriggerEvent'
AceEvent-2.0-91097 (AtlasLootFu):910: in function <...ddOns\AtlasLootFu\Libs\AceEvent-2.0\AceEvent-2.0.lua:903>
---
Date: 2010-10-19 11:55:47
ID: 2
Error occured in: Global
Count: 1
Message: ..\AddOns\FuBar_MoneyFu\MoneyFu.lua line 334:
attempt to perform arithmetic on field '?' (a nil value)
Debug:
Ace2\AceAddon-2.0\AceAddon-2.0.lua:25:
Ace2\AceAddon-2.0\AceAddon-2.0.lua:23
Ace2\AceAddon-2.0\AceAddon-2.0.lua:1044: ManualEnable()
Ace2\AceAddon-2.0\AceAddon-2.0.lua:979:
Ace2\AceAddon-2.0\AceAddon-2.0.lua:973
[C]: ?
Ace2\AceEvent-2.0\AceEvent-2.0.lua:260: TriggerEvent()
Ace2\AceEvent-2.0\AceEvent-2.0.lua:910:
Ace2\AceEvent-2.0\AceEvent-2.0.lua:903