Septerra Core - Legacy of the Creator Money Hex Cheat: ---------------- Submitted by: Egon G. Freeman In addition to my previous cheat (the Money Hex Cheat), I have also found where in the savegame the Party Experience is stored - it's located at byte 8A, and once again is a little-endian* signed** word***. Maximum value for this field seems to be 2147483647 (0x7FFFFFFF, or 0xFFFFFF7F in savegame [read the descriptions below]). Also, sorry for the rather lengthy explanation, but since we're dealing with savegame editing (or hexadecimal editing in general), you all should know this. *little-endian: ie. if you wish to have a value of 1234 in game, which is 4D2 in HEX, you have to write it in reverse - D204 (hex values are, for clarity, usually written in sets of two). **signed: it means that the value can have a negative value. Here's an example: 1 byte unsigned can store values from 0 to 255 (0x00 - 0xFF), however if it is signed, it can store values from -128 to 128 (0x00 - 0xFF). 0 is always 0, but when signed, a value of 129 (0x81) will result in -1 in game instead. ***word: a bit can store two values: 0 and 1; a byte is 8 bits long and can store values from 0x00 (0) to 0xFF (255). An integer (int) is 16 bits (2 bytes) long (for the most part) and stores values from 0x0000 (0) to 0xFFFF (65535). A word is 32 bits long (4 bytes) and stores values from 0x00000000 (0) to 0xFFFFFFFF (4294967295). Unless the values are 'signed' - read above. The size of an 'integer' can vary between 8b, 16b, 32b and even 64b between platforms, but it is generally accepted that when one speaks of an 'int', the size referred to is 16-bit.