summaryrefslogtreecommitdiff
path: root/docs/multiplayer.txt
blob: eaa87576e9426ac820e003b25874959303b1e7a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
Multiplayer Manual for OpenTTD
==============================

1. Starting a Server
---------------------

 - Click "multiplayer" on the startup screen
 - Click "start server"
 - Type in a game name
 - Select the type of game ('LAN/Internet' or 'Internet (advertise)'. With the
   last one other people are able to see you online. Else they need your IP and
   port to join)
 - Click "start game", "load game" or "load scenario"
 - Start playing


2. Connecting to a Server
--------------------------

 - Click "multiplayer" on the startup screen

 - If you want to connect to any network game in your LAN click on 'LAN', then
   on 'Find Server'
 - If you want to see which servers all online on the Internet, click on
   'Internet' and 'Find Server'

 - If there were more than one server
   - select one in the list below the buttons
   - click on 'join game'

 - If you want to play and you have the ip or hostname of the game server you
   want connect to.
   - click add server
   - type in the ip address or hostname
   - if you want to add a port use :<port>

 - Now you can select a company and press: "Join company", to help that company
 - Or you can press "Spectate game", to spectate the game
 - Or you can press "New company", and start your own company (if there are
   slots free)

 - You see a progressbar how far you are with joining the server.

 - Happy playing


3. Connecting to a Server over the Console
-------------------------------------------

 - Open the console and type in the following command:
    connect <ip/host>:<port>#<company-no>


4. Playing Internet-Games
--------------------------

 - Servers with a red dot behind it have a different version then you have. You
   will not be able to join those servers.

 - Servers with a yellow dot behind it have NewGRFs that you do not have. You
   will not be able to join those servers. However, via "NewGRF Settings" and
   "Find missing content online" you might be able to download the needed
   NewGRFs after which you can join the server.

 - It can happen that a connection is that slow, or you have that many clients
   connected to your server, that your clients start to loose their connection.
   Some things you can do about it:
   - [network] frame_freq:
     change it in console with: 'set network.frame_freq <number>'
     the number should be between the 0 and 10, not much higher. It indicates
     the delay between clicking and showing up. The higher, the more you notice
     it, but the less bandwidth you use.
     A good value for Internet-games is 2 or 3.

   - [network] sync_freq:
     change it in console with: 'set network.sync_freq <number>'
     the number should be between the 50 and 1000, not much lower, not much
     higer. It indicates the time between sync-frames. A sync-frame is a frame
     which checks if all clients are still in sync. When the value it too high,
     clients can desync in 1960, but the server detects it in 1970. Not really
     handy. The lower the value, the more bandwidth it uses.

   NB: changing frame_freq has more effect on the bandwidth then sync_freq.


5. Tips for servers
--------------------

 - You can launch a dedicated server by adding -D as parameter.
 - In UNIX like systems, you can fork your dedicated server by adding -f as
   parameter.

 - You can automaticly clean companies that do not have a client connected to
   them, for, let's say, 3 years. You can do this via: 'set autoclean_companies'
   and 'set autoclean_protected' and 'set autoclean_unprotected'. Unprotected
   removes a password from a company when it is not used for more then the
   defined amount of months. 'set autoclean_novehicles' can be used to remove
   companies without any vehicles quickly.

 - You can also do this manually via the console: 'reset_company'.

 - You can let your server automaticly restart a map when, let's say, year 2030
   is reached. See 'set restart_game_date' for detail.

 - If you want to be on the server-list, enable Advertising. To do this, select
   'Internet (advertise)' in the Start Server menu, or type in console:
   'set server_advertise 1'.

 - You can protect your server with a password via the console: 'set server_pw',
   or via the Start Server menu.

 - When you have many clients connected to your server via Internet, watch your
   bandwidth (if you have any limit on it, set by your ISP). One client uses
   about 1.5 kilobytes per second up and down. To decrease this amount, setting
   'frame_freq' to 1 will reduce it to roughly 1 kilobyte per second per client.


6. Some useful things
----------------------

 - You can protect your company so nobody else can join uninvited. To do this,
   set a password in your Company Screen

 - You can give other players some money via the ClientList (under the 'head'
   in the mainbar).

 - You can chat with other players via ENTER or via SHIFT+T or via the ClientList

 - Servers can now kick players, so don't make them use it!


7. Troubleshooting
------------------

 - My advertising server does not show up in list at servers.openttd.org
     Run openttd with the '-d net=2' parameter, as this will show whether it
     receives replies from the master server. If it does not receive replies it
     is most likely that you need to configure your router to forward ports
     3979 (both TCP and UDP) to the computer that is hosting the game.