Advertisement
Guest User

CS:GO Practice Mode CFG deactivate

a guest
Oct 18th, 2019
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. //This is a config for resetting server variables back to normal
  2. //You may use it, edit it or share it however you want with whoever you want
  3. //Originally written by Adrian Wiik
  4.  
  5. echo
  6. echo
  7. echo ### Disabling Practice Mode settings... ###
  8. echo
  9.  
  10.  
  11. //Restrict commands that are considered cheating
  12. sv_cheats 0
  13.  
  14.  
  15. //Set limit for difference in team members between T and CT
  16. mp_limitteams 2
  17.  
  18.  
  19. //Enable autoteambalance to automatically move players between unbalanced teams
  20. mp_autoteambalance 1
  21.  
  22.  
  23. //Set roundtime (minutes)
  24. mp_roundtime 1.92
  25.  
  26.  
  27. //Set roundtime for plant/defuse maps (minutes)
  28. mp_roundtime_defuse 1.92
  29.  
  30.  
  31. //Set roundtime for hostage maps (minutes)
  32. mp_roundtime_hostage 1.92
  33.  
  34.  
  35. //Set CTs to respawn on death
  36. mp_respawn_on_death_ct 0
  37.  
  38.  
  39. //Set Ts to respawn on death
  40. mp_respawn_on_death_t 0
  41.  
  42.  
  43. //Set voice chat to allow alive players talking to enemy team
  44. sv_talk_enemy_living 0
  45.  
  46.  
  47. //Set voice chat to allow dead players talking to enemy team
  48. sv_talk_enemy_dead 0
  49.  
  50.  
  51. //Set maximum amount of money
  52. mp_maxmoney 16000
  53.  
  54.  
  55. //Set startmoney
  56. mp_startmoney 800
  57.  
  58.  
  59. //Set freezetime (seconds)
  60. mp_freezetime 15
  61.  
  62.  
  63. //Set buytime (seconds)
  64. mp_buytime 20
  65.  
  66.  
  67. //Disable full map buyzone so you can buy in the buyzones only
  68. mp_buy_anywhere 0
  69.  
  70.  
  71. //Disable infinite ammo
  72. sv_infinite_ammo 0
  73.  
  74.  
  75. //Set max amount of carried grenades
  76. ammo_grenade_limit_total 4
  77.  
  78.  
  79. //Disable grenade trajectory lines
  80. sv_grenade_trajectory 0
  81.  
  82.  
  83. //Set grenade trajectory line visible time (seconds)
  84. sv_grenade_trajectory_time 10
  85.  
  86.  
  87. //Disable impact boxes showing where bullets hit (both client-side and server-side)
  88. sv_showimpacts 0
  89.  
  90.  
  91. //Disable showing distance and damage done on each hit
  92. sv_showimpacts_penetration "0"
  93.  
  94.  
  95. //Set impact box visible time (seconds)
  96. sv_showimpacts_time 10
  97.  
  98.  
  99. //Disable zombie bots, letting them move freely and do stuff
  100. bot_zombie 0
  101.  
  102.  
  103. //Restart game with new settings
  104. mp_restartgame 1
  105.  
  106.  
  107. //Disable god mode so you'll take damage again
  108. god
  109.  
  110.  
  111. echo
  112. echo ### Practice Mode settings disabled successfully! ###
  113. echo
  114. echo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement