cheating question
#1
Sad 
i managed to figure it all out, can convert and even make my own codes, but

i have a bit of a pickle

dark cloud

patch=1,EE,21CDDA6C,word,0003005A this code here should edit the Abs of the weapon in Toans first slot to something high, thus making it so you can always upgrade the weapon in slot one, the issue is, here is the code in decimal for easier understanding 196608.

the issue is that the 08 is the code for the Abs, the first digit, or the 1 is the selection for your current element, meaning i cannot just lock this address higher or it messes with more then just the Abs. i was wondering and hoping there was a way to make a code in the pnach file only modify a specific set of numbers in the line of memory, specifically the last three lines? apologies if this is hard to understand.

seems the number gets a lot higher and modifies a bit more then i thought on the weapon, will be doing an in depth on the code location when i can


Attached Files
.pnach   A5C05C78.pnach (Size: 648 bytes / Downloads: 86)
Reply

Sponsored links

#2
Been a long time since I played this game, but this is what I have in my code list; hope it helps.

Infinite Absorption
patch=1,EE,11CDDA6C,extended,00000063

or try

patch=1,EE,01CDDA6C,extended,00000063
Reply
#3
Here is what I found


Attached Files
.pnach   A5C05C78_Dark Cloud 1.pnach (Size: 15,69 KB / Downloads: 82)
Reply
#4
(09-20-2021, 10:02 PM)dhillel Wrote: Here is what I found

this is epic thank you

(09-20-2021, 07:52 PM)Rebel521 Wrote: Been a long time since I played this game, but this is what I have in my code list; hope it helps.

Infinite Absorption 
patch=1,EE,11CDDA6C,extended,00000063

or try

patch=1,EE,01CDDA6C,extended,00000063

will test when i can, thank you for your efforts
Reply
#5
(09-20-2021, 07:52 PM)Rebel521 Wrote: Been a long time since I played this game, but this is what I have in my code list; hope it helps.

Infinite Absorption 
patch=1,EE,11CDDA6C,extended,00000063

or try

patch=1,EE,01CDDA6C,extended,00000063

ok the first one works, how the hell did you get it to not override the elemental section of the code to 0? i only ask because i am trying to get into making more codes.
Reply
#6
the code you used (patch=1,EE,21CDDA6C,word,0003005A) was writing a full word 0003005A when we just wanted it to write the half word 005A. (my code uses 63 instead of 5A)

the reason is because your code starts with 2 which instructs the game to use the entire value 0003005A. My code starts with 1 which tells the game to use only the last 4 digits (0063).

Basically you were changing more values than just the value you wanted.
Reply
#7
(09-22-2021, 04:49 AM)Rebel521 Wrote: the code you used (patch=1,EE,21CDDA6C,word,0003005A) was writing a full word 0003005A when we just wanted it to write the half word 005A. (my code uses 63 instead of 5A)

the reason is because your code starts with 2 which instructs the game to use the entire value 0003005A. My code starts with 1 which tells the game to use only the last 4 digits (0063).

Basically you were changing more values than just the value you wanted.

thank you for the learnin, i truly do appreciate it
Reply




Users browsing this thread: 1 Guest(s)