I use ClosetGnome, ClosetGnome_Banker, ClosetGnome_Fishing and ClosetGnome_Tooltip and got the same error.
The ClosetGnome:AddSet function was calling in a wrong way from ClosetGnome_Fishing.
I changed the code at line 121 of ClosetGnome_Fishing:
On a german client the Bag of Jewels is not detect correctly.
The tranclation on Babble-Tradeskill-2.2.lua is correct (["Bag of Jewels"] = "Juwelenbeutel").
So a compress and restack is impossible.
["message"] = "Omen-2.1r44158\\Libs\\Threat-1.0\\ClassModules\\Shaman.lua:73:
attempt to perform arithmetic on field 'ElementalPrecision' (a nil value)\n\n ---",
["counter"] = 450,
["message"] = "Omen-2.1r44158\\Libs\\Threat-1.0\\ClassModules\\Shaman.lua:69:
attempt to perform arithmetic on field 'ElementalPrecision' (a nil value)\n\n ---",
["counter"] = 125,
["message"] = "invalid key to 'next'"
["stack"] = "[C]: ?[C]:
in function `(for generator)'...ce\\AddOns\\BigWigs\\Libs\\AceEvent-2.0\\AceEvent-2.0.lua:1226:
in function <...ce\\AddOns\\BigWigs\\Libs\\AceEvent-2.0\\AceEvent-2.0.lua:1215>
...BonusesFu\\libs\\ItemBonusLib-1.0\\ItemBonusLib-1.0.lua:376:
AceEvent-2.0: Cannot unregister bucket event \"UNIT_INVENTORY_CHANGED\".
\"FuBar - |cffffffffItemBonuses|r|cff00ff00Fu|r\" is not registered with it.
I got the following error message:
Interface\\AddOns\\BigWigs_Timers\\BigWigs_AQTimers.lua:36: AceLocale(BigWigsTimers: Ahn'Qiraj): Improper translation exists. \"Messages_cmd\" is likely misspelled for locale deDE.
I was searching for and found difference on the translation definition.
local alvl = PT:ItemInSet(a.link,"Tradeskill.Crafted."..BS:GetReverseTranslation(a.profession))
local blvl = PT:ItemInSet(b.link,"Tradeskill.Crafted."..BS:GetReverseTranslation(b.profession))
I changed the code a little bit and all works fine:
local alvl = PT:ItemInSet(a.link,"Tradeskill.Crafted."..BS:GetReverseTranslation(a.profession))
local blvl = PT:ItemInSet(a.link,"Tradeskill.Crafted."..BS:GetReverseTranslation(b.profession))
local adiff = ("%03d"):format(alvl or 0)
local bdiff = ("%03d"):format(blvl or 0)
if not alvl or not blvl or adiff == bdiff then
return a.name < b.name
else
return adiff > bdiff
end
0
The ClosetGnome:AddSet function was calling in a wrong way from ClosetGnome_Fishing.
I changed the code at line 121 of ClosetGnome_Fishing:
Now I get no errors anymore.
0
The menu hides very fast if the mouse is not placing over the frame.
0
The tranclation on Babble-Tradeskill-2.2.lua is correct (["Bag of Jewels"] = "Juwelenbeutel").
So a compress and restack is impossible.
0
0
The searched value at Caster.lua(741) was 'L["Casts (rgn)"])'.
The founded value at DrDamage-enUS.lua(144) was '["Casts (rgn):"] = true'.
I miss a ":". :)
0
0
No Autorefresh and no refresh over button!
0
0
0
Interface\\AddOns\\ArkInventory\\ArkInventory.lua:4691: attempt to index field 'remember' (a nil value)
0
Interface\\AddOns\\BigWigs_Timers\\BigWigs_AQTimers.lua:36: AceLocale(BigWigsTimers: Ahn'Qiraj): Improper translation exists. \"Messages_cmd\" is likely misspelled for locale deDE.
I was searching for and found difference on the translation definition.
A L["Messages_cmd"] is not using on BigWigs. It should be changed to "Messages".
The same is with L["Messages_name"]. It should be deleted.
0
It should be changed like NECB_ConvertPattern of the AddOn CEnemyCastBar.
0
0
:) sorry
0
On my first test I got a error:
After that mining does not reflect the correct trade skills, something is missing.