Server settings: Difference between revisions
No edit summary |
No edit summary |
||
| Line 8: | Line 8: | ||
! Setting !! Default value !! Description | ! Setting !! Default value !! Description | ||
|- | |- | ||
| | | maxplayers || 100 || Maximum number of players your server will hold. | ||
|- | |- | ||
| | | name || RAGE:MP Unofficial server || Server name that will be displayed to the master server. | ||
|- | |- | ||
| | | streamdistance || 500.0 || The distance on the X,Y plane which server entities will stream in for connected players. | ||
|- | |- | ||
| announce || | | announce || false || Announce to the master server so people can see you in their server browser. | ||
|- | |- | ||
| | | port || 22005 || The port that the server will use. Server uses both UDP and TCP protocols. | ||
|- | |- | ||
|} | |} | ||
| Line 24: | Line 24: | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
{ | { | ||
"maxplayers" : 100, | |||
"name" : "RAGE:MP Unofficial server", | |||
"gamemode" : "freeroam", | |||
"streamdistance" : 500.0, | |||
"announce" : false, | |||
"port": 22005 | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Reference]] | [[Category:Reference]] | ||
Revision as of 06:21, 6 September 2017
- conf.json - is a configuration file which allows you to change the settings of your server, like hostname, password, etc..
Settings
The following table will explain the use of the following settings:
| Setting | Default value | Description |
|---|---|---|
| maxplayers | 100 | Maximum number of players your server will hold. |
| name | RAGE:MP Unofficial server | Server name that will be displayed to the master server. |
| streamdistance | 500.0 | The distance on the X,Y plane which server entities will stream in for connected players. |
| announce | false | Announce to the master server so people can see you in their server browser. |
| port | 22005 | The port that the server will use. Server uses both UDP and TCP protocols. |
Sample file
{
"maxplayers" : 100,
"name" : "RAGE:MP Unofficial server",
"gamemode" : "freeroam",
"streamdistance" : 500.0,
"announce" : false,
"port": 22005
}