Please or Register to create posts and topics.

continous jump script?

Anoyne know the bind for continuous jumping? "bind "key" +jump; -jump" wont work for me... chheers

this will work -

Code: Select all
alias jumpon "+jump;jumpoff"
alias jumpoff "-jump;jumpon"
bind "key" "jumpon"

but you'll be stuck jumping forever... to turn it off you'll have to open the console and type:

Code: Select all
alias jumpon ""

so that you'll stop jumping
and then you'll have to re'alias the jumpon command to make it start working again. Not sure why you would want to continuously jump.. but there you go

do NOT click this

but the best script for jumping is:

Code: Select all
bind "MWHEELUP" "+jump"
bind "MWHEELDOWN" "+jump"

so enjoy this script! :)

rellikpd wrote:
this will work -

Code: Select all
alias jumpon "+jump;jumpoff"
alias jumpoff "-jump;jumpon"
bind "key" "jumpon"

but you'll be stuck jumping forever... to turn it off you'll have to open the console and type:

Code: Select all
alias jumpon ""

so that you'll stop jumping
and then you'll have to re'alias the jumpon command to make it start working again. Not sure why you would want to continuously jump.. but there you go

I don't have much experience with bindings for the Source Engine, but isn't there something like an "onrelease" command so that you can hold a button down to continuously jump and release it to stop jumping.