[split] Yakuza 2 cheats
#1
now the Yakuza 2 pnach is now available



.pnach   97E9C87E.pnach (Size: 858 bytes / Downloads: 3.731)


now the Yakuza 2 pnach is now available
Reply

Sponsored links

#2
(06-03-2014, 04:15 PM)Balthier Wrote: now the Yakuza 2 pnach is now available

Please open a new thread, explain what this patch does, and why it belongs in the compatibility forum. Thanks.

Edit - it contains the following cheats:

gametitle=Yakuza 2

//Enable Code (Must Be On)
patch=1,EE,001119d8,word,0c04461e

//Max Money
patch=1,EE,001A3580,word,05F5E0FF

//Infinite Health
patch=1,EE,001A3A44,word,000004B0

//Max Health
patch=1,EE,001A3A46,word,000004B0

//Max Infinite Health
patch=1,EE,001A3A44,word,03840384

//Max Infinite Heat
patch=1,EE,001A3A7C,word,2F800000

//Quick Exp Gain
patch=1,EE,001A3A4C,word,0000FFFF

//Max Exp
patch=1,EE,001A3A4C,word,05F5E0FF

//Quick Max Soul
patch=1,EE,001A3A50,word,003003E8
patch=1,EE,001A3A50,word,000184AC

//Quick Max Technique
patch=1,EE,001A3A54,word,003003E8
patch=1,EE,001A3A54,word,000184AC

//Quick Max Body
patch=1,EE,001A3A58,word,003003E8
patch=1,EE,001A3A58,word,000184AC

//Have All Power Up Skills
patch=1,EE,001A3A5C,word,FFFFFFFF

//Max Damage Dealt
patch=1,EE,001A398E,word,0000270F
Reply
#3
(06-03-2014, 10:30 PM)avih Wrote: Please open a new thread, explain what this patch does, and why it belongs in the compatibility forum. Thanks.

Edit - it contains the following cheats:

gametitle=Yakuza 2

//Enable Code (Must Be On)
patch=1,EE,001119d8,word,0c04461e

//Max Money
patch=1,EE,001A3580,word,05F5E0FF

//Infinite Health
patch=1,EE,001A3A44,word,000004B0

//Max Health
patch=1,EE,001A3A46,word,000004B0

//Max Infinite Health
patch=1,EE,001A3A44,word,03840384

//Max Infinite Heat
patch=1,EE,001A3A7C,word,2F800000

//Quick Exp Gain
patch=1,EE,001A3A4C,word,0000FFFF

//Max Exp
patch=1,EE,001A3A4C,word,05F5E0FF

//Quick Max Soul
patch=1,EE,001A3A50,word,003003E8
patch=1,EE,001A3A50,word,000184AC

//Quick Max Technique
patch=1,EE,001A3A54,word,003003E8
patch=1,EE,001A3A54,word,000184AC

//Quick Max Body
patch=1,EE,001A3A58,word,003003E8
patch=1,EE,001A3A58,word,000184AC

//Have All Power Up Skills
patch=1,EE,001A3A5C,word,FFFFFFFF

//Max Damage Dealt
patch=1,EE,001A398E,word,0000270F

That looks about right to break a game. Word.
Reply
#4
Code:
"byte"  ... 1 byte  write command.
"short" ... 2 bytes write command.
"word"  ... 4 bytes write command.

The followings are examples.

["byte" ... 1 byte  write command]
patch=1,EE,00000000,byte,0000270F

                 00 01 02 03
Before: 00000000 FF FF FF FF
After:  00000000 0F FF FF FF
* Address 00000000 is overwritten.


["short" ... 2 bytes write command]
patch=1,EE,00000000,short,0000270F

                 00 01 02 03
Before: 00000000 FF FF FF FF
After:  00000000 0F 27 FF FF
* Addresses 00000000 and 00000001 are overwritten.


["word"  ... 4 bytes write command]
patch=1,EE,00000000,word,0000270F

                 00 01 02 03
Before: 00000000 FF FF FF FF
After:  00000000 0F 27 00 00
* Addresses 00000000 to 00000003 are overwritten.


There is also "extended", but it's difficut to explain. Smile
Reply




Users browsing this thread: 1 Guest(s)