WoW:API IsRaidOfficer: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Move page script moved page API IsRaidOfficer to API IsRaidOfficer without leaving a redirect) |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{wowapi}} | |||
== IsRaidOfficer() == | == IsRaidOfficer() == | ||
Line 5: | Line 6: | ||
IsRaidOfficer(); | IsRaidOfficer(); | ||
Will return 1 if the player is a raid officer or 0 if the player is not. | Will return 1 if the player is a raid officer or 0 if the player is not. (As of 2.4.3 seems to return nil if player is not raid officer) | ||
'''Example''' | '''Example''' | ||
Line 16: | Line 17: | ||
---- | ---- | ||
Confirmed: this actually returns true if you have the Assistant rank. | |||
Edit 3.3: May 27th 2010. It appears that IsRaidOfficer breaks any macro it is used in if the user is not a raid officer. It's been confirmed by others in my guild, but I'm not sure of the exact specifics. More should probably be done to determine whether or not it breaks based on that. |
Latest revision as of 04:46, 15 August 2023
← WoW API < IsRaidOfficer
IsRaidOfficer()[edit]
Usage
IsRaidOfficer();
Will return 1 if the player is a raid officer or 0 if the player is not. (As of 2.4.3 seems to return nil if player is not raid officer)
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.
Edit 3.3: May 27th 2010. It appears that IsRaidOfficer breaks any macro it is used in if the user is not a raid officer. It's been confirmed by others in my guild, but I'm not sure of the exact specifics. More should probably be done to determine whether or not it breaks based on that.