Advertisement
dgibbs

insserver server.cfg

Aug 13th, 2015
522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. // ****************************************************************************
  2. // *
  3. // Ingurgency - server.cfg *
  4. // Version 130815 *
  5. // *
  6. // ****************************************************************************
  7.  
  8. // ............................. Basic Settings ............................. //
  9.  
  10. // Hostname for server.
  11. hostname "<hostname>"
  12.  
  13. // RCON - Remote console password.
  14. rcon_password "<rconpassword>"
  15.  
  16. // Server password - for private servers.
  17. // note: not compatible with sv_playlist.
  18. sv_password ""
  19.  
  20. // Contact email for server sysop.
  21. sv_contact "email@example.com"
  22.  
  23. // ............................. Fast Download .............................. //
  24. // info: Allows custom maps to be downloaded to the client.
  25.  
  26. // Allows clients to download custom maps and textures etc. from the server at 20 kbps.
  27. // sv_allowdownload 1
  28.  
  29. // Allows clients to download custom maps, textures etc. from a web server with no transfer limit.
  30. // Example:
  31. // server location: maps/custommap.bsp
  32. // web server location: http://example.com/custom/maps/custommap.bsp
  33. //
  34. // sv_downloadurl "http://example.com/custom"
  35.  
  36.  
  37. // ............................. Server Logging ............................. //
  38.  
  39. log on
  40. sv_logbans 1
  41. sv_logecho 1
  42. sv_logfile 1
  43. sv_log_onefile 0
  44.  
  45. // ......................... Matchmaking Playlists ......................... //
  46. // info: Selecting a playlist will allow the server to show up in matchmaking.
  47. // Playlists use predefined settings and mapcycle.
  48.  
  49. // You do not need to select a mapcycle as the server will cycle though the
  50. // predefined playlist mapcycle.
  51. //
  52. // If you want to change the predefined playlist mapcycle you can create a
  53. // custom mapcycle but only with maps from the playlist mapcycle.
  54. //
  55. // You can also create your own custom playlists.
  56. // http://steamcommunity.com/sharedfiles/filedetails/?id=461776759
  57.  
  58. // nwi/comp
  59. // nwi/coop
  60. // nwi/coop_elite
  61. // nwi/coop_hardcore
  62. // nwi/pvp_sustained
  63. // nwi/pvp_tactical
  64.  
  65. sv_playlist "nwi/coop"
  66.  
  67. // ............................... Map Cycles ............................... //
  68.  
  69. // info: There are several predefined mapcycles available that are listed below.
  70. // You can also create your own custom mapcycle.
  71.  
  72. // "mapcycle.txt" - by default this contains the most popular options
  73. // "mapcycle_all.txt" - all possible map/mode combinations for PvP
  74. // "mapcycle_ambush.txt" - all ambush (VIP) maps
  75. // "mapcycle_attackdefend.txt" - push & strike maps
  76. // "mapcycle_checkpoint.txt" - all checkpoint maps
  77. // "mapcycle_comp.txt" - firefight & elimination maps
  78. // "mapcycle_cooperative.txt" - survival, coop, hunt maps
  79. // "mapcycle_firefight.txt" - all firefight maps
  80. // "mapcycle_flashpoint.txt" - all flashpoint maps
  81. // "mapcycle_hunt.txt" - all hunt maps
  82. // "mapcycle_infiltrate.txt" - all infiltrate (CTF) maps
  83. // "mapcycle_objrespawn.txt" - all firefight & flashpoint featuring respawning for completing objectives
  84. // "mapcycle_occupy.txt" - all occupy maps
  85. // "mapcycle_practice.txt"
  86. // "mapcycle_push.txt" - all push maps
  87. // "mapcycle_singlelife.txt" - strike & ambush single life modes
  88. // "mapcycle_skirmish.txt" - all skirmish maps
  89. // "mapcycle_strike.txt" - all strike maps
  90. // "mapcycle_survival.txt" - all survival maps
  91. // "mapcycle_sustained_combat.txt"
  92. // "mapcycle_tactical_operations.txt"
  93. // "mapcycle_workshop.txt" - used by Workshop system
  94.  
  95. //mapcyclefile "mapcycle.txt"
  96.  
  97. // ................................ Ban List ............................... //
  98.  
  99. // sv_nwi_banlist is the official banlist.
  100. sv_nwi_banlist 1
  101.  
  102. // personal banlist based on user IDs.
  103. exec banned_user.cfg
  104.  
  105. // personal banlist based on user IPs.
  106. exec banned_ip.cfg
  107.  
  108. writeid
  109. writeip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement