49
edits
(removedapi) |
mNo edit summary |
||
| Line 1: | Line 1: | ||
{{ | {{wowapi|removed=3.0|replace=Use {{api|UnitAura}} and derived functions instead.}} | ||
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. | 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 == | === Returns === | ||
* name (string) - name of buff found | |||
* rank (string) - rank of buff found | |||
== Example == | == Example == | ||
Called on a paladin with Devotion Aura (Rank 1) in buff slot 1 | |||
local buffName, buffRank = GetPlayerBuffName(1) | local buffName, buffRank = GetPlayerBuffName(1) | ||
;Result | |||
buffName = "Devotion Aura" | buffName = "Devotion Aura" | ||
buffRank = "Rank 1" | buffRank = "Rank 1" | ||
== Notes == | |||
* Removed in patch 3.0. Use {{api|UnitAura}} (or derived functions) to retrieve information about buffs. | |||