Upvote Upvoted 0 Downvote Downvoted
hud_fastswitch 0/2 menus with hud_fastswitch 1
posted in Q/A Help
1
#1
0 Frags +

I was wondering if there was potentially any way to access the "hud_fastswitch 0" menu ( "slow" weapon-switch menu on the right that you scroll/click to equip a different weapon slot) or "hud_fastswitch 2" menu (weapon-switch menu in the middle, for controller users) ingame, while still retaining the instant weapon swap from "hud_fastswitch 1"?

This could be anything from a bind that temporarily brings the weapon-switch menu up, to some sort of command that brings the weapon menu up when your loadout is changed/you respawn/etc. The intention is to be able to quickly see your equipped weapon without going to your loadout screen. Is anything like this even possible?

I was wondering if there was potentially any way to access the "hud_fastswitch 0" menu ( "slow" weapon-switch menu on the right that you scroll/click to equip a different weapon slot) or "hud_fastswitch 2" menu (weapon-switch menu in the middle, for controller users) ingame, while still retaining the instant weapon swap from "hud_fastswitch 1"?

This could be anything from a bind that temporarily brings the weapon-switch menu up, to some sort of command that brings the weapon menu up when your loadout is changed/you respawn/etc. The intention is to be able to quickly see your equipped weapon without going to your loadout screen. Is anything like this even possible?
2
#2
1 Frags +

nope, ive tried. you can do some funky stuff with binds like

alias +slotONE "slot1;+attack"
alias -slotONE "-attack"

bind 1 "slotONE"

unsure if itll have any repercussions though.

nope, ive tried. you can do some funky stuff with binds like

alias +slotONE "slot1;+attack"
alias -slotONE "-attack"

bind 1 "slotONE"

unsure if itll have any repercussions though.
3
#3
2 Frags +

You can get creative with a lot of things. I'm not certain I understand exactly what you're trying to accomplish here, but this may get you somewhat close...

alias +fs "hud_fastswitch 0;slot1"
alias -fs "hud_fastswitch 1;slot1"
bind "x" "+fs"

Essentially what this will do is pop up your slow weapon switch menu while you are pressing the key, but as soon as you let go of the key, it turns fastswitch back on and swaps to slot1 to dismiss the slow weapon switch menu.

You can get creative with a lot of things. I'm not certain I understand exactly what you're trying to accomplish here, but this may get you somewhat close...

alias +fs "hud_fastswitch 0;slot1"
alias -fs "hud_fastswitch 1;slot1"
bind "x" "+fs"

Essentially what this will do is pop up your slow weapon switch menu while you are pressing the key, but as soon as you let go of the key, it turns fastswitch back on and swaps to slot1 to dismiss the slow weapon switch menu.
4
#4
0 Frags +

I seem to remember you can make it pop up by binding your weapon keys to e.g. "slot0;slot1"
slot0 makes the menu come up because you're selecting an undefined weapon.

I seem to remember you can make it pop up by binding your weapon keys to e.g. "slot0;slot1"
slot0 makes the menu come up because you're selecting an undefined weapon.
5
#5
1 Frags +

slot11 seems to bring the menu up

something like:
bind "1" "slot1;slot11"
bind "2" "slot2;slot11"
etc.. works

or bind "x" "slot11"

slot11 seems to bring the menu up

something like:
bind "1" "slot1;slot11"
bind "2" "slot2;slot11"
etc.. works

or bind "x" "slot11"
6
#6
0 Frags +

Alright, thank you for the input. I'll mess with this stuff

Alright, thank you for the input. I'll mess with this stuff
7
#7
0 Frags +

I ended up making this, if anyone's interested

//Inventory Checker
hud_fastswitch 1
alias +invcheck "hud_fastswitch 2; slot11"
alias -invcheck "hud_fastswitch 1; lastinv"
bind "key" "+invcheck"

I ended up making this, if anyone's interested

//Inventory Checker
hud_fastswitch 1
alias +invcheck "hud_fastswitch 2; slot11"
alias -invcheck "hud_fastswitch 1; lastinv"
bind "key" "+invcheck"
Please sign in through STEAM to post a comment.