WoW API: IsGuildLeader
← WoW API < IsGuildLeader
guildmaster = IsGuildMaster()
This function checks to see if you are the guild master of a guild and returns the appropriate result.
ParametersEdit
ReturnsEdit
- guildmaster
- True if you are a guild master, otherwise false.
ExampleEdit
if (IsGuildLeader() == true) then DEFAULT_CHAT_FRAME:AddMessage("You are a Guild master"); else DEFAULT_CHAT_FRAME:AddMessage("You are not a Guild master"); end
ResultEdit
Displays a message stating if your a guild master or not.