
Originally Posted by
Pipotron
The fact that the speed is integer-based means that its maximum value can be 2.147.483.647, and that it will occupy 4 bytes of data in memory.Using the hex editor, in all those three addresses you will find the number d1 2f 01 00 (we need to consider 4 bytes because of it being an integer); data values (like numeric constants), however, are stored with their bytes inverted, which means that our number is actually 00 01 2f d1, which corresponds to decimal 77777.This means that we can simply change that number to the one we want; if we need 200 (or 250), our number, already inverted, will be c8 00 00 00 (or fa 00 00 00).So, what you need to do is to click on the first byte we need to edit, d1, and digit the sequence c 8 0 0 0 0 0 0 (if you want 250, it will instead be f a 0 0 0 0 0 0). I've never used Hex Editor Neo, but I assume that will be enough to overwrite the bytes.