Black Mesa

Black Mesa

Not enough ratings
Long Jump Script
By shurbrrt
A script for long jumping so you don't have to double tap space bar which, for me, is a bit annoying to do after a while.
Also a script to swap space bar between jumping and long jumping, and a script to use the original crouch + jump to long jump
   
Award
Favorite
Favorited
Unfavorite
(REQUIRED) Long Jump Script
// replace LONG JUMP KEY with a key you would like to use to long jump
// Don't do what the above says if you wish to use the optional methods and not have a key to long jump
bind "LONG JUMP KEY" "jump"
alias "jump" "+jump; wait 2; -jump; wait 2; +jump; wait 2; -jump"
(OPTIONAL) Original Long Jump
// replace DUCK KEY with your key used to duck
// replace JUMP KEY with your key used to jump
bind "DUCK KEY" "+crouch"
alias "+crouch" "+duck; bind JUMP KEY jump"
alias "-crouch" "-duck; bind JUMP KEY +jump"
(OPTIONAL) Swap Jump Key
// replace SWAP KEY with the key you would like to use to swap your jump key with the long jump
// replace LONG JUMP KEY with the key you would like to use to jump/long jump
bind "SWAP KEY" "ljon"
alias "ljon" "bind LONG JUMP KEY jump; bind SWAP KEY ljoff"
alias "ljoff" "bind LONG JUMP KEY +jump; bind SWAP KEY ljon"