Advertisement
Guest User

Untitled

a guest
Aug 16th, 2015
736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. sv_cheats 1 // cheats need to be enabled for some of the commands to work
  2.  
  3. bot_kick
  4. sv_infinite_ammo 2 // Gives you infinite ammo. No need to reload.
  5. sv_showimpacts 1
  6. mp_buytime 99999
  7. mp_buy_anywhere 1
  8. mp_startmoney "16000"
  9. mp_t_default_primary weapon_ak47 // Automatically gives you an AK47 after the cfg is executed
  10. mp_t_default_secondary weapon_deagle // Automatically gives you a Deagle after the cfg is executed
  11. mp_ct_default_primary weapon_m4a1
  12. mp_ct_default_secondary weapon_deagle
  13. sv_grenade_trajectory 1
  14.  
  15. ammo_grenade_limit_default 1 // These 4 commands will give you one grenade of each grenade type,
  16. ammo_grenade_limit_flashbang 1 // but because sv_infinite_ammo 1 is set, you'll actually have unlimited
  17. ammo_grenade_limit_total 10 // grenades, in case you want to use them.
  18. mp_t_default_grenades "weapon_hegrenade weapon_smokegrenade weapon_flashbang weapon_flashbang weapon_molotov weapon_decoy"
  19. mp_ct_default_grenades "weapon_hegrenade weapon_smokegrenade weapon_flashbang weapon_flashbang weapon_molotov weapon_decoy"
  20.  
  21. mp_autoteambalance 0 // Disables autoteambalance, so bots aren't switched to your team
  22. mp_limitteams 0 // Disables limit players per team, so 10 bots on the other team are possible
  23. mp_do_warmup_offine 0 // Deactivates warmup period in your Offline with Bots match
  24. mp_do_warmup_period 0 // Deactivates warmup period at the beginning of the match
  25. mp_respawn_on_death_ct 1 // CT's (Bots) will respawn after dying
  26. mp_respawn_on_death_t 1 // T's (You) will respawn after dying
  27. mp_roundtime_defuse 60 // 1 hour roundtime on defusal maps
  28. mp_roundtime_hostage 60 // 1 hour roundtime on hostage maps
  29. mp_roundtime 60 // 1 hour roundtime on other maps
  30. mp_freezetime 0 // Disables freezetime at beginning of round
  31. mp_respawn_immunitytime 0 // Makes Bots attackable right after respawning
  32. mp_give_player_c4 0 // Will disable bombs being given to T's
  33. mp_friendlyfire "0"
  34. mp_warmuptime 0
  35. mp_free_armor 1
  36.  
  37. mp_restartgame 3 // Restarts the match 3 seconds after the cfg was executed
  38.  
  39. say "Practice Script executed."
  40.  
  41. // Bot Controls \\
  42. bindtoggle "RCTRL" "bot_stop" //toggle bot movement (stops them)
  43. bind "UPARROW" "bot_place" //place a bot in front of you
  44. bind "LEFTARROW" "bot_add_ct" //add a CT bot
  45. bind "RIGHTARROW" "bot_add_t" //add a T bot
  46. bind "DOWNARROW" "bot_kick" //kick all bots
  47.  
  48. alias "ctbomb" "sv_cheats 1;game_type 2;give weapon_c4;game_type 0;slot5"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement