[2009/09/26 00:20:34-1812-x1]: LoggerHead-3.2.0.98\Loggerhead.lua:387: attempt to index field '?' (a boolean value)
AceConfigDialog-3.0-36:248: in function <...nfig-3.0\AceConfigDialog-3.0\AceConfigDialog-3.0.lua:196>
AceConfigDialog-3.0-36:1232: in function <...nfig-3.0\AceConfigDialog-3.0\AceConfigDialog-3.0.lua:1043>
AceConfigDialog-3.0-36:1524: in function `FeedGroup'
AceConfigDialog-3.0-36:1445: in function <...nfig-3.0\AceConfigDialog-3.0\AceConfigDialog-3.0.lua:1425>
(tail call): ?:
<in C code>: ?
<string>:"safecall Dispatcher[3]":9: in function <[string "safecall Dispatcher[3]"]:5>
(tail call): ?:
AceGUI-3.0-28 (ShockAndAwe):305: in function `Fire'
...e\Libs\AceGUI-3.0\widgets\AceGUIWidget-TreeGroup.lua:458: in function `SetSelected':
...e\Libs\AceGUI-3.0\widgets\AceGUIWidget-TreeGroup.lua:93: in function <...e\Libs\AceGUI-3.0\widgets\AceGUIWidget-TreeGroup.lua:89>:
Loggerhead is throwing the error out, but i suspect it might have something to do with ShockandAwe
- Used the editor "Notepad++"
- Seached for "The Obsidian Sanctum" in "Loggerhead/Libs/LibTourist-3.0/LibTourist-3.0.lua"
- Copy pasted a new line with "The Ruby Sanctum" every where that I "The Obsidian Sanctum" occcured.
- Used the editor "Notepad++"
- Seached for "The Obsidian Sanctum" in "Loggerhead/Libs/LibTourist-3.0/LibTourist-3.0.lua"
- Copy pasted a new line with "The Ruby Sanctum" every where that I "The Obsidian Sanctum" occcured.
This addon has completely stopped working. Trying to display the options window causes errors (tickets filed and stalled), no logging in Firelands happens at all (tickets filed and stalled). Is there a fan update somewhere, or another addon with similar functionality?
BossLogger is "similar" and dissimilar at the same time.
It is an automatic combat-logger but it doesn't work by zone.
It will only log combat involving worldbosses or mobs identified through LibBossIDs.
I don't know why someone would want to log trash or the whole zone but if that's something you need then it probably won't work as a replacement for LoggerHead.
I am also having the blank tabs in the Interface menu. My issue with this is that I've toggled on an instance that I do not want to auto-log; so now, I cannot toggle it off.
Is there a work around? T.I.A.
Edit: found the SavedVariables file and removed the instance. All good now, but would like to see the program updated. :)
Hi there! Thanks for a great, focused add-on. I downloaded the latest version of Loggerhead, and everything is working fine -- except that I don't see a mini-map button to verify Loggerhead's status. I can access the Loggerhead options fine in the Interface > Addons screen, but I don't see a way to toggle the button on. Any ideas? Thanks!
Alrighty, so a number of months ago I downloaded LoggerHead because I wanted to stop forgetting to enable logging (I'm sure this happens to many of us). Anyway, when I downloaded it I ran into a problem that others have seemed to run into. The "my menus are not showing up" issue (Ticket 46 and Ticket 47). When I figured out the problem and fixed it, I posted my solution on both of those tickets, however it does not appear that the developers have pushed that solution or another of their own design, so I shall post it here (and link to my modified .lua file).
Truncated Live Function:
function LoggerHead.GenerateOptionsInternal()
. . .
for zonetype,v in pairs(db.log) do
for zone,v2 in pairs(v) do
if zonetype ~= "none" then
buildmenu(LoggerHead.options,zonetype,zone,v2)
end
end
end
end
Truncated Modified Function:
function LoggerHead.GenerateOptionsInternal()
. . .
for zonetype,v in pairs(db.log) do
[B]if zonetype ~= "none" then[/B]
[B]for zone,v2 in pairs(v) do[/B]
buildmenu(LoggerHead.options,zonetype,zone,v2)
end
end
end
end
"LoggerHead.GenerateOptionsInternal()" begins on line 256 on latest revision. "for zonetype,v in pairs(db.log) do" begins on line 366. The hardcoded response to scenarios responding with 'nil' from Blizzard was causing issues, specifically that a table was expected, only to get a string. When it attempts to run through this string as a table, it simply fails, instead. The loop should be modified as marked to avoid this issue.
Loggerhead didn't work for me last night in Flexible Raid difficulty of the first wing of SoO. (It worked when I zoned into an old 5-man for testing.) Is fixing it as simple as adding the missing difficulties to the difficulty lookup table? There are a couple of gaps in Blizzard's numbering scheme.
I'm having the same problem as HonestyHyj. Loggerhead isn't automatically logging when I enter SoO in Flex mode. Also I'm not seeing a button for Loggerhead on the mini-map.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
The prompting issue should be fixed in the latest alpha.
Loggerhead is throwing the error out, but i suspect it might have something to do with ShockandAwe
- Used the editor "Notepad++"
- Seached for "The Obsidian Sanctum" in "Loggerhead/Libs/LibTourist-3.0/LibTourist-3.0.lua"
- Copy pasted a new line with "The Ruby Sanctum" every where that I "The Obsidian Sanctum" occcured.
This should add RS to the list in Loggerhead.
You can also download the updated Lib Tourist library from here:
http://www.wowace.com/addons/libtourist-3-0/
Then drop it in the ../Loggerhead/Libs folder.
Not sure if you'll also need the LibBabble-Zone update?
http://www.wowace.com/addons/libbabble-zone-3-0/
I just updated them both together and it works fine now.
It is an automatic combat-logger but it doesn't work by zone.
It will only log combat involving worldbosses or mobs identified through LibBossIDs.
I don't know why someone would want to log trash or the whole zone but if that's something you need then it probably won't work as a replacement for LoggerHead.
This is also by design and not likely to change.
Even tried deleting saved variables to no avail.
I'm switching to BossLogger too.
Walked in got asked if i want to log the zone, and that was it.
Only a small gui issue that offers to log 40 people for some bgs like wsg,bfg and strand of the ancients (which is not possible as far as i know ;) )
Is it a bug from 4.3?
Is there a work around? T.I.A.
Edit: found the SavedVariables file and removed the instance. All good now, but would like to see the program updated. :)
Truncated Live Function:
Truncated Modified Function:
"LoggerHead.GenerateOptionsInternal()" begins on line 256 on latest revision. "for zonetype,v in pairs(db.log) do" begins on line 366. The hardcoded response to scenarios responding with 'nil' from Blizzard was causing issues, specifically that a table was expected, only to get a string. When it attempts to run through this string as a table, it simply fails, instead. The loop should be modified as marked to avoid this issue.
Modified File: LoggerHead.lua (.rar/.zip)
Awesome, happy to help! Glad you were able to push a fix out. ^-^