Could I request help testing a cheat code?
#1
Hi there!

I'm trying to get two codes working for Suikoden 5, max money and max SP.  I'm using the information from the super useful 'Post-your-PCSX2-cheats-patches-here' thread. The region date is NTSC (U), and the CRC is BCD0B7CD.

I have some codebreaker codes from code twink...

Max Potch
2ABBA1E1 05F5E0FF

Max Party SP
2AA7A1E1 000F423F




....converted them...



gametitle=Suikoden V    [SLUS_212.91] (USA) [BCD0B7CD]

comment=Suikoden

//Max Potch
patch=1,EE,10A31C10,byte,0000FFFF
//Max SP
patch=1,EE,20A31C14,byte,000F423F




... and yet I can't keep getting errors. My logs go nuts with red flags, and while it says the codes are loaded, nothing seems to happen. I seriously messed up trying to fix things on my own with FFX (game became unstable, and crashed often) so I'm hoping someone can show me what I'm doing wrong here before I make a mess of things. 

Any help would be most appreciated. Thank you for your time!
Reply

Sponsored links

#2
You used ,byte, the wrong way.

byte = 1 byte. (example: writes ######[FF] ignoring the first 3 bytes)
short = 2 bytes. (example: writes ####[FFFF] ignoring the first 2 bytes)
word = 4 bytes. (example: writes [FFFFFFFF] to all the bytes of the address)


To avoid confusion dealing with that, simply use ,extended, instead.

So you'll get:

Code:
//Max Potch
patch=1,EE,20A31C10,extended,05F5E0FF
//Max Party SP
patch=1,EE,20A31C14,extended,000F423F


If you want more info regarding this, please refer to this guide: http://forums.pcsx2.net/Thread-How-PNACH-files-work-2-0
AMD Ryzen 5 3600 @ 3.60~4.20 GHz | Corsair Vengeance LPX 32 GB (2x16GB) DDR4-3200
MSI GeForce GTX 1660 Super @ 6 GB | Samsung 980 1TB | Windows 10 Pro x64 (22H2)
Reply
#3
Ah, that worked perfectly! Thank you so much!
Reply




Users browsing this thread: 1 Guest(s)