Is it possible to make a bind that when pressed once, changes to a weapon, then when it is pressed a second time changes to a new weapon?
I.e. I use right click to switch to pistol on scout. Is it possible once I switch to my pistol using right click. That I can press right click again to go back to scattergun?
Is it possible to make a bind that when pressed once, changes to a weapon, then when it is pressed a second time changes to a new weapon?
I.e. I use right click to switch to pistol on scout. Is it possible once I switch to my pistol using right click. That I can press right click again to go back to scattergun?
Try this (should work for any class)
alias swap_primary "slot1; alias swap_weapon swap_secondary"
alias swap_secondary "slot2; alias swap_weapon swap_primary"
alias swap_weapon swap_secondary
bind mouse2 swap_weapon
Try this (should work for any class)
[code]
alias swap_primary "slot1; alias swap_weapon swap_secondary"
alias swap_secondary "slot2; alias swap_weapon swap_primary"
alias swap_weapon swap_secondary
bind mouse2 swap_weapon[/code]
WiethoofdTry this (should work for any class)alias swap_primary "slot1; alias swap_weapon swap_secondary"
alias swap_secondary "slot2; alias swap_weapon swap_primary"
alias swap_weapon swap_secondary
bind mouse2 swap_weapon
works like a charm, thank you!
[quote=Wiethoofd]Try this (should work for any class)
[code]
alias swap_primary "slot1; alias swap_weapon swap_secondary"
alias swap_secondary "slot2; alias swap_weapon swap_primary"
alias swap_weapon swap_secondary
bind mouse2 swap_weapon[/code][/quote]
works like a charm, thank you!