Conan Stats

Conan stats is a program that reads and parses Age of Conan combat logs. It's primary use is for grouping and raiding. It allows you to sort player performance based on damage done, damage taken, healing done, healing taken and deaths, including detailed attack and healing information on a per player basis. All statistics are also viewable on an per encounter based timeline.

Conan Stats 1.9.0.4 Beta released

This update contains a maintenance release, but also adds the bosses from Tier 3 ( Thanks to MartoNL ). This release should be considered as release candidate so please test it and provide feedback.

Download here
Changelog here

1.9.0.4 has been released, fixing 2 bugs.

Conan Stats 1.9.0.2 Beta released

This is a big release for Conan Stats mainly focusing on improving the plugin interface, improving the userinterface and a internal code cleanup ( also known as a refactor ). The updates to the plugin interface is mainly focused on helping plugin developers that want to provide custom parsers for other languages ( Currently someone has started on French and russian ). The improvements in the user interface is regarding publishing logs to conanstats.com

Download here
Changelog here
Plugin API here

EDIT: Minor update 1.9.0.2 has been released, this fixes a issue with time in combat not being calculated correctly.

Finding out evades

Understanding stats like blocks and parries.

Since Age of Conan only logs this information from the person who is recording the logs, Conan Stats can only display it for the recording character. The stats are displayed in the main UI in the stats tab.

As you can see it displays the total number of Blocks, dodges and parries (When the number is above 0 ).

Conan Stats API - Express workaround

In the documentation is says the following way to allows for easy debuging of plugins:

Setting up Visual Studio
    * Now go to the Debug tab, and select Start external program

Unfortunately, this option is not available in the Express version.

But a workaround exists:
Go to your project directory and edit (or create) the .csproj.user. e.g.  Warnings.csproj.user in Sample Plugin\Sound Warning.
Add the following lines in the

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
section:

<StartAction>Program</StartAction>
<StartProgram>C:\aoc\Conan Stats Beta\Conan Stats.exe</StartProgram>


Your file should look like :

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <StartWorkingDirectory>C:\aoc\Conan Stats Beta\</StartWorkingDirectory>
    <StartAction>Program</StartAction>
    <StartProgram>C:\aoc\Conan Stats Beta\Conan Stats.exe</StartProgram>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <StartWorkingDirectory>C:\aoc\Conan Stats Beta\</StartWorkingDirectory>
  </PropertyGroup>
</Project>

This work around was posted noted by Dalen and he found it here