From de2b5fd784956f4199c8c75c02588c0603f05ac1 Mon Sep 17 00:00:00 2001 From: Ted John Date: Tue, 1 Mar 2022 21:14:06 +0000 Subject: [PATCH] Updated Multiplayer (markdown) --- Multiplayer.md | 63 +------------------------------------------------- 1 file changed, 1 insertion(+), 62 deletions(-) diff --git a/Multiplayer.md b/Multiplayer.md index 73c90a7..16392b6 100644 --- a/Multiplayer.md +++ b/Multiplayer.md @@ -1,6 +1,4 @@ -**Something to note: multiplayer is a relatively new feature, and still contains a good deal of bugs. You're very likely to encounter them. If that happens, please report it if it hasn't been reported already, and please say if the bug only occurs on multiplayer games.** - -OpenRCT2 now has initial support for co-op multiplayer. You can use or test it by clicking the "Multiplayer" button in the Main Title. +OpenRCT2 has support for co-op multiplayer. It can be accessed by clicking the "Multiplayer" button in the Main Title. ## Starting the server To start the built-in server, click "Multiplayer" from the Main Title of OpenRCT2, and then select "Start Server". Specify the save that you want to host in the "Load Save" window to finish the start. The default port for OpenRCT2 is 11753 (TCP), this can be changed by manually editing the config file in your OpenRCT2 user directory. @@ -102,62 +100,3 @@ Alternatively set the following configuration option as a client in your config. [network] stay_connected = true ``` - -## Server List API -**Available at https://servers.openrct2.io** - -**Request:** -``` -GET HTTP/1.1 -Host: servers.openrct2.io -Accept: application/json -``` -**Response:** -```json -{ - "status": 200, - "servers": [ - { - "name": "Server Name", - "description": "Description of the server...", - "version": "0.0.3", - "players": 3, - "maxPlayers": 16, - "port": 11753, - "ip": { - "v4": [ - "80.12.231.106" - ], - "v6": [ - "2001:0:9e18:6ac8:34:23be:ad67:7c52" - ] - }, - "requiresPassword": false, - "supportsIPv4": true, - "supportsIPv6": true, - "serverId": 390, - "gameInfo": { - "guests": 1520, - "month": 46, - "day": 44564, - "cash": 5969616, - "parkValue": 1399430, - "mapSize": 126 - }, - "customGI": { - "month": "September", - "day": "21st", - "year": 5, - "cash": "596,961", - "parkValue": "139,943", - "guests": "1,520" - }, - "provider": { - "website": "https://myopenrct2server.net", - "email": "support@myopenrct2server.net", - "name": "MyOpenRCT2 Server" - } - } - ] -} -```