WoW:API UnitDebuff

From AddOn Studio
Revision as of 23:00, 28 November 2004 by WoWWiki>Sarf
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
UnitDebuff -Documentation by Sarf-

Retrieve info about a certain debuff on a certain unit.

debuffTexture = UnitDebuff(unitName, debuffIndex);

Arguments
(String unitName)
unitName
The name of the unit you wish to retrieve info on
Viable names known:
  • party1-4
  • pet
  • target
(Number debuffIndex)
debuffIndex
The index num of the debuff to retrieve info on. Starts at 1 and goes up to (and possibly beyond) a certain number.
The maximum numbers used by the Blizzard code are 16 for party/pet debuffs, 8 for party/pet dedebuffs and 5 for target debuffs and dedebuffs.

Returns
(String debuffTexture)
debuffTexture
The identifier of (path and filename to) the indicated debuff, or nil if no debuff

Example
debuff = UnitDebuff("pet", i);
Result

Retrieves the debuff texture of the pets debuff with the index of "i".


Description
Retrieve info (texture name) about a certain debuff of the specified unit.
See Also
UnitBuff

Template:WoW API