So I've been using a config from the dark ages, that has a bind in it that makes it so that my q key only switches between my primary and secondary. Well now I'm looking into updating my config since I'm pretty sure half the stuff in it is no longer even relevant +reload etc, and I can't find how to bring that over.
I tried recreating the script with a simple script along the lines of
alias swap "slot1;alias swap swap2"
alias swap2 "slot2;alias swap2 swap"
bind q swap
The problem that has is that after switching to my shotgun, it crashes my game.
So if anyone could tell me how to effectively make it so q only swaps between my primary and secondary instead of last used, I'd appreciate it.
So I've been using a config from the dark ages, that has a bind in it that makes it so that my q key only switches between my primary and secondary. Well now I'm looking into updating my config since I'm pretty sure half the stuff in it is no longer even relevant +reload etc, and I can't find how to bring that over.
I tried recreating the script with a simple script along the lines of
alias swap "slot1;alias swap swap2"
alias swap2 "slot2;alias swap2 swap"
bind q swap
The problem that has is that after switching to my shotgun, it crashes my game.
So if anyone could tell me how to effectively make it so q only swaps between my primary and secondary instead of last used, I'd appreciate it.
alias "swap" "swap1"
alias "swap1" "slot1; alias swap swap2"
alias "swap2" "slot2; alias swap swap1"
bind "q" "swap"
this should make it so it only swaps between primary/secondary
alias "swap" "swap1"
alias "swap1" "slot1; alias swap swap2"
alias "swap2" "slot2; alias swap swap1"
bind "q" "swap"
this should make it so it only swaps between primary/secondary
Bind q "slot2;slot1"
Simple as that
Edit: it does work. Nfi why the -frag
Bind q "slot2;slot1"
Simple as that
Edit: it does work. Nfi why the -frag
Yeah that works fish. Thank you very much.
Yeah that works fish. Thank you very much.
nvm whatever ^^ said will work
nvm whatever ^^ said will work
Moral_VindicationBind q "slot2;slot1"
Simple as that
Edit: it does work. Nfi why the -frag
Actually this would work better because it goes back to my primary after my melee has been out regardless, but for some reason it doesn't work with my crosshair switcher like the other one does. Any idea why?
[quote=Moral_Vindication]Bind q "slot2;slot1"
Simple as that
Edit: it does work. Nfi why the -frag[/quote]
Actually this would work better because it goes back to my primary after my melee has been out regardless, but for some reason it doesn't work with my crosshair switcher like the other one does. Any idea why?
bind q "weapon1; weapon2"
replace weapon1 and weapon2 with whatever your crosshair switcher's alias for slot1/slot 2 and it should work
bind q "weapon1; weapon2"
replace weapon1 and weapon2 with whatever your crosshair switcher's alias for slot1/slot 2 and it should work
fishbind q "weapon1; weapon2"
replace weapon1 and weapon2 with whatever your crosshair switcher's alias for slot1/slot 2 and it should work
Yeah I did that, and for some reason it doesn't. it's just mate_slot1 and mate_slot2
[quote=fish]bind q "weapon1; weapon2"
replace weapon1 and weapon2 with whatever your crosshair switcher's alias for slot1/slot 2 and it should work[/quote]
Yeah I did that, and for some reason it doesn't. it's just mate_slot1 and mate_slot2
idk why it wouldn't work with a crosshair switcher
idk why it wouldn't work with a crosshair switcher
If you want to do something like that try this.
bind q "+weap"
alias +weap slot2
alias -weap slot1
Pressing the key down does secondary and lifting the key does primary.
If you want to do something like that try this.
[quote]
bind q "+weap"
alias +weap slot2
alias -weap slot1[/quote]
Pressing the key down does secondary and lifting the key does primary.
I wound up taking the first script and adding something to my melee bind so that it set it to go back to primary. Thanks for all the help everyone.
I wound up taking the first script and adding something to my melee bind so that it set it to go back to primary. Thanks for all the help everyone.