Event ClanMemberUpdate
The Event_ClanMemberUpdate scripting event occurs when a member of the clan changes his rank or online status.
To find the current values of a user's rank and online status, it is more convenient to use the collection of ClanMember objects stored in: Clan.Members
.
Contents
History
The Event_ClanMemberUpdate() event was added in StealthBot version 2.7 by Stealth by request of raylu.
Syntax
Sub Event_ClanMemberUpdate(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_ClanMemberList(Username, Rank, Online)
- Event_ClanMemberLeaves(Username)
- Event_BotJoinedClan(ClanTag)
- Event_BotClanRankChanged(NewRank)
- Event_BotRemovedFromClan()
- Script events
- Script system