WoW API: GetPlayerBuffTimeLeft

From AddOn Studio
Jump to navigation Jump to search

WoW API < GetPlayerBuffTimeLeft

Retrieve info about a certain player buff of a certain type.

buffTimeLeft = GetPlayerBuffTimeLeft(buffIndex);

Parameters[edit]

Arguments[edit]

  • buffIndex (number) - The index of the buff to retrieve. Can be obtained with GetPlayerBuff

Returns[edit]

  • buffTimeLeft (number) - The time, in seconds, left until the buff expires.

Examples[edit]

local timeLeft = GetPlayerBuffTimeLeft(buffIndex)

Result - Retrieves amount of time left of the first buff you have.

 for i=0,31 do
  local id,cancel = GetPlayerBuff(i,"HELPFUL|HARMFUL|PASSIVE");
  if(id > -1) then
    local timeleft = GetPlayerBuffTimeLeft(id);
   DEFAULT_CHAT_FRAME:AddMessage(timeleft);
  end
end

Result - Will display your buff/debuff durations.

See Also[edit]