WoW:API CancelPlayerBuff: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 8: Line 8:
;''Arguments''
;''Arguments''


:;buffIndex : The index of the buff to remove. Can be obtained with [[API GetPlayerBuff|GetPlayerBuff]]
:;buffIndex : The index of the buff to remove. Can be obtained with [[API GetPlayerBuff|GetPlayerBuff]]. Can also use buff name since the 2.3 patch.


----
----

Revision as of 14:50, 5 December 2007

WoW API < CancelPlayerBuff

Removes a specific buff from the player.

CancelPlayerBuff(buffIndex);

Arguments
buffIndex
The index of the buff to remove. Can be obtained with GetPlayerBuff. Can also use buff name since the 2.3 patch.

Example
CancelPlayerBuff(GetPlayerBuff(0,"HELPFUL"))
Result

Removes the first (right-most in the default UI) buff from the player.


Notes

this function uses a zero-based index, while UnitBuff() does not. Mind 21:11, 19 July 2006 (EDT)

See Also

Notes

  • Surprisingly this function is not protected nor limited in any way to hardware event restriction Blizzard used so far. This function can be called freely from an AddOn to auto-remove a given buff.

(tested on live servers 2.0)