Advertisement
Guest User

CS:GO Practice Mode CFG

a guest
Oct 18th, 2019
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. //This is a config for setting up server variables for practice purposes
  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 ### Enabling Practice Mode settings... ###
  8. echo
  9.  
  10.  
  11. //Allow commands that are considered cheating
  12. sv_cheats 1
  13.  
  14.  
  15. //Allow unlimited difference in team members between T and CT
  16. mp_limitteams 0
  17.  
  18.  
  19. //Disable autoteambalance to avoid automatic moving of players between unbalanced teams
  20. mp_autoteambalance 0
  21.  
  22.  
  23. //Set roundtime (minutes)
  24. mp_roundtime 60
  25.  
  26.  
  27. //Set roundtime for plant/defuse maps (minutes)
  28. mp_roundtime_defuse 60
  29.  
  30.  
  31. //Set roundtime for hostage maps (minutes)
  32. mp_roundtime_hostage 60
  33.  
  34.  
  35. //Set CTs to respawn on death
  36. mp_respawn_on_death_ct 1
  37.  
  38.  
  39. //Set Ts to respawn on death
  40. mp_respawn_on_death_t 1
  41.  
  42.  
  43. //Set voice chat to allow alive players talking to enemy team
  44. sv_talk_enemy_living 1
  45.  
  46.  
  47. //Set voice chat to allow dead players talking to enemy team
  48. sv_talk_enemy_dead 1
  49.  
  50.  
  51. //Set maximum amount of money
  52. mp_maxmoney 60000
  53.  
  54.  
  55. //Set startmoney
  56. mp_startmoney 60000
  57.  
  58.  
  59. //Set freezetime (seconds)
  60. mp_freezetime 0
  61.  
  62.  
  63. //Set (almost) unlimited buytime (seconds)
  64. mp_buytime 9999
  65.  
  66.  
  67. //Enable full map buyzone so you can buy anywhere
  68. mp_buy_anywhere 1
  69.  
  70.  
  71. //Enable infinite ammo
  72. sv_infinite_ammo 2
  73.  
  74.  
  75. //Set max amount of carried grenades
  76. ammo_grenade_limit_total 6
  77.  
  78.  
  79. //Enable grenade trajectory lines
  80. sv_grenade_trajectory 1
  81.  
  82.  
  83. //Set grenade trajectory line visible time (seconds)
  84. sv_grenade_trajectory_time 10
  85.  
  86.  
  87. //Enable impact boxes showing where bullets hit (both client-side and server-side)
  88. sv_showimpacts 1
  89.  
  90.  
  91. //Enable 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. //Enable zombie bots, forcing them to stand still and do nothing
  100. bot_zombie 1
  101.  
  102.  
  103. //Kick all bots, end warmup and restart game with new settings
  104. bot_kick
  105. mp_warmup_end
  106. mp_restartgame 1
  107.  
  108.  
  109. //Enable God-mode so you won't take damage (this is a toggle command, type god in console to toggle on/off)
  110. god
  111.  
  112.  
  113. //Useful binds
  114.  
  115. //Bind to toggle damage information from impact boxes
  116. bind "i" "toggle sv_showimpacts_penetration 1 0"
  117.  
  118.  
  119. //Bind noclip so you are invincible and can move freely (toggles)
  120. bind "n" "noclip"
  121.  
  122.  
  123. //Bind visible ray that shows where you aim (useful to show others what you are looking at, etc)
  124. bind "." "cast_ray"
  125.  
  126.  
  127. //Bind to place bots where you want them
  128. bind "l" "bot_place"
  129.  
  130.  
  131. echo
  132. echo ### Practice Mode settings enabled successfully! ###
  133. echo
  134. echo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement