Dark Cloud 1 PAL defense pnach codes
#11
You can try this code to restore Toan's defense to what it was (or more). *Use only one of the following*
01CF0192 00000063 = 99 defense
01CF0192 00000032 = 50 defense
01CF0192 00000014 = 20 defense
01CF0192 000000?? = put whatever hex value you want in place of ??

or try

01CF0194 00000063 = 99 defense
01CF0194 00000032 = 50 defense
01CF0194 00000014 = 20 defense
01CF0194 000000?? = put whatever hex value you want in place of ??

Save game first and reload if it doesn't work
Reply

Sponsored links

#12
(11-02-2019, 07:25 PM)Rebel521 Wrote: You can try this code to restore Toan's defense to what it was (or more). *Use only one of the following*
01CF0192 00000063 = 99 defense
01CF0192 00000032 = 50 defense
01CF0192 00000014 = 20 defense
01CF0192 000000?? = put whatever hex value you want in place of ??

or try

01CF0194 00000063 = 99 defense
01CF0194 00000032 = 50 defense
01CF0194 00000014 = 20 defense
01CF0194 000000?? = put whatever hex value you want in place of ??

Save game first and reload if it doesn't work

holy crap that actually worked, thank you so much man, really generous of you to help out

also thank you for the previous poster above, looks like something really useful for learning how to modify game data

heres how i wrote it out:



//Toans Defense, the last 2 digits represent a hex value, ie 99 in decimal = 63 in hexidecimal, 50 in decimal = 32 in hexidecimal
//so say you want to turn a decimal number that is 66 into a hex number, google "convert decimal to hex"
//https://www.thecalculatorsite.com/math/decimal-to-hex.php
//only use one of the following

//99 defense
//patch=1,EE,01CF0194,extended,00000063

//66 defense (this is the max Toan can official achieve if all the fluffy doughnuts he ate were +7, best use this after you ate all the fluffy doughnuts otherwise youre bypassing the game initial limits)
patch=1,EE,01CF0194,extended,00000042

//50 defense
//patch=1,EE,01CF0194,extended,00000032

//20 defense
//patch=1,EE,01CF0194,extended,00000014 =

//put whatever hex value you want in place of ??
//patch=1,EE,01CF0194,extended,000000??



what about a ?? modifier for Xiao's Defense, the rest of the characters i got correct, thank you so much again

and another question if you dont mind, is there a way to enable, disable, these cheats, without having to shut the game down and reboot it? anyway to make live changes?
Reply
#13
That's some weird game then,placing character stats right next to money.

About the "??",I am not sure what you mean but if it's this
//patch=1,EE,01CF0194,extended,000000??

// - means the code is disabled
?? - means you have to put hexadecimal value(decimal converted as hexadecimal)there...if you want 99 defense,you replace ?? with 63

About disabling the cheats...I remember pcsx2 1.4.0 was giving me some problems with not disabling the cheats when I disable them from the menu,but I think it is fixed on the latest beta

And by "enable, disable, these cheats" if you mean reverting to the original value before using the cheats,then no,the cheats are modifying an address the same way the game will modify it so when you give yourself 99 defense,it's like you used items that give you 99 defense.
Reply
#14
(11-03-2019, 11:50 AM)vsub Wrote: That's some weird game then,placing character stats right next to money.

About the "??",I am not sure what you mean but if it's this
//patch=1,EE,01CF0194,extended,000000??

// - means the code is disabled
?? - means you have to put hexadecimal value(decimal converted as hexadecimal)there...if you want 99 defense,you replace ?? with 63

About disabling the cheats...I remember pcsx2 1.4.0 was giving me some problems with not disabling the cheats when I disable them from the menu,but I think it is fixed on the latest beta

And by "enable, disable, these cheats" if you mean reverting to the original value before using the cheats,then no,the cheats are modifying an address the same way the game will modify it so when you give yourself 99 defense,it's like you used items that give you 99 defense.

I mean is there a defense modifier for Xiao we can figure out somehow? we have working ones for Toan now from the poster above so could we just change the character identifiers? i believe its the 0194 that identifies the character?

yeah i know its disabled currently, ignore that, just wondering what Xiao code would be, or how i can figure that out

for these stat modifiers yeah i also know that they are permanent, but i mean for testing purposes, and for other codes, would be great to enable/disable these patches without having to reboot the game, i have other codes running like:

//Aspect Ratio Mod 16:9 Widescreen (PAL REGION)
//patch=1,EE,0012e228,word,3c023f40

//Aspect Ratio Mod 21:9 Widescreen (PAL REGION)
patch=1,EE,0012e228,word,3f023f0f

