Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. VOID Playerhacks(VOID)
  2. {
  3. DWORD Player = *(DWORD*)ADR_PLAYERPOINTER;
  4.  
  5. if(Player != 0) {
  6.  
  7. Funktionen....
  8.  
  9. }
  10.  
  11. VOID Serverhacks(VOID)
  12. {
  13. DWORD Server = *(DWORD*)ADR_SERVERPOINTER;
  14.  
  15. if(Server != 0) {
  16.  
  17. Funktionen..
  18. }
  19.  
  20. void MenuThread(VOID)
  21. {
  22. while(true)
  23. {
  24. Playerhacks();
  25. Serverhacks();
  26. Sleep(50);
  27. }
  28. }
  29.  
  30. CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)MenuThread, NULL, NULL, NULL);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement