diff --git a/Multiplayer.md b/Multiplayer.md index 6c8532a..28dec5c 100644 --- a/Multiplayer.md +++ b/Multiplayer.md @@ -9,14 +9,14 @@ In order for the server to successfully accept clients, the port must be open fo You can also launch a server by command line, e.g. ``` -openrct2 --port 22050 +openrct2 host --port 22050 ``` ### Dedicated server OpenRCT2 also supports a headless mode where the game will run as a console application with no UI. This is useful for running dedicated game servers. This can be launched by the following command line: ``` -openrct2 --headless --port 11753 +openrct2 host --port 11753 --headless ``` ## Starting the client @@ -25,7 +25,7 @@ To connect to a server, click "Multiplayer" from the Main Title of OpenRCT2, and To connect to a server by command line with the IP address 192.168.1.102 and listening on port 22050 in command prompt, type the following command (replace with the actual values of the server you want to connect to): ``` -openrct2 --server 192.168.1.102 --port 22050 +openrct2 join 192.168.1.102 --port 22050 ``` ## De-synchronisation