Advertisement
chrondog

Untitled

Dec 28th, 2012
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. if(GetKeyState(VK_SPACE) < 0 && !FL_INCHAT)
  2.             {
  3.                 FL_ONGROUND = ONGROUND(); FL_INWATER = INWATER(); FL_ONLADDER = ONLADDER();
  4.                 if(FL_ONGROUND != -1 || FL_INWATER != 0 || FL_ONLADDER == 9)
  5.                     Continue = true;
  6.                 else Continue = false;
  7.                 if (Continue)
  8.                     PressKey(0x25);
  9.                 else Sleep(1);
  10.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement