Originally Posted by Infused
On a light followup to the topic:
- what standalone addon can be used to timestamp combat log to miliseconds?
|
I have yet to find one, because there's no in-game UI function that gives the actual time to millisecond precision. What you *can* do is use GetTime() to get a time since system startup to millisecond precision.
In theory, you could write an addon that generated a combat log zero-indexed to start of combat via the following pseudocode:
Declare variable combatStarts
Register for combat start event (forget the name of it)
On combat start, combatStarts = GetTime();
On new line in combat log, timestamp printed = GetTime() - combatStarts