View Single Post
Old 04/02/07, 11:31 AM   #6 (permalink)
 Kalman
And It's Delicious
 
Kalman's Avatar
 
Orc Shaman
 
Mal'Ganis
Originally Posted by Infused View Post
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

http://mmorchive.net

The WoW forums, explained:
Originally Posted by Vontre
Oh, nah, I just type things for the sake of typing things. ^_^
 
User is offline.
Reply With Quote