scripting a jump

mikey388

Newbie
Joined
Dec 25, 2004
Messages
98
Reaction score
0
Is it possible to do a script to do the high jump where you crouch and then jump if so can someone tell me how the line should be written,I cuurently use my left ctrl to crouch and right shift to jump

Thanks
Mike
 
Crouchjump you mean? Or the hl1-inspired longjump thats in a few deathmatch mods?

Crouchjump:
alias +cj "+jump; wait; +duck"
alias -cj "-jump; wait; -duck"
bind <key> +cj


Longjump:
alias +lj "+duck; wait; wait; wait; +jump"
alias -lj "-jump; wait; -duck"
bind <key> +lj
 
Back
Top