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
Readonlycmd
Readonlydatapackage_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.
Readonlygames
List of games present in this multi-world.
Readonlygenerator_version
Object denoting the version of Archipelago which generated the multi-world.
Readonlyhint_cost
The amount of points it costs to receive a hint from the server.
Readonlylocation_check_points
The amount of hint points you receive per item/location check completed.
Readonlypassword
Denoted whether a password is required to join this room.
Readonlypermissions
Mapping of restrict-able commands to their current PermissionValue level.
Readonlyseed_name
Uniquely identifying name for this generation. Based on the seed, but not identical to prevent spoilers.
Readonlytags
Denotes special features or capabilities that the sender is capable of. Example: WebHost
Readonlytime
Unix time stamp in seconds of "now". Sent for time synchronization if wanted for things like a DeathLink BouncePacket.
Readonlyversion
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.