1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Updated Multiplayer (markdown)

Ted John
2022-03-01 21:14:06 +00:00
parent b2b1794888
commit de2b5fd784

@@ -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"
}
}
]
}
```