Interface ConnectPacket
interface ConnectPacket {
cmd: "Connect";
game: string;
items_handling: number;
name: string;
password: string;
slot_data: boolean;
tags: string[];
uuid: string;
version: NetworkVersion;
}
cmd: "Connect";
game: string;
items_handling: number;
name: string;
password: string;
slot_data: boolean;
tags: string[];
uuid: string;
version: NetworkVersion;
}
Properties
Readonly
cmd
cmd
Readonly
game
game: string
The name of the game the client is playing.
Readonly
items_handling
items_handling : number
Bit flags configuring which items should be sent by the server. See itemsHandlingFlags for information on individual flags.
Readonly
name
name: string
The slot name for this client.
Readonly
password
password: string
If the game session requires a password, it should be passed here.
Readonly
slot_data
slot_data : boolean
If true
, the ConnectedPacket will contain slot data.
Readonly
tags
tags: string[]
Denotes special features or capabilities that the sender is currently capable of.
Readonly
uuid
uuid: string
Unique identifier for player client.
Readonly
version
An object representing the minimum Archipelago server version this client supports.
Sent by the client to authenticate a connection to an Archipelago session.