WoW API: IsGuildLeader
Jump to navigation
Jump to search
← WoW API < IsGuildLeader
guildmaster = IsGuildMaster("PlayerName")
This function checks to see if 'PlayerName' is the guild master of a guild and returns the appropriate result.
Parameters
Arguments
- PlayerName
- String - The name of the player you are checking.
Returns
- guildmaster
- True if this person is a guild master, otherwise false.
Example
player = UnitName("player"); if (IsGuildLeader(player) == true) then DEFAULT_CHAT_FRAME:AddMessage(player.." you are a Guild master"); else DEFAULT_CHAT_FRAME:AddMessage(player.." you are not a Guild master"); end
Result
Displays a message stating if your a guild master or not.