WoW:API IsRaidOfficer: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 16: Line 16:


----
----
Confirmed: this actually returns true if you have the Assistant rank.
{{WoW API}}
{{WoW API}}

Revision as of 11:19, 2 October 2006

IsRaidOfficer()

Usage

IsRaidOfficer(); 

Will return 1 if the player is a raid officer or 0 if the player is not.

Example

 if (IsRaidOfficer())
 DEFAULT_CHAT_FRAME:AddMessage ("I am a raid officer.");
 elseif not (IsRaidOfficer())
 DEFAULT_CHAT_FRAME:AddMessage ("I am not a raid officer.");
 end

Confirmed: this actually returns true if you have the Assistant rank. Template:WoW API