HELP: I want to make it a "hold" not a "toggle"

D€vIL²

Newbie
Joined
Nov 18, 2004
Messages
899
Reaction score
0
how would I go about changing a command into a hold button

i want to do

bind "mouse 2" "host_timescale .5;phys_pushscale 10;sv_gravity 400"

but have it so when I release mb2 it goes back
 
When you have something that has a number value after it, then I don't think you can.

To make things hold, you usual just add + before it. For example "+speed". But I've tried it with host_timescare .5 and whatnot, but it dosent work.
 
you got to be able to or else how would you make for example that eraser mod, in that it had you hold the bulletime button, im pretty sure that was just made with a cfg file
 
if you can't make it a hold then is there was way to toggle somthing on and then toggle somthing off with the same button?
 
alias +slow "host_timescale .5;phys_pushscale 10;sv_gravity 400"
alias -slow "host_timescale 1;phys_pushscale 'whatever default is';sv_gravity 800"
bind mouse2 +slow
 
thanks

Psychx said:
alias +slow "host_timescale .5;phys_pushscale 10;sv_gravity 400"
alias -slow "host_timescale 1;phys_pushscale 'whatever default is';sv_gravity 800"
bind mouse2 +slow

and I would just copy that and that would be it

ok thanks
 
Back
Top