WoW API: GetBattleFieldInstanceRunTime

Revision as of 10:09, 10 September 2009 by WoWWiki>Flo8464 (Added description)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WoW API < GetBattleFieldInstanceRunTime

Returns the time in ms since the current battlefield has opened.

battlefieldRunTime = GetBattleFieldInstanceRunTime();

Parameters

Returns

battlefieldRunTime
Integer - the time in ms since the current battlefield has opened or zero if you are not in any battleground.

Internal Implementation

WoW Version 3.2.0

Whenever you enter a battleground, WoW retrieves the start-time from the server and saves a DWORD-value at 0x1129334 containing the time between system startup of the user and battleground start. This function simply gets the time between system startup and now and substracts that saved value from it. The windows client calls GetTickCount() to get those times, see: MSDN WinAPI reference