I could'nt find a separate Tortall_DPS topic, so i decided to post it here.
Found out that after recent patch test dummies in Undercroft has lost names, and now Tortall can't track your DPS dealt to it.
How to fix it:
go to the folder: interface -> AddOns -> TortallDPSCore
open TortallDPSCore.lua with notepad
find the following line:
Code: Select all
ParseTextTable[1].dealt.damage.parse = L"Your (.-) hits (.-) for (%d+) damage%."
delete space before "for" so the line should look like:
Code: Select all
ParseTextTable[1].dealt.damage.parse = L"Your (.-) hits (.-)for (%d+) damage%."
this will enable parsing of your damage dealt to test dummies.
Also for more readability i have changed statistic table's look.

if you want this visuals for statistics, do the following:
go to the folder: interface -> AddOns -> Tortall_DPS
open Tortall_DPS.xml
replace file's content with code from here:
To let it show total time spent in combat for current statistic:
go to the folder: interface -> AddOns -> Tortall_DPS
open Tortall_DPS.lua
add following line into funcion:
Code: Select all
function TortallDPSMeter.DamageUpdate( damage, healing, combatTime, channel )
code to be added (preferably to be added in the end of the function, before Sort() and Populate() )
Code: Select all
LabelSetText( "TortallDPSMeterCombatTime", towstring(combatTime) )