Advertisement
Guest User

server.cfg for MS:C example

a guest
Jul 27th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. // Essentials
  2. hostname "[PUT YOUR HOSTNAME HERE LOL]"
  3. ip "[PUT YOUR EXTERNAL IP HERE LOL]"
  4.  
  5.  
  6. // Configuration files
  7. servercfgfile "server.cfg"
  8. lservercfgfile "listenserver.cfg"
  9. bannedcfgfile "banned.cfg"
  10.  
  11. motdfile "motd.txt"
  12. mapcyclefile "mapcycle.txt"
  13.  
  14. logsdir "logs_dedicated"
  15. // log "on" // listenserver only; parameter +log "on" for dedicated server
  16.  
  17.  
  18. // Passwords
  19. rcon_password "[PUT YOUR RCON PASSWORD HERE LOL]"
  20. sv_password "[OPTIONAL - PUT YOUR SERVER PASSWORD HERE LOL]"
  21.  
  22.  
  23. // Core variables
  24. sys_ticrate 128
  25. fps_max 200
  26. developer 0
  27. // maxplayers "8" // listenserver only
  28. net_address "[PUT YOUR EXTERNAL IP HERE LOL]"
  29.  
  30. sv_region 3
  31. sv_contact ""
  32. sv_downloadurl ""
  33.  
  34. deathmatch 1
  35. decalfrequency 16
  36. hpk_maxsize 16
  37. pausable 0
  38. skill 1
  39.  
  40.  
  41. // Server variables
  42. sv_accelerate 10
  43. sv_aim 0
  44. sv_airaccelerate 10
  45. sv_allow_dlfile "1"
  46. sv_allowdownload 1
  47. sv_alltalk 1
  48. sv_allowupload 1
  49. sv_bounce 1
  50. sv_cheats 0
  51. sv_clienttrace 1
  52. sv_enableoldqueries 0
  53. sv_failuretime 0.5
  54. sv_filetransfercompression 1
  55. sv_filterban 1
  56. sv_friction 4
  57. sv_gravity 800
  58. sv_instancedbaseline 1
  59. sv_lan 0
  60. sv_lan_rate 100000
  61. sv_log_onefile 0
  62. sv_log_singleplayer 0
  63. sv_logbans 1
  64. sv_logblocks 1
  65. sv_logrelay 0
  66. sv_logsecret "0" // not (yet) sure what this does
  67. sv_maxrate 20000
  68. sv_maxspeed 600
  69. sv_maxunlag 1
  70. sv_maxupdaterate 50
  71. sv_maxvelocity 2000
  72. sv_minrate 0
  73. sv_minupdaterate 10
  74. sv_newunit 0
  75. sv_outofdatetime 1800
  76. sv_proxies 0
  77. sv_rcon_banpenalty 0
  78. sv_rcon_maxfailures 10
  79. sv_rcon_minfailures 5
  80. sv_rcon_minfailuretime 30
  81. sv_send_logos 1
  82. sv_send_resources 1
  83. sv_spectatormaxspeed 1024
  84. sv_stats 1
  85. sv_stepsize 18
  86. sv_stopspeed 100
  87. sv_timeout 60
  88. sv_unlag 1
  89. sv_unlagpush 0
  90. sv_unlagsamples 2
  91. sv_uploadmax 0.5
  92. sv_voicecodec voice_speex // might be obsolete
  93. sv_voiceenable 1
  94. sv_voicequality "5" // might be obsolete
  95. sv_wateraccelerate 10
  96. sv_wateramp 0
  97. sv_waterfriction 1
  98. sv_zmax 16000 // maximum = 16000 units
  99.  
  100.  
  101. // Multi-player variables
  102. mp_consistency 1
  103. mp_decals 8192 // tied to "-num_edicts", but can't exceed 4096
  104. mp_falldamage 0
  105. mp_footsteps 1
  106. mp_forcerespawn 1
  107. mp_logfile 1
  108. mp_teamplay 0
  109.  
  110.  
  111. // MasterSword: Continued variables
  112. ms_serverchar 3
  113. ms_chatlog 1
  114. ms_central_enabled 0
  115. ms_central_addr "[PUT YOUR CENTRAL SERVER ADDRESS HERE LOL]"
  116. ms_central_pass "[PUT YOUR CENTRAL SERVER PASSWORD HERE LOL]"
  117. ms_dev_mode "0"
  118. ms_developer "0"
  119. ms_hp_limit "0"
  120. ms_ban_to_cfg 0
  121. ms_joinreset 1
  122. ms_reset_if_empty 1
  123. ms_timelimit 10
  124. msvote_kick_enable 0
  125. ms_allowkickvote 0
  126. msvote_ban_enable 0
  127. msvote_ban_time 60
  128. ms_allowtimevote 0
  129. ms_pklevel 0
  130. msvote_pvp_enable 0
  131. msvote_map_enable 1
  132. msvote_farm_all_day 1
  133. msvote_map_type "all"
  134. ms_admin_contact "[none given]"
  135.  
  136.  
  137. // **********************
  138. // Execute Configurations
  139. // **********************
  140.  
  141. // Load ban lists
  142. exec "banned.cfg" // Ensure this matches your "bannedcfgfile" value.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement