Advertisement
Guest User

Untitled

a guest
May 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [ENABLE]
  2. Alloc(add00,32)
  3. Alloc(add01,32)
  4. Label(goyy)
  5. Label(goxx)
  6.  
  7. addyy:
  8. mov eax,[0097C3DC] //Mouse Pointer
  9. mov eax,[eax+978] //Offset
  10. mov eax,[eax+84] //Mouse-Y Offset
  11. mov [edi],eax
  12. mov ebx,[ebp+14]
  13. jmp goyy
  14.  
  15. addxx:
  16. mov eax,[0097C3DC] //Mouse Pointer
  17. mov eax,[eax+978] //Offset
  18. mov eax,[eax+80] //Mouse-X Offset
  19. mov [ebx],eax
  20. mov edi,[ebp+10]
  21. jmp goxx
  22.  
  23. 007FA5E6: //89 07 8B 5D 14 85 DB 74 ? FF
  24. jmp add00 //CSEAX-Y
  25. goyy:
  26.  
  27. 007FA581: //89 03 8B 7D 10 85 FF 74 ? FF
  28. jmp add01 //CSEAX-X
  29. goxx:
  30.  
  31. [DISABLE]
  32. 007FA5E6: //89 07 8B 5D 14 85 DB 74 ? FF
  33. mov [edi],eax
  34. mov ebx,[ebp+14]
  35.  
  36. 007FA581: //89 03 8B 7D 10 85 FF 74 ? FF
  37. mov [ebx],eax
  38. mov edi,[ebp+10]
  39.  
  40. Dealloc(add00)
  41. Dealloc(add01)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement