How to configure the max stats codes provided by SydMontague to be more to your liking. I've found out the formulas and what is what by experimentation.
First of all these are the codes,
[Stats Modifier]
HP QUANTITY
004FCE39 --------
HP MAXIMUM
004FCE3D --------
MP QUANTITY
004FCE41 --------
MP MAXIMUM
004FCE45 --------
DEF, ATK
004FCE48 --------
BRN, SPD
004FCE4C --------
'Maximum' in this case means the highest quantity of HP or MP your digimon will be able to have according to how much you set it, not the highest possible as in 99999, unless you set it this way of course.
Remember to write the code values in hexadecimal.
__________________________________________
x = stats you want
HP QUANTITY:
((x - 421) ÷ 256) + 1 = the value you want to put into the code, example: 00000001, 2, 3, 4..
The - 421 is because in this code the first value starts at 421 but increases with 256 each step and the + 1 is because 421 still counts as the first number in the sequence. This is an exception to the following three codes which start at 256 and continue with 256.
HP MAXIMUM:
x ÷ 256 = the value you want to put into the code
example: 00000001, 2, 3, 4..
MP QUANTITY:
x ÷ 256 = the value you want to put into the code
example: 00000001, 2, 3, 4..
MP MAXIMUM:
x ÷ 256 = the value you want to put into the code
example: 00000001, 2, 3, 4..
For the above values you need to round up to the nearest whole number when the calculation has a decimal place. Also since HP QUANTITY and HP MAXIMUM are a different set of numbers they can't match exactly, but it's nothing a good rest, sleep or a Small HP Disc can't solve. Just make sure the HP MAXIMUM value is at least a value above the HP QUANTITY value if you don't want the HP QUANTITY to overlap your MAXIMUM HP.
The rest of the codes are straightforward, each code value is segmented in two parts, four digits for each stats which range from 1 - 9999 (0001 - 270F), and they are as follows;
DEF, ATK:
004FCE48 00640064 = 100 DEF 100 ATK
BRN, SPD:
004FCE4C 270F270F = 9999 BRN 9999 SPD
These are just examples, again you can set them to whatever you want from 1 - 9999 (0001 - 270F).
__________________________________________