Page 1 of 1

DPS tracker/logger

Posted: Fri Aug 10, 2018 4:49 pm
by Djir
Tried out a couple of these, but was wondering if there is specifically a DPS tracker someone could recommend which breaks down skill damage and which can save your logs and perhaps display in percentage would be nice at a glance.

Mainly for testing out different builds/skills and tracking their performance over time in different circumstances, ie SC, solo, zerg etc.

Re: DPS tracker/logger

Posted: Fri Aug 10, 2018 5:03 pm
by Telperien
I couldnt turn on Enemy dps meter, but for sure the Tortall dps works fine and is great for testing.
U need:

https://tools.idrinth.de/addons/tortalldpscore/
and
https://tools.idrinth.de/addons/tortall-dps/

Re: DPS tracker/logger

Posted: Thu May 09, 2019 6:57 am
by Wellard
Does any good sole out there have a version of this addon that remembers its settings i.e. location and opacity of the toggler and the settings for the main screen?

once I have to do a reload or relog this version reverts everything to stock.

Alternatively does anybody know of a fix for this behaviour?
Cheers in advance

Re: DPS tracker/logger

Posted: Thu May 09, 2019 7:01 am
by NoRKaLKiLLa
Enemy used to not work for me, but I can't remember which add-on I had to disable to get it to work.

Re: DPS tracker/logger

Posted: Thu May 09, 2019 7:33 am
by Sulorie
Enemy dps tracker works fine for me.

Re: DPS tracker/logger

Posted: Thu Jun 11, 2020 5:12 pm
by hunter4souls
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.
Image
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:

Code: Select all

https://pastebin.com/urG6bJ3g
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) )