WoW:API IsInGuild: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
({{wowapi}}) |
||
Line 1: | Line 1: | ||
{{wowapi}} __NOTOC__ | |||
Lets you know whether you are in a guild. | Lets you know whether you are in a guild. | ||
isGuildMember = IsInGuild(); | isGuildMember = IsInGuild(); | ||
==Parameters== | |||
; | ===Returns=== | ||
:;isGuildMember : Boolean - 1 if you are in a guild, nil otherwise. | |||
==Example== | |||
if (IsInGuild()) then | if (IsInGuild()) then | ||
SendChatMessage("Hi Guild!","GUILD"); | |||
end | end | ||