CSS - Noob binding question

Soldato
Joined
7 Feb 2004
Posts
9,511
I was wondering if there was a bind that bind selecting pistol automatically to a key or button.

Anyone else have any good binds that help you out?

Sorry if this is a noob question but ive never tried binding before.

thanks
 
Would that bind make it switch automatically

bind "Mouse4" "pistol_switch"
alias pistol_switch "hud_fastswitch 1; slot2; hud_fastswitch 0"

As i dont have hud_fastswitch on as I prefer to select the gun. But I would like a button that pulls the gun out straight away. Hope that is clear
 
Bit more primitive, but this works for me - basically group all primary and secondary weapons into an alias each like this:

alias pri "use weapon_ak47; use weapon_aug; use weapon_g3sg1; use weapon_m249; use weapon_m4a1; use weapon_m3; use weapon_mac10; use weapon_mp5navy; use weapon_p90; use weapon_scout; use weapon_sg552; use weapon_sg550; use weapon_ump45; use weapon_tmp; use weapon_xm1014; use weapon_awp"

alias sec "use weapon_deagle; use weapon_usp; use weapon_glock; use weapon_p228; use weapon_elite; use weapon_fiveseven"

Then I have mousewheel up for my primary weapon, mousewheel down for secondary:

bind "mwheelup" "pri"
bind "mwheeldown" "sec"

The knife and c4 are easier, just: bind "x" "use weapon_knife" or "use weapon_c4"

Thats quite a good idea actually. Thanks
 
Back
Top Bottom