- Home
- Downloads
-
Addons & Mods
Featured
World of Warcraft
6,152 Mods
-
Popular Downloads
- Top World of Warcraft Addons
- Top Minecraft Bukkit Plugins
- Top Rift Addons
- Top Skyrim Mods
- Top World of Tanks Skins
- Top Terraria Maps
- Top StarCraft II Maps
- Top Runes of Magic Addons
- Top Warhammer Online Addons
- Top The Secret World Mods
- Top Age of Conan Addons
-
- Curse Client
- Premium
- News
- Giveaways
- Forums
- Store
ntCombatLogMod
- 0 Likes
- Runes of Magic
- 50 Monthly Downloads
- Supports: 4.0.0.2413
- 6,395 Total Downloads
- Updated 07/10/2011
- Created 06/19/2010
- 10 Favorites
- Project Site
- Comments
- Release Type: Beta
- License: Creative Commons License By-Nc-Sa 3.0
- Newest File: ntCombatLogMod ver 1.30
About ntCombatLogMod
This addon simplifies the standard combat log.
New Features
- You can show time with 0.1 sec precision, which can help the optimization of the combination of attack skills (ver 1.10).
- You can also erase damage over time type spams (ver 1.10)
Features
- Compatible with the latest client (patch 4.0.0.2413)
- Essentially locale free, because log analysis is based on the internal strings of the client. (UI depends on locale, sorry)
- Each log line is colored according to the type of the log. (For example, your attack, enemy's attack, your buff, and so on)
- You can customize the line colors.
- You can erase spam log, such as heal over time or normal attack.
- Supports AddonManager
Usage
- type /clm for GUI window.
Known Issues
- Errors in opening GUI window after ReloadUI().
- Issues related to spam log (see below).
Not checked
- Pet related logs.
Notes on the spam log issues
The following method is used for the identification of the spam.
- If the same damage or heal log appears three times successively, that log is registered as the damage-over-time or heal-over-time spam.
- The combat log that matches any one of the damage/heal-over-time spam records is ignored.
- The spam record is cleared every time you log in.
There are two caveats in the step 1. Firstly, if a priest spams the same heal spell, it can be mis-registered as the heal-over-time spam. Secondly, if you have two types of heal/damage over time buff/debuff, your heal-over-time log will be interrupted by the other log and it will not be registered.
Acknowledgement
- Thanks to Sigcz for the original idea and code. This addon initially started as the JP translation of his Combat Log Mod.
- Thanks to Alleris for the Sol library. This addon depends on Sol, but you do not need to install it separately.
Ver 1.30 Revised German translations by 0v3rlord. Added options to show/hide buff/debuff log (suggested by Django2005)
Ver 1.20 Updated for chapter 4.
Ver 1.10R Updated to Fix-for-patch303 ver 1.41 to avoid the "Saturday" bug in Fix-for-patch303 ver 1.40.
Ver 1.10 Added options to show time and to remove DoT spam
Ver 1.00 First publich beta release.
| File Name | Release Type | Game Version | Downloads | Date |
|---|---|---|---|---|
| ntCombatLogMod ver 1.30 | Beta | 4.0.0.2413 | 4,086 | 07/10/2011 |
| ntCombatLogMod ver 1.20 | Beta | 4.0.0.2413 | 290 | 07/10/2011 |
| ntCombatLogMod ver 1.10R | Beta | 3.0.2 | 1,527 | 10/22/2010 |
| ntCombatLogMod ver 1.00 | Beta | 2.1.7.2095 | 720 | 06/19/2010 |




Comments
http://rom-research.blogspot.com
1) add the following function to CLM.lua
local function IV_StripColor(TextToStrip)
local stripped = TextToStrip;
while ( string.find( stripped, "|c" ) ~= nil ) do
stripped = string.gsub( stripped, "|c%x%x%x%x%x%x%x%x", "" );
stripped = string.gsub( stripped, "|r", "" );
end
return stripped;
end
2) add this line above INPUT MESSAGE PARSERS
in_string = IV_StripColor(in_string)
http://rom-research.blogspot.com
I just opened the settings tab and saw there is a german translation ...
Sorry to slashy1302 and spaceturtle but that translation is just awfull^^
I'll send you an updated one as PM.
Another thing I had to edit is the fix_for_patch303.lua since there is another os-library on the german forums.
Changes:
Line 6: if (not ffp) and (not d303Fix) and (not MorphClock) then
Line 172: if (not os) and (not d303Fix) and (not MorphClock) then
I tyied, and it seems work well.
if UnitExists("pet") then
if in_string:find(pet) then
player = (pet)
end
end
I only test in CLM.
Original ntCLM is still with the Warden's Pet bug.
Would (I think) make it easier to read the log quickly.
Other then that I already like it :)