WoW API: GetSummonFriendCooldown

From AddOn Studio
Revision as of 14:24, 20 June 2010 by WoWWiki>Starlightblunder (bp)
Jump to navigation Jump to search

WoW API < GetSummonFriendCooldown

Returns information about the cooldown time of the RaF Summon Friend ability.

start, duration = GetSummonFriendCooldown()

Returns

start
Number - The value of GetTime() at the moment the cooldown began, 0 if the ability is ready
duration
Number - The length of the cooldown in seconds, 0 if the ability is ready

Example

The snippet below prints the remaining time of the cooldown in seconds.

local start, duration = GetSummonFriendCooldown()
local timeleft = start + duration - GetTime()
print(timeleft)