Interface RoomInfoPacket
cmd: "RoomInfo";
datapackage_checksums: Record<string, string>;
games: string[];
generator_version: NetworkVersion;
hint_cost: number;
location_check_points: number;
password: boolean;
permissions: PermissionTable;
seed_name: string;
tags: string[];
time: number;
version: NetworkVersion;
}
Properties
Readonly
cmd
Readonly
datapackage_checksums
Checksum hash of the individual games' data packages the server will send. Used by newer clients to decide which games' caches are outdated. See DataPackage for more information on the data package.
Readonly
games
List of games present in this multi-world.
Readonly
generator_version
Object denoting the version of Archipelago which generated the multi-world.
Readonly
hint_cost
The amount of points it costs to receive a hint from the server.
Readonly
location_check_points
The amount of hint points you receive per item/location check completed.
Readonly
password
Denoted whether a password is required to join this room.
Readonly
permissions
Mapping of restrict-able commands to their current PermissionValue level.
Readonly
seed_name
Uniquely identifying name for this generation. Based on the seed
, but not identical to prevent spoilers.
Readonly
tags
Denotes special features or capabilities that the sender is capable of. Example: WebHost
Readonly
time
Unix time stamp in seconds of "now". Sent for time synchronization if wanted for things like a DeathLink BouncePacket.
Readonly
version
Object denoting the version of Archipelago which the server is running.
Sent to clients when they connect to an Archipelago server, but before they authenticate.