//Aspect Ratio Mod 32:9 Widescreen (PAL REGION)
//patch=1,EE,0012e228,word,3c023e90

would be fun to see the change live for toggling these patches / codes
Reply
#15
You can disable them but disabling them will not revert the values to the values that were before enabling them

And about the defense for the other characters,you can try this(I don't know if it will be too complicated for you)

1.Download Cheat Engine,run it and select pcsx2 while you are playing the game

2.You said that you have few items left that increases the characters defense,so choose that item,select it,choose the character you want to give that item to and create a save state

3.In cheat engine after you select the pcsx2 process,set CE like this
Scan Type: Exact Value
Value Type: Byte
Memory Scan Options: Set start to 20000000 and end to 21FFFFFF
And in the Value at the top write how many of the item you have and click First Scan

4.After the scan is done,use ONE if those items and search again for how many of if you have now(click on Next Scan)
Repeat that until you have only one address left or you have only one item left

5.If you find the right address,double click on it(it will be added to the list below),load your save state,double click on the value and type 99 and freeze the value if you want(the check box on the left)and start increasing your stats(the item will stay 99

After that if you want to do something more complicated,start looking for each characters stats but using that item and search for the address
Character stats are usually very close to each other so if you find an address that represents some character defense,the other stats will be in the same region in memory
Reply
#16
@TMProjection Try this for Xiao defense. It's a shot in the dark port so make sure to save before you try it. I'm assuming the offset that worked for Toan was 01CF0194.

01CF0C3C 000000??
??= hex number you wish to change value to. (example decimal value 99= hex value 63)
Reply
#17
(11-03-2019, 03:45 PM)vsub Wrote: You can disable them but disabling them will not revert the values to the values that were before enabling them

And about the defense for the other characters,you can try this(I don't know if it will be too complicated for you)

1.Download Cheat Engine,run it and select pcsx2 while you are playing the game

2.You said that you have few items left that increases the characters defense,so choose that item,select it,choose the character you want to give that item to and create a save state

3.In cheat engine after you select the pcsx2 process,set CE like this
Scan Type: Exact Value
Value Type: Byte
Memory Scan Options: Set start to 20000000 and end to 21FFFFFF
And in the Value at the top write how many of the item you have and click First Scan

4.After the scan is done,use ONE if those items and search again for how many of if you have now(click on Next Scan)
Repeat that until you have only one address left or you have only one item left

5.If you find the right address,double click on it(it will be added to the list below),load your save state,double click on the value and type 99 and freeze the value if you want(the check box on the left)and start increasing your stats(the item will stay 99

After that if you want to do something more complicated,start looking for each characters stats but using that item and search for the address
Character stats are usually very close to each other so if you find an address that represents some character defense,the other stats will be in the same region in memory

[Image: 24dc8ffc6d522b2a4926a07b7b765d32.png]

I found the correct address but after i double click on the value, try to change it to anything, say to 6 (i had 5), or 99, it doesnt stick, it keeps changing to 3, 5, etc, even if i click on the far left box (active)

219B9886

so what do i do with this address?
again thank you so much for being so helpful, this is actually really interesting, from what i understood we are finding the address that represents the values we gave, so now we got the address how do we modify it? do we do this in cheat engine? does that make live changes in the game?


(11-03-2019, 08:35 PM)Rebel521 Wrote: @TMProjection Try this for Xiao defense. It's a shot in the dark port so make sure to save before you try it. I'm assuming the offset that worked for Toan was 01CF0194.

01CF0C3C 000000??
??= hex number you wish to change value to. (example decimal value 99= hex value 63)

thanks dude but that didnt work
Reply
#18
bump (hope thats allowed)
Reply
#19
When you change the value,try exiting the menus and enter again and see if you have as many as you set it to
Reply
#20
(11-03-2019, 08:35 PM)Rebel521 Wrote: @TMProjection Try this for Xiao defense. It's a shot in the dark port so make sure to save before you try it. I'm assuming the offset that worked for Toan was 01CF0194.

01CF0C3C 000000??
??= hex number you wish to change value to. (example decimal value 99= hex value 63)

(11-05-2019, 05:59 PM)vsub Wrote: When you change the value,try exiting the menus and enter again and see if you have as many as you set it to

ok so i exited the inventory menu, changed the value, the value stuck this time and didnt flicker back...UNTIL i entered the inventory again, which flickered back to its original state (5), or 3 if i used 2 of them etc

doesnt seem to be making any changes ingame
Reply




Users browsing this thread: 1 Guest(s)