Server settings: Difference between revisions

From RAGE Multiplayer Wiki
No edit summary
No edit summary
Line 7: Line 7:
|-
|-
! Setting !! Default value !! Description
! Setting !! Default value !! Description
|-
| announce || false || Announce to the master server so people can see you in their server browser.
|-
| bind|| 127.0.0.1 || The IP to listen to
|-
| encryption|| false|| ...
|-
|-
| maxplayers || 100 || Maximum number of players your server will hold.
| maxplayers || 100 || Maximum number of players your server will hold.
Line 13: Line 19:
|-
|-
| streamdistance || 500.0 || The distance on the X,Y plane which server entities will stream in for connected players.
| 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.
| port || 22005 || The port that the server will use. Server uses both UDP and TCP protocols.
|-
| encryption|| false|| ...
|-
|-
| disallow-multiple-connections-per-ip|| false|| ...
| disallow-multiple-connections-per-ip|| false|| ...
Line 27: Line 29:
|-
|-
| language|| en|| ...
| language|| en|| ...
|-
| bind|| || ...
|-
|-
| sync-rate|| 40|| ...
| sync-rate|| 40|| ...
Line 48: Line 48:
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
{
{
This is an example file of conf.json:
{
"announce" : false,
"bind" : "127.0.0.1",
"gamemode" : "freeroam",
"name" : "RAGE:MP Unofficial server",
"maxplayers" : 100,
"maxplayers" : 100,
"name" : "RAGE:MP Unofficial server",
"port": 22005,
"gamemode" : "freeroam",  
"streamdistance" : 500.0
"streamdistance" : 500.0,
}
"announce" : false,
"port": 22005
}
}
</syntaxhighlight>
</syntaxhighlight>
[[Category:Reference]]
[[Category:Reference]]

Revision as of 17:39, 25 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
announce false Announce to the master server so people can see you in their server browser.
bind 127.0.0.1 The IP to listen to
encryption false ...
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.
port 22005 The port that the server will use. Server uses both UDP and TCP protocols.
disallow-multiple-connections-per-ip false ...
limit-time-of-connections-per-ip 0 ...
url ...
language en ...
sync-rate 40 ...
resource-scan-thread-limit ...
max-ping ...
min-fps ...
max-packet-loss ...
min-game-version ...

Sample file

{
This is an example file of conf.json:
{
	"announce" : false,
	"bind" : "127.0.0.1",
	"gamemode" : "freeroam", 
	"name" : "RAGE:MP Unofficial server", 
	"maxplayers" : 100,
	"port": 22005,
	"streamdistance" : 500.0
}
}