Walking?

  • Thread starter Thread starter Regnad
  • Start date Start date
R

Regnad

Guest
CS:S doesn't appear to have a run/walk toggle. Will HL2? Half-life needed a modified config, didn't it?

Thanks for any info...
 
If you want a run/walk toggle it can be easily scripted in using alias'. Can't remember it all of the top of my head, but its quite easy to do.
 
switch said:
If you want a run/walk toggle it can be easily scripted in using alias'. Can't remember it all of the top of my head, but its quite easy to do.

It is "+speed".
 
sKuNx said:
It is "+speed".
that is the command for walking yes, but that wont toggle it on and off, it will just make you walk when pressing it and run when releasing.

The alias will be something like
alias "walktoggle" "walk"
alias "walk" "+speed; alias walktoggle run"
alias "run" "-speed; alias walktoggle walk"
bind "key" "walktoggle"
however I dont know whether it will work as I dont have CS:S yet.
 
Yeah, it's easy. You could do it in three lines. Isn't -speed running (since you default to always run in CS)? Well, it doesn't actually matter since it toggles back and forth.

alias run "-speed; bind ??? walk"
alias walk "+speed; bind ??? run"
bind ??? run

Just put something like that in the autoexec.cfg and replace ??? with whatever key you like.
 
Thanks all! switch, you jogged my memory...

Putting this in "autoexec.cfg" works.

alias walkon "+speed;bind e walkoff"
alias walkoff "-speed;bind e walkon"
bind "e" "walkon"
 
Back
Top