Guest User

Untitled

a guest
Apr 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. int main() {
  2. while(true)
  3. {
  4. Sleep(10);
  5. mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0 ,0);
  6. mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0 ,0);
  7. Sleep(200);
  8.  
  9. if(GetAsyncKeyState(VK_LBUTTON))
  10. {
  11. exit(0);
  12. }
  13. }
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment