Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. DWORD WINAPI AutoPistol(LPVOID lpParam)
  2. {
  3. while (true){
  4. if (pistolON && GetAsyncKeyState(VK_LBUTTON) & 0x8000)
  5. {
  6. Mem.Write<int>(ClientDLL + m_dwForceAttack, 5);
  7. Sleep(10);
  8. Mem.Write<int>(ClientDLL + m_dwForceAttack, 4);
  9. }
  10. Sleep(1);
  11. }
  12. }
  13.  
  14. DWORD WINAPI Bunny(LPVOID lpParam)
  15. {
  16. while (true) {
  17. PlayerFlags = Mem.Read<int>(LocalBase + m_fFlags);
  18. if (bunnyON && GetAsyncKeyState(VK_SPACE) & 0x8000)
  19. if (PlayerFlags == 257)
  20. {
  21. Mem.Write<int>(ClientDLL + m_dwForceJump, 6);
  22. }
  23. }
  24. Sleep(1);
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement