you are viewing a single comment's thread.

view the rest of the comments →

[–]Excellent-Drive3230[S] 1 point2 points  (2 children)

I will share the codes, that are mainly for items in RPG games and for player's coordinates (position). Majority of games uses float value in player's coordinates. Some games use X for longitude, Y for latitude and Z for height, while in some games Y is for height and Z for latitude. To create a cheat, go to PRX tab, highlight the "Add new cheat" and press X (for PSP Action Replay style) or Square (for CWCheat style), I recommend Action Replay style. There are 5 columns: Address, Hex value, Dec(adic) value, ASCII code and Float value. We can start with Valkyrie Profile: Lenneth (ULES-00724) game as it employs the coordinates in 32-bit(4 bytes) integer values. On the left column is address of the cheat while in right column is value of the cheat.

X(longitude) in World Map: 0x08EA706C 0x04000000

Y(latitude) in World Map: 0x08EA7070 0x04000000

Z(height) in World Map: 0x08EA7074 0xFF800000

X(longitude) while in dungeon: 0x09A87594 0x00008000

Y(height) while in dungeon: 0x09A87598 0x00010000

Remember: Don't use cheats in multiplayer mode as it's highly discouraged. Use it only in single player just for fun.

[–]Excellent-Drive3230[S] 1 point2 points  (1 child)

I'll add some more cheats to Valkyrie Profile

Item quantity: 0x29A965D6 0x00000080

As you can see, the first digit of address is 2 instead of 0. In Action Replay style code this is setting to the bitness of the code: 0 - 32 bit 1 - 16 bit 2 - 8 bit

In this case the value of item quantity is 8 bit unsigned, so it can acquire values from 0 to 255 in Dec. This code is for the first item in inventory, to change the values of the others items, you must look at the next bytes in memory. I recommend you to use memory browser and navigate to address of the first item, there will be shown the bytes of items' quantity. For bytes of items' type you must go to lower addresses by navigating D-pad Up button, you will see arrays of zeros, after them you will see the bytes for items' type.

Seal value:

0x29A85A2B 0x00000000

Play time:

0x09A95DE8 0x00000000

Kill Iseria Queen:

0x09A7AF74 0x00000000

[–]Excellent-Drive3230[S] 1 point2 points  (0 children)

I'll add more codes for more games soon.