Insurgency 2014 Dedicated Server: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 34: | Line 34: | ||
== Command line parameters == | == Command line parameters == | ||
Use can use command line parameters to customize the server. See [[Command_Line_Options#Source_Dedicated_Server]] for options. | Use can use command line parameters to customize the server. See [[Command_Line_Options#Source_Dedicated_Server]] for options. | ||
= Configuration = | |||
server.cfg is the standard file for customizing your server. | |||
Below is an example of standard configuration. | |||
// --------------------------------------------------------------- | |||
// Server Info Options | |||
// --------------------------------------------------------------- | |||
hostname "<YourServerName>" // server name | |||
rcon_password "<YourRemoteAdminPassword>" // rcon password | |||
sv_password "" // Server password for private servers | |||
// --------------------------------------------------------------- | |||
// Server Download Options (Community made maps) | |||
// --------------------------------------------------------------- | |||
// sv_downloadurl "<type-url-here>" | |||
// sv_allowdownload 1 | |||
// sv_allowupload 1 | |||
// --------------------------------------------------------------- | |||
// Server Logging Options | |||
// --------------------------------------------------------------- | |||
log on | |||
sv_logbans 1 | |||
sv_logecho 1 | |||
sv_logfile 1 | |||
sv_log_onefile 0 | |||
// --------------------------------------------------------------- | |||
// Game Mode Options (Change text with in the quotes) | |||
// --------------------------------------------------------------- | |||
// "tactical_operation" - firefight, vip, search and destroy | |||
// "sustained_combat" - push, skirmish, strike | |||
// "cooperative" - checkpoint, outpost, hunt | |||
mapcyclefile "mapcycle_tactical_operation.txt" | |||
// --------------------------------------------------------------- | |||
// Enabling Matchmaking (Change text with in the quotes) | |||
// More info: http://steamcommunity.com/app/222880/discussions/2/558746089590579609/ | |||
// --------------------------------------------------------------- | |||
// "tacticalop" (Tactical Operations) | |||
// "sustained" (Sustained Combat) | |||
// "coop" (Cooperative) | |||
sv_playlist tacticalop | |||
[[Category: Dedicated Server]] | [[Category: Dedicated Server]] |
Revision as of 19:59, 7 February 2014
This page outlines the basics of setting up and running Insurgency 2014 Dedicated Server.
Downloading Insurgency 2014 Dedicated Server
1. Download and install SteamCMD.
2. Start SteamCMD. At the Steam> prompt, set your Insurgency Dedicated Server install directory.
Examples:
- Windows:
force_install_dir c:\ins-ds\
- Linux:
force_install_dir /full/path/to/ins-ds/
3. Install or Update Insurgency.
app_update 237410
Alternatively you can use the following command.
- Windows:
steamcmd +login username password +force_install_dir "/home/insserver/serverfiles" +app_update 237410 +quit
- Linux:
./steamcmd.sh +login username password +force_install_dir "/home/insserver/serverfiles" +app_update 237410 +quit
Running Insurgency 2014 Dedicated Server
Use the following commands to start the server
- Windows:
srcds.exe
- Linux:
./srcds_linux
Command line parameters
Use can use command line parameters to customize the server. See Command_Line_Options#Source_Dedicated_Server for options.
Configuration
server.cfg is the standard file for customizing your server.
Below is an example of standard configuration.
// --------------------------------------------------------------- // Server Info Options // --------------------------------------------------------------- hostname "<YourServerName>" // server name rcon_password "<YourRemoteAdminPassword>" // rcon password sv_password "" // Server password for private servers // --------------------------------------------------------------- // Server Download Options (Community made maps) // --------------------------------------------------------------- // sv_downloadurl "<type-url-here>" // sv_allowdownload 1 // sv_allowupload 1 // --------------------------------------------------------------- // Server Logging Options // --------------------------------------------------------------- log on sv_logbans 1 sv_logecho 1 sv_logfile 1 sv_log_onefile 0 // --------------------------------------------------------------- // Game Mode Options (Change text with in the quotes) // --------------------------------------------------------------- // "tactical_operation" - firefight, vip, search and destroy // "sustained_combat" - push, skirmish, strike // "cooperative" - checkpoint, outpost, hunt mapcyclefile "mapcycle_tactical_operation.txt" // --------------------------------------------------------------- // Enabling Matchmaking (Change text with in the quotes) // More info: http://steamcommunity.com/app/222880/discussions/2/558746089590579609/ // --------------------------------------------------------------- // "tacticalop" (Tactical Operations) // "sustained" (Sustained Combat) // "coop" (Cooperative) sv_playlist tacticalop