WoW:API GetQuestTimers: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
m ({{wowapi}})
Line 1: Line 1:
<center>'''GetQuestTimers''' ''-Documentation by AlexanderYoshi-''</center>
{{wowapi}}
 
Returns all of the quest timers currently in progress.
Returns all of the quest timers currently in progress.


Line 34: Line 33:


: Returns all of the quest timers currently in progress.
: Returns all of the quest timers currently in progress.
----
{{WoW API}}

Revision as of 09:25, 18 June 2006

WoW API < GetQuestTimers

Returns all of the quest timers currently in progress.

GetQuestTimers();

Arguments
none

Returns
Strings questTimers
questTimers
Values in seconds of all quest timers currently in progress

Example
QuestTimerFrame_Update(GetQuestTimers());
function QuestTimerFrame_Update(...)
 for i=1, arg.n, 1 do
  SecondsToTime(arg[i]);
 end
end
Result
"300", "240", "100"

Description
Returns all of the quest timers currently in progress.