WoW:API UnitDebuff: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 51: Line 51:
----
----
{{Template:WoW API}}
{{Template:WoW API}}
[[Category:API Functions|UnitDebuff]]
[[Category:API Buff Functions|UnitDebuff]]
[[Category:API Unit Functions|UnitDebuff]]

Revision as of 18:45, 27 August 2005

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 8 for party/pet/target debuffs.

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
Why doesn't UnitDebuff accurately report the spell I just cast?
Sample Code Check Hunter's Mark Aspect
List of known buff and debuff effects that can be queried

Template:WoW API