Difference between revisions of "Event ClanMemberList"

From StealthBot Wiki Backup
Jump to: navigation, search
(Arguments)
 
m (1 revision imported)
 
(No difference)

Latest revision as of 08:20, 1 December 2017

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.

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.
  1. = Offline
  2. = Online

Example

See also