Advertisement
Guest User

Untitled

a guest
Nov 26th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. //========COMPROBACIONES=================//
  2. //=========================================
  3. // Comprobamos la version del Cheat Engine
  4. {$lua}
  5. if(getCEVersion() < 7.0) then
  6. ShowMessage('AVISO!. Tu version de Cheat Engine esta obsoleta. XorEaxMrGamer')
  7. end
  8. {$asm}
  9.  
  10. //=========================================
  11. // Comprobamos que se a seleccionado el proceso correcto
  12. {$lua}
  13. if(process == nil) then
  14. ShowMessage('No has seleccionado ningun proceso!')
  15. elseif (string.upper(process) ~= string.upper("starwarsjedifallenorder.exe")) then
  16. ShowMessage('AVISO. El proceso correcto es: = starwarsjedifallenorder.exe')
  17. end
  18. {$asm}
  19.  
  20. //=========================================
  21. {$lua}
  22. -- monoAA_USEMONO(process,false)
  23. if waitForPDB then --de esta manera, las versiones anteriores de CE no se ven afectadas (By Dark Byte)
  24. waitForPDB()
  25. end
  26. {$asm}
  27.  
  28. //=========================================
  29. //========FIN DE COMPROBACIONES============//
  30.  
  31. [ENABLE]
  32. //=========================================
  33. //=======SI NO EXISTE NO SE EJECUTA========
  34. //=========================================
  35. define(comprobacion,48 8B 88 90 01 00 00 48 8B)
  36. assert($process+EDE73B6,comprobacion)
  37. //=========================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement