WoW:API GetShapeshiftFormCooldown: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
/script A,B,C = GetShapeshiftFormCooldown(1); DEFAULT_CHAT_CHANNEL("Time Remaining: "..B-(GetTime()-A),1,1,1); | /script A,B,C = GetShapeshiftFormCooldown(1); DEFAULT_CHAT_CHANNEL("Time Remaining: "..B-(GetTime()-A),1,1,1); | ||
{{template:WoW API}} |
Revision as of 19:45, 30 December 2005
GetShapeshiftFormCooldown(index);
Parameters (index)
Index = integer number, each class has its own index.
Returns (StartTime, Duration, isActive)
StartTime = the server time of when the cooldown starts.
Duration = how long cooldown takes (in seconds)
isActive = if Cooldown is active - this will be = 1 (not positive on this defintion tho).
Example:
Sends the time remaining for the indexed cooldown
/script A,B,C = GetShapeshiftFormCooldown(1); DEFAULT_CHAT_CHANNEL("Time Remaining: "..B-(GetTime()-A),1,1,1);