Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Cheat Engine Value Type \\
- =-=-=-=--=-=-=-=-=-=-=-=--=-=
- Type: "Byte Integer" // 8-bits
- Size Name: "Byte"
- Register: "db"
- Example: "db (int)10" // 0 to 255 or -128 to +127
- =-=-=-=--=-=-=-=-=-=-=-=--=-=
- Type: "2-Byte Integer" // 16-bits
- Size Name: "Word"
- Register: "dw"
- Example: "dw (int)1000" // 0 to 65535 or -32768 to +32767
- =-=-=-=--=-=-=-=-=-=-=-=--=-=
- Type: "4-Byte Integer" // 32-bits
- Size Name: "Dword"
- Register: "dd"
- Example: "dd (int)1000000000" // 0 to 4294,967295 or -2147483648 to +2147483647
- =-=-=-=--=-=-=-=-=-=-=-=--=-=
- Type: "8-Byte Integer" // 64-bits
- Size Name: "Qword"
- Register: "dq"
- Example: "dq (int)1000000000000" // 0 to 18446744073709551615 or -9223372036854775808 to +9223372036854775807
- =-=-=-=--=-=-=-=-=-=-=-=--=-=
- Type: "4-Byte Floating Point"
- Size Name: "Dword"
- Register: "dd"
- Example: "dd (float)100.5" // Approximately -3.4028235 × 10^38 to 3.4028235 × 10^38
- =-=-=-=--=-=-=-=-=-=-=-=--=-=
- Type: "8-Byte Floating Point"
- Size Name: "Byte"
- Register: "dq"
- 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