Advertisement
Guest User

asds

a guest
Jan 22nd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. DWORD a = 0x29E7028; // CUserLocal: 8B 3D ? ? ? ? 8B 40
  3. DWORD b = 0x1DF85E0; // E8 ? ? ? ? 8D ? ? ? ? ? ? ? 89 ? ? ? ? ? E8 ? ? ? ? DB [FUNCTION START] (push esi)
  4.  
  5. __declspec(naked) void GoToRight()
  6. {
  7.  
  8. __asm {
  9. mov esi, [a] // CUserLocal: 8B 3D ? ? ? ? 8B
  10. mov esi, [esi]
  11. push 0 // Y
  12. push 99999 // X
  13. push[esi + 0xA380]
  14. call dword ptr [b]
  15. ret
  16. }
  17.  
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement