WoW API: IsGuildLeader

From AddOn Studio
Revision as of 19:25, 12 November 2010 by WoWWiki>Coder62 (changed the description this function only returns if you are a guildleader or not, not possible to check other player maybe worked at some time)
Jump to navigation Jump to search

WoW API < IsGuildLeader

guildmaster = IsGuildMaster()

This function checks to see if you are the guild master of a guild and returns the appropriate result.

Parameters

Returns

guildmaster
True if you are a guild master, otherwise false.

Example

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

Result

Displays a message stating if your a guild master or not.