Event ClanMemberList
The Event_ClanMemberList scripting event occurs once for each member of a clan during log in to a bot in a WarCraft III clan.
It is more convenient to use the collection of ClanMember objects stored in: Clan.Members
.
Contents
History
The Event_ClanMemberList() event was added in StealthBot version 2.7 by Stealth by request of raylu.
Syntax
Sub Event_ClanMemberList(Username, Rank, Online) ' ... End Sub
Arguments
- Username is a string containing the user's name.
- Rank is the numeric rank you hold in your clan, a Battle.net clan rank.
- Online is a numeric value representing the user's current online state.
- = Offline
- = Online
Example
See also
- Event_BotClanInfo(ClanTag, Rank)
- Event_ClanMOTD(Message)
- Event_ClanMemberUpdate(Username, Rank, Online)
- Event_ClanMemberLeaves(Username)
- Event_BotJoinedClan(ClanTag)
- Event_BotClanRankChanged(NewRank)
- Event_BotRemovedFromClan()
- Script events
- Script system