09-20-2021, 03:30 AM (This post was last modified: 09-20-2021, 05:15 AM by skunktail.
Edit Reason: more info
)
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
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.
09-22-2021, 04:49 AM (This post was last modified: 09-22-2021, 04:51 AM by Rebel521.)
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.
(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