Advertisement
Guest User

Untitled

a guest
May 16th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. if (SETTINGS::settings.fakewalk)
  2. {
  3. if (GetAsyncKeyState(VK_SHIFT)
  4. {
  5. static int choked = 0;
  6. choked = choked > 7 ? 0 : choked + 1;
  7. pCmd->forwardmove = choked < 2 || choked > 5 ? 0 : pCmd->forwardmove;
  8. pCmd->sidemove = choked < 2 || choked > 5 ? 0 : pCmd->sidemove;
  9. *bSendPacket = choked < 1;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement