WoW API: GetPlayerBuffName

From AddOn Studio
Revision as of 04:46, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API GetPlayerBuffName to API GetPlayerBuffName without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < GetPlayerBuffName

Used to retrieve the name and rank of a buff in a given index, or to verify a buff with the given name (and optionally, rank) is present.

local name, rank = GetPlayerBuffName(id, or "name"[,"rank"])

Parameters

Arguments

  • id (number) - index from 1 to 16
  • name (string) - name of the buff to retrieve
  • rank (string) - rank of the buff to retrieve, as returned by this function (Optional)

Returns

  • name (string) - name of buff found
  • rank (string) - rank of buff found

Example

Called on a paladin with Devotion Aura (Rank 1) in buff slot 1

local buffName, buffRank = GetPlayerBuffName(1)
Result
buffName = "Devotion Aura"
buffRank = "Rank 1"

Notes

  • Removed in patch 3.0. Use UnitAura (or derived functions) to retrieve information about buffs.