Server settings: Difference between revisions

From RAGE Multiplayer Wiki
No edit summary
Line 9: Line 9:
|-
|-
| name || RageMP Oficial Server || Server name that will be displayed to the master server.
| name || RageMP Oficial Server || Server name that will be displayed to the master server.
|-
| maxplayers || 100 || Maximum number of players your server will hold.
|-
|-
| 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.
|-
|-
| maxplayers || 100 || Maximum number of players your server will hold.
| announce || true || Announce to the master server so people can see you in their server browser.
|-
|-
| announce || true || Announce to the master server so people can see you in their server browser.
| streamdistance || 500.0 || The distance on the X,Y plane which server entities will stream in for connected players.
|-
|-
|}
|}
Line 24: Line 26:
     "name" : "RageMP Oficial Server",  
     "name" : "RageMP Oficial Server",  
     "maxplayers" : 100,
     "maxplayers" : 100,
     "gamemode" : "freeroam",  
     "gamemode" : "freeroam",
     "streamdistance" : 500.0,
     "port": 22005,
     "announce" : true,
     "announce" : true,
     "port": 22005
     "streamdistance" : 500.0
}
}
</syntaxhighlight>
</syntaxhighlight>
[[Category:Reference]]
[[Category:Reference]]

Revision as of 01:30, 5 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
name RageMP Oficial Server Server name that will be displayed to the master server.
maxplayers 100 Maximum number of players your server will hold.
port 22005 The port that the server will use. Server uses both UDP and TCP protocols.
announce true Announce to the master server so people can see you in their server browser.
streamdistance 500.0 The distance on the X,Y plane which server entities will stream in for connected players.

Sample file

{
    "name" : "RageMP Oficial Server", 
    "maxplayers" : 100,
    "gamemode" : "freeroam",
    "port": 22005,
    "announce" : true,
    "streamdistance" : 500.0
}