Advertisement
OS_scripts

Cheat Engine Value Type

Feb 4th, 2025
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. // Cheat Engine Value Type \\
  2.  
  3. =-=-=-=--=-=-=-=-=-=-=-=--=-=
  4.  
  5. Type: "Byte Integer" // 8-bits
  6. Size Name: "Byte"
  7. Register: "db"
  8. Example: "db (int)10" // 0 to 255 or -128 to +127
  9.  
  10. =-=-=-=--=-=-=-=-=-=-=-=--=-=
  11.  
  12. Type: "2-Byte Integer" // 16-bits
  13. Size Name: "Word"
  14. Register: "dw"
  15. Example: "dw (int)1000" // 0 to 65535 or -32768 to +32767
  16.  
  17. =-=-=-=--=-=-=-=-=-=-=-=--=-=
  18.  
  19. Type: "4-Byte Integer" // 32-bits
  20. Size Name: "Dword"
  21. Register: "dd"
  22. Example: "dd (int)1000000000" // 0 to 4294,967295 or -2147483648 to +2147483647
  23.  
  24. =-=-=-=--=-=-=-=-=-=-=-=--=-=
  25.  
  26. Type: "8-Byte Integer" // 64-bits
  27. Size Name: "Qword"
  28. Register: "dq"
  29. Example: "dq (int)1000000000000" // 0 to 18446744073709551615 or -9223372036854775808 to +9223372036854775807
  30.  
  31. =-=-=-=--=-=-=-=-=-=-=-=--=-=
  32.  
  33. Type: "4-Byte Floating Point"
  34. Size Name: "Dword"
  35. Register: "dd"
  36. Example: "dd (float)100.5" // Approximately -3.4028235 × 10^38 to 3.4028235 × 10^38
  37.  
  38. =-=-=-=--=-=-=-=-=-=-=-=--=-=
  39.  
  40. Type: "8-Byte Floating Point"
  41. Size Name: "Byte"
  42. Register: "dq"
  43. Example: "dq (double)100.18483695" // Approximately -1.7976931348623157 × 10^308 to 1.7976931348623157 × 10^308
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement