Counter-Strike 2

Counter-Strike 2

34 ratings
Crouch jump bind for KZ(longjumps)
By who?
Here is a set of commands you can use in an exec / autoexec in order to crouch jump perfectly and consistently using a bind. This is useful for KZ, and even in comp, when jumping on taller objects.


   
Award
Favorite
Favorited
Unfavorite
duckjump
alias +duckjump "+jump; +duck";
alias -duckjump "-jump; -duck";
bind "SPACE" "+duckjump"

add theese commands on your autoexec cfg and add " +exec autoexec " to CSGO launch options
8 Comments
HavacKas Jun 6, 2022 @ 3:56pm 
con eso ya esta
manga de malos
HavacKas Jun 6, 2022 @ 3:56pm 
SendMode, Input
SetBatchLines -1
CoordMode, Mouse, Screen

mouseXY(x, y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}

strafe(left)
{
moveCount := 25
sleepInterval := 2
relativeMove := 28

if (left)
{
key := "d"
move := relativeMove
} else
{
key := "a"
move := -relativeMove
}
send {%key% down}
DllCall("Sleep", "UInt", 5)
Loop, %moveCount%
{
mouseXY(move, -(move/4))
DllCall("Sleep", "UInt", sleepInterval)
}
send {%key% up}
}

$xbutton1::
while getkeystate("xbutton1","P")
{
strafe(true)
strafe(false)
}
return
antk Mar 16, 2021 @ 2:59am 
Can you bind it on mwheel?
EmKay Oct 1, 2020 @ 10:33pm 
alias +duckjump "+jump; +duck";
alias -duckjump "-jump; -duck";
bind "c" "+duckjump"
Rell Mar 24, 2020 @ 3:09pm 
thanks man im using this everydays
PAblo Mar 16, 2020 @ 1:37pm 
tbh ive used this for over a year
tytyy for this
sayamasnur95 Jun 15, 2019 @ 1:25am 
Thx
who?  [author] Mar 15, 2019 @ 4:18am 
you have to put it in autoexec cfg to avoid binding it every game launch:steamfacepalm: