Type Alias NetworkPlayer
NetworkPlayer : {
alias: string;
name: string;
slot: number;
team: number;
}
alias: string;
name: string;
slot: number;
team: number;
}
Type declaration
Readonlyalias: stringRepresents the player's name in current time. Can be changed during a game with the
!alias <name>command by the player.Readonlyname: stringThe original slot name as defined by the player's configuration file. Individual names are unique among players.
Readonlyslot: numberDetermines the slot id for this player. Slot numbers are unique per team and start at
1. Slot number0refers to the Archipelago server; this may appear in instances where the server grants the player an item.Readonlyteam: numberDetermines the team the player is on. Useful for competitive seeds. Team numbers start at
0.
An object that contains metadata about an individual player on the network.