Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. [ENABLE]
  2. //code from here to '[DISABLE]' will be used to enable the cheat
  3. alloc(newmem,2048)
  4. label(returnhere)
  5. label(originalcode)
  6. label(exit)
  7.  
  8. newmem: //this is allocated memory, you have read,write,execute access
  9. //place your code here
  10.  
  11. originalcode:
  12. //.jmp CoasterTown.exe+AB672
  13.  
  14. exit:
  15. jmp returnhere
  16.  
  17. "CoasterTown.exe"+AB985:
  18. jmp newmem
  19. returnhere:
  20.  
  21.  
  22.  
  23.  
  24. [DISABLE]
  25. //code from here till the end of the code will be used to disable the cheat
  26. dealloc(newmem)
  27. "CoasterTown.exe"+AB985:
  28. jmp CoasterTown.exe+AB672
  29. //Alt: db E9 E8 FC FF FF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement