Upvote Upvoted 1 Downvote Downvoted
Medic Config Help
posted in Q/A Help
1
#1
0 Frags +

I'm trying to make a config where if I press M2 it brings out my medigun, and if I hit M3(mouse wheel click) with no matter what weapon it switches to medigun and ubers.

This is what I have so far.

alias "+instauber" "slot2; dropitem; wait 50; +attack2"
alias "-instauber" "-attack2;"
bind "MOUSE3" "+instauber"

Wouldn't that make it switch and uber when clicking the mousewheel/m3?
I just need some help making M2 switch to medigun. While still having M1 fire and switch medigun targets.

I'm trying to make a config where if I press M2 it brings out my medigun, and if I hit M3(mouse wheel click) with no matter what weapon it switches to medigun and ubers.

This is what I have so far.


alias "+instauber" "slot2; dropitem; wait 50; +attack2"
alias "-instauber" "-attack2;"
bind "MOUSE3" "+instauber"

Wouldn't that make it switch and uber when clicking the mousewheel/m3?
I just need some help making M2 switch to medigun. While still having M1 fire and switch medigun targets.
2
#2
0 Frags +

I'm not very good with doing that kind of stuff, but look up Chris' competitive medic config, has everything you should need in there.

I'm not very good with doing that kind of stuff, but look up Chris' competitive medic config, has everything you should need in there.
3
#3
0 Frags +
FayngI'm not very good with doing that kind of stuff, but look up Chris' competitive medic config, has everything you should need in there.

I tried, I don't have a 4 button mouse, but I'll look to see some useful code. Still looking for that switch to medigun

[quote=Fayng]I'm not very good with doing that kind of stuff, but look up Chris' competitive medic config, has everything you should need in there.[/quote]
I tried, I don't have a 4 button mouse, but I'll look to see some useful code. Still looking for that switch to medigun
4
#4
0 Frags +

Wait command doesn't work on most servers but other than that, what you have there looks good.

Wait command doesn't work on most servers but other than that, what you have there looks good.
5
#5
2 Frags +
JakeTheCuberalias "+instauber" "slot2; dropitem; wait 50; +attack2"
alias "-instauber" "-attack2;"
bind "MOUSE3" "+instauber"

You can't use the "wait" command in competitive, but if you want to pub med this will work fine.

If you want to play med in competitive try using this

alias +ubercharge "slot2; +attack2; say_team ">>> U B E R E D <<<"
alias -ubercharge "-attack2"
bind mouse2 +ubercharge
JakeTheCuberI just need some help making M2 switch to medigun. While still having M1 fire and switch medigun targets.

M1 should already be bound to "+attack" but I went ahead and put that in there

bind mouse2 "slot2"
bind mouse1 "+attack"

however, for any class that you might want to use M2 for (sniper, pyro and others) you would need to put this in all the other cfg's

bind mouse2 "+attack2"
[quote=JakeTheCuber]
alias "+instauber" "slot2; dropitem; wait 50; +attack2"
alias "-instauber" "-attack2;"
bind "MOUSE3" "+instauber"
[/quote]

You can't use the "wait" command in competitive, but if you want to pub med this will work fine.

If you want to play med in competitive try using this

[code]alias +ubercharge "slot2; +attack2; say_team ">>> U B E R E D <<<"
alias -ubercharge "-attack2"
bind mouse2 +ubercharge[/code]

[quote=JakeTheCuber]
I just need some help making M2 switch to medigun. While still having M1 fire and switch medigun targets.[/quote]

M1 should already be bound to "+attack" but I went ahead and put that in there

[code]bind mouse2 "slot2"
bind mouse1 "+attack"[/code]

however, for any class that you might want to use M2 for (sniper, pyro and others) you would need to put this in all the other cfg's

[code]bind mouse2 "+attack2"
[/code]
6
#6
0 Frags +
JakeTheCuberFayngI'm not very good with doing that kind of stuff, but look up Chris' competitive medic config, has everything you should need in there.I tried, I don't have a 4 button mouse, but I'll look to see some useful code. Still looking for that switch to medigun

You can always switch the keys. Like I use r for ubersaw because i dont have a mouse four either, you can just switch around the keys in the commands in the config.

[quote=JakeTheCuber][quote=Fayng]I'm not very good with doing that kind of stuff, but look up Chris' competitive medic config, has everything you should need in there.[/quote]
I tried, I don't have a 4 button mouse, but I'll look to see some useful code. Still looking for that switch to medigun[/quote] You can always switch the keys. Like I use r for ubersaw because i dont have a mouse four either, you can just switch around the keys in the commands in the config.
7
#7
1 Frags +
MomotheMonkeyWait command doesn't work on most servers but other than that, what you have there looks good.

In fact, wouldn't this code switch to medigun and heal?

alias "+heal" "slot2;+attack;autocall_initial"
alias "-heal" "-attack"
bind "mouse2" "+heal"

[quote=MomotheMonkey]Wait command doesn't work on most servers but other than that, what you have there looks good.[/quote]

In fact, wouldn't this code switch to medigun and heal?

alias "+heal" "slot2;+attack;autocall_initial"
alias "-heal" "-attack"
bind "mouse2" "+heal"
8
#8
0 Frags +
FayngJakeTheCuberFayngI'm not very good with doing that kind of stuff, but look up Chris' competitive medic config, has everything you should need in there.I tried, I don't have a 4 button mouse, but I'll look to see some useful code. Still looking for that switch to medigun You can always switch the keys. Like I use r for ubersaw because i dont have a mouse four either, you can just switch around the keys in the commands in the config.

Thanks for that IDEA! I've changed,removed and added some code to Chris' and its working great. Couldn't be happier

[quote=Fayng][quote=JakeTheCuber][quote=Fayng]I'm not very good with doing that kind of stuff, but look up Chris' competitive medic config, has everything you should need in there.[/quote]
I tried, I don't have a 4 button mouse, but I'll look to see some useful code. Still looking for that switch to medigun[/quote] You can always switch the keys. Like I use r for ubersaw because i dont have a mouse four either, you can just switch around the keys in the commands in the config.[/quote]


Thanks for that IDEA! I've changed,removed and added some code to Chris' and its working great. Couldn't be happier
9
#9
0 Frags +
JakeTheCuberMomotheMonkeyWait command doesn't work on most servers but other than that, what you have there looks good.
In fact, wouldn't this code switch to medigun and heal?

alias "+heal" "slot2;+attack;autocall_initial"
alias "-heal" "-attack"
bind "mouse2" "+heal"

Yeah, it would.

[quote=JakeTheCuber][quote=MomotheMonkey]Wait command doesn't work on most servers but other than that, what you have there looks good.[/quote]

In fact, wouldn't this code switch to medigun and heal?

alias "+heal" "slot2;+attack;autocall_initial"
alias "-heal" "-attack"
bind "mouse2" "+heal"[/quote]
Yeah, it would.
Please sign in through STEAM to post a comment.