Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Misc Notes:
- Values are Little Endian, meaning when you're editing values, you'll need to reverse the byte order. Eg: 03 E7 (999) would be stored as E7 03.
- Misc Offsets:
- 0x5B404 | Money | Max Value: 9999999
- 0x9DA0 | Character Name | Probably more custom character stuff here too, no real need to edit since you can do that in-game
- Monstie Analysis:
- Monstie Data begins at 0xA150, and each monster's data seems to go for 0x100 past that. From the first part of one monster to just before the next is 0x478 but a lot of that is 0s so I'm not sure if there's any significance there.
- Assuming the start of the monster data is 00, adding the below offsets will give you the relevent information.
- 0x00 | Name
- 0x38 | Something related to monstie abilities (the thing I edited to get radar on my Velocidrome)
- // 04 00 = Velocidrome
- // 0C 11 = Azuros
- 0x44 | Current HP?
- 0x46 | Max HP?
- // 0x44 and 0x46 had the same value, so I'm just assuming one is max and one is current
- 0x48 | Attack
- 0x4A | Defense
- 0x4C | Agility
- // Apparently editing the above three values has no effect
- 0x5C | Level | No real reason to edit, might mess with stat changes
- 0xE0 | EXP | FF FF FF 00 put my Velocidrome to Level 99, FF FF FF FF had no effect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement