Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. //*** NOTE ***
  2. //In CSGO most cvars and settings are no longer all in server.cfg
  3. //here are only some settings that you see below
  4. //To change other round and map specific settings do it gamemode cfg for the mode that you use in csgo/cfg/
  5. //for casual use gamemode_casual.cfg
  6. //for competitive use gamemode_competitive.cfg
  7. //for armsrace use gamemode_armsrace.cfg
  8. //for demolition use gamemode_demolition.cfg
  9. //Mapgroups are defined in csgo/gamemodes_server.txt
  10.  
  11. hostname "test"
  12.  
  13.  
  14. sv_password "" //Only set this if you intend to have a private server!
  15.  
  16. //sv_downloadurl ""
  17.  
  18. //host_workshop_collection 193639313
  19. //workshop_start_map 125488374
  20.  
  21. log off //This is set to turn on logging!
  22.  
  23. sm_cvar bot_join_delay "15"
  24.  
  25. mp_join_grace_time 30 //The amount of time players can join teams after a round has started
  26. mp_match_end_restart 0 // Defines whether a map should be restarted after a game has ended
  27. sv_cheats 0 //This should always be set, so you know it's not on
  28. sv_lan 0 //This should always be set, so you know it's not on
  29.  
  30. //**The following commands manage kicks and bans
  31. writeid
  32. writeip
  33.  
  34. exec banned_user.cfg
  35. exec banned_ip.cfg
  36.  
  37. // Podesavanja za TK su u gamemode_competitive_server.cfg
  38.  
  39. // Podesavanja za slotove su u sourcemod/sourcemod.cfg
  40.  
  41. //sv_visiblemaxplayers 32 // ima podesavanje i u gamemode_competitive_server.cfg
  42. //sm_reserve_type 1 // u sourcemod/sourcemod.cfg
  43. //sm_reserved_slots 6 // u sourcemod/sourcemod.cfg
  44. //sm_hide_slots 0 // u sourcemod/sourcemod.cfg
  45. //sm_reserve_kicktype 0
  46. //sm_reserve_maxadmins 20
  47.  
  48.  
  49.  
  50.  
  51.  
  52. sm_team_join_control_admin_immunity 1
  53.  
  54. mp_autoteambalance 0
  55. sm_teambalance 1
  56. sm_balance_log_level 1
  57. //sm_balanceDamping 2
  58. sm_adminProtection 0
  59. sm_balance_min_players 3
  60. //sm_balance_mode 1
  61.  
  62. sv_hibernate_when_empty 0
  63. sm_blockcommand mp_warmup_start
  64.  
  65. sm_blockcommand mp_warmup_end
  66. mp_endmatch_votenextmap 0
  67. mp_limitteams 2
  68. mp_timelimit 20 // ima podesavanje i u gamemode_competitive_server.cfg
  69.  
  70. // bandwidth rates/settings
  71. sv_minrate 80000
  72. sv_maxrate 128000
  73. sv_minupdaterate 64
  74. sv_maxupdaterate 128
  75. sv_mincmdrate 64
  76. sv_maxcmdrate 128
  77. sv_client_predict 1
  78. sv_client_min_interp_ratio 1
  79. sv_client_max_interp_ratio 1
  80. sv_competitive_minspec 1
  81. sv_client_cmdrate_difference 1
  82.  
  83.  
  84. sv_tags "no-steam"
  85. sv_region 3
  86.  
  87. sv_alltalk 0
  88. sm_deadtalk -2
  89.  
  90. //log on
  91. //sv_logbans 1
  92. //sv_logecho 1
  93. //logaddress_delall
  94. //logaddress_add rebellion-css.rs:2083
  95. //logaddress_add rebellion-css.rs:27500
  96. //logaddress_add rebellion-css.rs:2077
  97.  
  98. host_name_store 1
  99. host_info_show 2
  100. host_players_show 2
  101. sv_max_queries_sec 6
  102. sv_max_queries_sec_global 300
  103.  
  104. mp_backup_round_file ""
  105. mp_backup_round_file_last ""
  106. mp_backup_round_file_pattern ""
  107. mp_backup_round_auto 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement