angeldust
-
Автор темы
- #1
HF
if (vars->get[misc_walk])
{
int meme = 1;
if (meme == 1)
Engine::Interface::m_pEngine->ClientCmd("bind w +back; bind s +forward; bind a +moveright; bind d +moveleft");
if (GetAsyncKeyState('W'))
pCmd->forwardmove = 450;
if (GetAsyncKeyState('S'))
pCmd->forwardmove = -450;
if (GetAsyncKeyState('D'))
pCmd->sidemove = 450;
if (GetAsyncKeyState('A'))
pCmd->sidemove = -450;
}
{
int meme = 1;
if (meme == 1)
Engine::Interface::m_pEngine->ClientCmd("bind w +back; bind s +forward; bind a +moveright; bind d +moveleft");
if (GetAsyncKeyState('W'))
pCmd->forwardmove = 450;
if (GetAsyncKeyState('S'))
pCmd->forwardmove = -450;
if (GetAsyncKeyState('D'))
pCmd->sidemove = 450;
if (GetAsyncKeyState('A'))
pCmd->sidemove = -450;
}