There should be a minimap icon. However, I never properly embedded the libraries, so if you don't have other Ace mods loaded it might not work. If I have time I'll do it tonight.
There should be a minimap icon. However, I never properly embedded the libraries, so if you don't have other Ace mods loaded it might not work. If I have time I'll do it tonight.
Lol, i was just about to post here i was goign insane.. seeing no minimap icon and then mysteriously now I had one.. must have been what you just said? Weird though.. I have tons of ace addons.. (although none have a minimap icon visible (deucecommander yay).
Since there doesn't seem to be an "official" LoggerHead thread, I'm posting here.
1. I find it odd that it asks me whether or not to record the combat log every time I enter a "new" zone (one I haven't been to with LoggerHead before) when there are configuration settings for each zone within the FuBar menu itself.
I've checked the instance "Karazhan" and that's the only zone I want to record the combat log in. Despite the fact it's the only zone/instance checked, I still get the prompted whenever I enter a new zone.
There should be an option to turn off the prompt, and simply use whatever settings the user has selected within the FuBar zone/instance listings.
2. There should be an option to "Hide" the FuBar plugin, leaving LoggerHead enabled but removing the FuBar icon from FuBar.
Would it be possible to enable logging by bosses instead of instances too? I'm using WWS and searching and splitting the log for my boss kills/tries is really annoying (for the client version that is). Now with logging only enabled at the bosses themselves I'd propably still have to split my logs manually, but it'd be much more convenient to do so.
Tracking when you engage a mob is gotta be possible somehow, as other addons (namely bossmods like BigWiggs) also do it.
Would it be possible to enable loggin by bosses instead of instances too? I'm using WWS and searching and splitting the log for my boss kills/tries is really annoying (for the client version that is). Now with logging only enabled at the bosses themselves I'd propably still have to split my logs manually, but it'd be much more convenient to do so.
Tracking when you engage a mob is gotta be possible somehow, as other addons (namely bossmods like BigWiggs) also do it.
I assume you are hosting locally and not on the WWS site? The WWS site does all the splitting automatically.
I currently have Loggerhead and it works great. Was wondering if it is possible to have it turn on for a boss only. Similar to how Big Wigs loads when a boss is moused over. I saw some people asking for something like this in the Big Wigs thread, but I think it would be more appropriate for a /combatlog mod of some sort.
Edit: Bleh, didn't know this was just a "help" thread.
Logging appears to be disabled on death if you release and run back (until you log back in the zone, alive). Would it be possible to either add an option to continue logging while dead or make that the default behavior?
For anyone that's interested, I modified the below section in LoggerHead.lua locally to keep logging enabled through death in zones where you're already logging. Would love to see this or something similar incorporated into the official code.
Original:
if LoggerHead.db.profile.log[zone] then
self:EnableLogging()
else
self:DisableLogging()
end
Modified:
if LoggerHead.db.profile.log[zone] then
self:EnableLogging()
else
-- This section added to disable shutoff of logging on death
if UnitIsDead("player") then
return
else
self:DisableLogging()
end
-- end death logging modifications
end
Configurable from Fubar menu that says.. I don't use fubar and it doesn't show up in my deucecommander. Neither /loggerhead, /logger or /lh work.
Is there any way for me to configure this addon other then install fubar?
Lol, i was just about to post here i was goign insane.. seeing no minimap icon and then mysteriously now I had one.. must have been what you just said? Weird though.. I have tons of ace addons.. (although none have a minimap icon visible (deucecommander yay).
Anywya, thanks for the info.
1. I find it odd that it asks me whether or not to record the combat log every time I enter a "new" zone (one I haven't been to with LoggerHead before) when there are configuration settings for each zone within the FuBar menu itself.
I've checked the instance "Karazhan" and that's the only zone I want to record the combat log in. Despite the fact it's the only zone/instance checked, I still get the prompted whenever I enter a new zone.
There should be an option to turn off the prompt, and simply use whatever settings the user has selected within the FuBar zone/instance listings.
2. There should be an option to "Hide" the FuBar plugin, leaving LoggerHead enabled but removing the FuBar icon from FuBar.
help T_T
:edit: I just added Tourist-2.0 manually, so Its working for me.
Tracking when you engage a mob is gotta be possible somehow, as other addons (namely bossmods like BigWiggs) also do it.
Not touching anything else as its not my addon :P
it seems this has already been done by Sano around 7 weeks ago according to the changelog, so no need for me to do something about it ;p
I assume you are hosting locally and not on the WWS site? The WWS site does all the splitting automatically.
You assume correctly.
Edit: Bleh, didn't know this was just a "help" thread.
It's been working perfectly fine for me and several others in my guild that use it.
Original:
Modified: