Upvote Upvoted 1 Downvote Downvoted
Loadout Switcherq
posted in Customization
1
#1
0 Frags +

Hey is there a script out there that allows me to bind a button to specific loadout. So if I press F7 I switch to loadout B, F8 for loadout C etc..?

Hey is there a script out there that allows me to bind a button to specific loadout. So if I press F7 I switch to loadout B, F8 for loadout C etc..?
2
#2
5 Frags +

//Loadout switcher
alias +loadoutA load_itempreset 0
alias +loadoutB load_itempreset 1
alias +loadoutC load_itempreset 2
alias +loadoutD load_itempreset 3
alias -loadoutA slot2
alias -loadoutB slot2
alias -loadoutC slot2
alias -loadoutD slot2
bind "F1" "+loadoutA"
bind "F2" "+loadoutB"
bind "F3" "+loadoutC"
bind "F4" "+loadoutD"

//Loadout switcher
alias +loadoutA load_itempreset 0
alias +loadoutB load_itempreset 1
alias +loadoutC load_itempreset 2
alias +loadoutD load_itempreset 3
alias -loadoutA slot2
alias -loadoutB slot2
alias -loadoutC slot2
alias -loadoutD slot2
bind "F1" "+loadoutA"
bind "F2" "+loadoutB"
bind "F3" "+loadoutC"
bind "F4" "+loadoutD"
3
#3
1 Frags +
Aegis//Loadout switcher
alias +loadoutA load_itempreset 0
alias +loadoutB load_itempreset 1
alias +loadoutC load_itempreset 2
alias +loadoutD load_itempreset 3
alias -loadoutA slot2
alias -loadoutB slot2
alias -loadoutC slot2
alias -loadoutD slot2
bind "F1" "+loadoutA"
bind "F2" "+loadoutB"
bind "F3" "+loadoutC"
bind "F4" "+loadoutD"

YES ur the man dude :)

[quote=Aegis]//Loadout switcher
alias +loadoutA load_itempreset 0
alias +loadoutB load_itempreset 1
alias +loadoutC load_itempreset 2
alias +loadoutD load_itempreset 3
alias -loadoutA slot2
alias -loadoutB slot2
alias -loadoutC slot2
alias -loadoutD slot2
bind "F1" "+loadoutA"
bind "F2" "+loadoutB"
bind "F3" "+loadoutC"
bind "F4" "+loadoutD"[/quote]
YES ur the man dude :)
4
#4
0 Frags +

what is the purpose of slot2 in that script?

what is the purpose of slot2 in that script?
5
#5
0 Frags +

Another version I use. That one(Aegis) is made for medics.

alias "loadoutA" "load_itempreset 0"
alias "loadoutB" "load_itempreset 1"
alias "loadoutC " "load_itempreset 2"'
alias "loadoutD" "load_itempreset 3"
bind "F1" "loadoutA"
bind "F2" "loadoutB"
bind "F3" "loadoutC"
bind "F4" "loadoutD"

Also Hooli its for medic slot2 is for medigun.

Another version I use. That one(Aegis) is made for medics.

alias "loadoutA" "load_itempreset 0"
alias "loadoutB" "load_itempreset 1"
alias "loadoutC " "load_itempreset 2"'
alias "loadoutD" "load_itempreset 3"
bind "F1" "loadoutA"
bind "F2" "loadoutB"
bind "F3" "loadoutC"
bind "F4" "loadoutD"

Also Hooli its for medic slot2 is for medigun.
6
#6
3 Frags +

Or you can just set the keys in the in-game options menu.

Or you can just set the keys in the in-game options menu.
7
#7
1 Frags +
ThufirOr you can just set the keys in the in-game options menu.

Exactly this. Don't overcomplicate it.

[quote=Thufir]Or you can just set the keys in the in-game options menu.[/quote]
Exactly this. Don't overcomplicate it.
8
#8
1 Frags +

the script literally does the same exact shit as that though, it's not even close to a complicated script regardless. I agree the aliases seem a bit unnecessary as it's one command.

the script literally does the same exact shit as that though, it's not even close to a complicated script regardless. I agree the aliases seem a bit unnecessary as it's one command.
Please sign in through STEAM to post a comment.