Type Alias NetworkPlayer
NetworkPlayer : {
alias: string;
name: string;
slot: number;
team: number;
}
alias: string;
name: string;
slot: number;
team: number;
}
Type declaration
Readonly
alias: stringRepresents the player's name in current time. Can be changed during a game with the
!alias <name>
command by the player.Readonly
name: stringThe original slot name as defined by the player's configuration file. Individual names are unique among players.
Readonly
slot: numberDetermines the slot id for this player. Slot numbers are unique per team and start at
1
. Slot number0
refers to the Archipelago server; this may appear in instances where the server grants the player an item.Readonly
team: 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.