var fDesc=new Array(); fDesc[0] = "CStats is an application written in C# that is designed to parse, in real-time, the combat log generated by the Lord of the Rings Online client. Is it designed to be a tool to allow individuals to analyze personal information regarding their combat effectiveness, tendencies, curiosity, and hopefully allow the mathematically inclined a way of further discovering the exact workings of the Lord of the Rings Online combat system.

Main features:

- Real-time parsing of LotRO combat logs
- Statistical breakdowns for Encounters, Combatants, and Attacks
- Export/Import previously parsed logs.
- Generate Excel 2003/2007 compatible XML reports for DPS, Healing, and Attacks
- Graphs for visual interpretation of data parsed
- Multi-Language support for the GUI
- Support for German client combat logs"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }