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 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

Conan Stats 1.8.0.15 released

Another maintnance update has been released, this one fixes a few cases where it would fail to parse a spesfic log lines

Download here
Changelog here

Conan Stats 1.8.0.14 released

This update is minor and fixes a few minor issues parsing some log files. The next beta cycle will most focus on adding features to the API provided by Conan Stats.

Download here

Conan Stats 1.8.0.13 released

This update to Conan Stats is big, in terms that it adds support for Plugins so the community can extend it with the features they would like. Dalen from the server Ishtar has already started on using the API for parsing French logs. This update also adds other features like a multi threaded parser, and a bigger list of bosses.

Like always download here
Changelog here