Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Regular Commands
- find
- cl_showfps //1-5
- fps_max
- bind "key" ent_fire smokegrenade_projectile kill //Bind a key
- bind "key" sv_rethrow_last_grenade //Bind a key
- sv_regeneration_force_on 1
- bind "key" voice_modenable_toggle //Bind a key
- // Shortcuts for console commands
- alias "dc" "disconnect"
- alias "rs" "mp_restartgame 1"
- alias "warmup" "mp_warmup_start"
- alias "live" "mp_warmup_end"
- alias "asd" "sv_cheats 1; echo cheats turned on"
- alias "mpteam" "mp_autoteambalance 0; mp_limitteams 0"
- alias "badd" "bot_add"
- alias "baddct" "bot_add_ct"
- alias "baddt" "bot_add_t"
- alias "b1" "bot_quota 2"
- alias "b2" "bot_quota 3"
- alias "b3" "bot_quota 4"
- alias "bkick" "bot_kick"
- alias "bstop" "bot_stop 1"
- alias "bplay" "bot_stop 0"
- alias "bplace" "bot_place"
- alias "bcrouch" "bot_crouch 1"
- alias "bstand" "bot_crouch 0"
- alias "bmimic" "bot_mimic 1"
- alias "bignore" "bot_mimic 0"
- alias "byaw" "bot_mimic_yaw_offset 0"
- alias "byawoff" "bot_mimic_yaw_offset 180"
- // Sell All
- alias "sellall" "sellback 2;sellback 3;sellback 4;sellback 5;sellback 6;sellback 7;sellback 8;sellback 9;sellback 10;sellback 11;sellback 12;sellback 13;sellback 14;sellback 15;sellback 16;sellback 17;sellback 18;sellback 19;sellback 20;sellback 21;sellback 22;sellback 23;sellback 24;sellback 25;sellback 26;sellback 27;sellback 28;sellback 29;sellback 30;sellback 31;sellback 32;sellback 33;sellback 34;sellback 35;play ui\panorama\itemtile_click_02.vsnd_c"
- bind "f4" "sellall"
- // ---------------------------------------------------------------------------------------------
- // ActionToggle Switch by MrMaxim
- // This script allows certain buttons to have a secondary action by holding down a "toggle" button.
- // Part 1 (Setup your default actions here)
- alias defC "bind c radio2"
- alias defQ "bind q lastinv"
- alias defE "bind e +use"
- alias defF "bind f +lookatweapon"
- // Part 2 (This is where the script temporarily rebinds the buttons to their secondary actions)
- alias keyC "bind c customC"
- alias keyQ "bind q customQ"
- alias keyE "bind e customE"
- alias keyF "bind f customF"
- // Part 3 (Setup your secondary actions here)
- alias customC "slot10" //Default: Molotov
- alias customQ "slot7" //Default: Flashbang
- alias customE "slot6" //Default: HE
- alias customF "slot8" //Default: Smoke
- // Part 4 (This handles the switching mechanism, allowing the buttons to alternate between their default and secondary actions)
- alias +secondaryaction "keyC; keyQ; keyE; keyF"
- alias -secondaryaction "defC; defQ; defE; defF"
- // Part 5 (Toggle Button - Holding this will trigger your secondary action)
- bind mouse4 +secondaryaction
- // ---------------------------------------------------------------------------------------------
Add Comment
Please, Sign In to add comment