EavesDrop
This is my attempt to keep Grayhoof's addon alive!
The goal is to make this work under latest game version (currently 11.x). Please report any issues or bugs on the project's Github page.
What does it do?
A simple combat log that shows events (such as damage, heal, buff/debuff...), using icons and colors to make it easy to find important information by a quick skim. It separates incoming events (left side) from outgoing events (right side) from misc. events (middle).
What all can it show?
- Your hits, spells, misses, heals, etc...
- Incoming damage, spells, heals, buffs, debuffs, etc...
- Power gain
- Honor, Reputation, Skill, and Experience gain
- Mob/People you have slain
- Combat start/stop
- Timestamps and details in tooltip
- Highest hit stat tracking for both incoming and outgoing skills.
- Combat Summaries
Additionally, it keeps track of each spell's maximum normal and critical hits!
Usage
All events related to player will be shown in 3 columns. After each combat, a summary of incoming and outgoing heals and damage will be displayed.
- Shift+scroll up/down will show the top/bottom of events.
- Ctrl+scroll up/down will take you to the next/previous combat.
- Shift+Click will copy the highlighted event to the chat edit box
- Click the "sun clock" icon, to open history of highest values of all events, divided into healing and damage.
To customize the events (buff, debuffs, colors, values, ...), open the options window by right-click on the EavesDrop
tab or entering slash command: /ed
.
You can adjust the minimum damage/healing values in the options windows under Misc tab.
You can also completely exclude spells under the same tab. Enter the unwanted spell names or IDs in the Blacklist box, one spell per line. Any of the following lines will exclude Judgment:
Judgment
20271
Installation
Using addon managers
Install wago.iop app or CurseForge and search for EavesDrop
in the apps to install the addon.
Manual Installation
Download the EavesDrop.zip
file from either wago.io or github.com.
Then follow these instructions:
- Go into your WoW installation folder (e.g.
C:\Program Files (x86)\World of Warcraft\_retail_
). - Go into the
Interface
sub-folder. - Go into the
AddOns
sub-folder (if you don't have one, create it). - Copy/Extract this addon's folder into the
AddOns
folder. - Make sure the folder name is
EavesDrop
.
Verification
The following folder paths will exist within your WoW Install directory:
Interface\AddOns\EavesDrop\
Interface\AddOns\EavesDrop\libs\
Interface\AddOns\EavesDrop\locals\
Look for the following (wrong) files as evidence of common mistakes:
- If you have
Interface\AddOns\EavesDrop.toc
then you've extracted the zip file's contents without its folder structure, or copied the contents without the parent folder. - If you have
Interface\AddOns\EavesDrop\EavesDrop\EavesDrop.toc
then you've extracted the zip file into a folder an extra level deep. Move the files and any sub-folders up one level and remove the extra folder. - If you have
Interface\AddOns\EavesDrop-2.8\
or similar, you need to rename it toEavesDrop
.
For more detailed instructions see wowointerfaces's FAQ.
Credits:
Some of the code to update Eavesdrop from 7.x to 8.0 is done by domzae, upon which I added required changes from BFA, SL, DF and TWW. If you feel you have contributed to this code base and you should get credited, please contact me.
While at it can you include the option to add more then 20 lines to it, and may be a little smaller font than 8?
The idea is to make it a little more long and narrow, this way it is more comfortable to place it around your screen and it consist more info.
Anyway great addon and thank you very much!!!
http://pastebin.com/vLf0a2va
Message: ...ace\AddOns\Blizzard_CombatLog\Blizzard_CombatLog.lua:3268: bad argument #3 to 'format' (string expected, got boolean)
Time: 04/27/11 10:02:17
Count: 4
Stack: [C]: ?
...ace\AddOns\Blizzard_CombatLog\Blizzard_CombatLog.lua:3268: in function `CombatLog_OnEvent'
Interface\AddOns\EavesDrop\EavesDrop.lua:436: in function `?'
...der\Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:147: in function <...der\Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:147>
[string "safecall Dispatcher[17]"]:4: in function <[string "safecall Dispatcher[17]"]:4>
[C]: ?
[string "safecall Dispatcher[17]"]:13: in function `?'
...der\Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:92: in function `Fire'
...AddOns\Bartender4\libs\AceEvent-3.0\AceEvent-3.0.lua:120: in function <...AddOns\Bartender4\libs\AceEvent-3.0\AceEvent-3.0.lua:119>
Locals: <none>
1. Open EavesDrop.lua
2. Find line 115, which should have
[SPELL_POWER_HAPPINESS] = HAPPINESS,
3. Add two dashes to that line, without spaces in between:
--[SPELL_POWER_HAPPINESS] = HAPPINESS,
function EavesDrop:CombatEvent(temp, timestamp, event, hideCaster, sourceGUID, sourceName, sourceFlags, destGUID, destName, destFlags, ...)
(anything you have dealing with combat logs can be fixed this way -- find what is responding to COMBAT_LOG_EVENT_UNFILTERED and add in 'hideCaster' as the 4th argument)
without ""'s...
1. Comment out line 115, "--[SPELL_POWER_HAPPINESS] = HAPPINESS,"
2. Line 397, add hideCaster "function EavesDrop:CombatEvent(temp, timestamp, event, hideCaster, sourceGUID, sourceName, sourceFlags, destGUID, destName, destFlags, ...)"
3. Line 436, Same as above "message = CombatLog_OnEvent(Blizzard_CombatLog_CurrentSettings, timestamp, event, hideCaster, sourceGUID, sourceName, sourceFlags, destGUID, destName, destFlags, ...)
"
Then it works again =)