rushjump.txt
来自「* first open client.cpp and search for t」· 文本 代码 · 共 16 行
TXT
16 行
[原创]MAX Auto Jump Code.
client.cpp
-------------------------------------------------------------------------------------------------------------
void CL_CreateMove (float frametime, struct usercmd_s *usercmd, int active)
-------------------------------------------------------------------------------------------------------------
//auto jump
if (usercmd->buttons&IN_FORWARD && me.alive && cvar.autojump)
{
if (me.pmVelocity[0]==0 && me.pmVelocity[1]==0 && me.pmVelocity[2]==0 )
{
usercmd->buttons |= IN_JUMP;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?