[FFVIII] Game Tweaks

  • Thread starter Thread starter Phun
  • Start date Start date
Status
Not open for further replies.
P

Phun

Guest
Client: Final Fantasy VIII v1.2 - ENG (NON-NVIDIA)

Code: [Select]
Code:
;---------------------------------------------------------------------------------------------------.damage;---------------------------------------------------------------------------------------------------Change the damage cap to 65,535.- old00491127      81C1 0F270000 add ecx,270F- new00491127      81C1 FFFF0000 add ecx,0FFFF;---------------------------------------------------------------------------------------------------.hp;---------------------------------------------------------------------------------------------------Change the HP cap to 32,767.- old00495A0A      81FA 0F270000 cmp edx,270F00495A12      BA 0F270000   mov edx,270F- new00495A0A      81FA FF7F0000 cmp edx,7FFF00495A12      BA FF7F0000   mov edx,7FFF;---------------------------------------------------------------------------------------------------.item;---------------------------------------------------------------------------------------------------Stop the item amount from decreasing when used.- old004F9365      3BC3          cmp eax,ebx- new004F9365      85D8          test eax,ebx;---------------------------------------------------------------------------------------------------.magic;---------------------------------------------------------------------------------------------------Stop the magic amount from decreasing when cast.- old00486AF8      84C9          test cl,cl- new00486AF8      32C9          xor cl,cl;---------------------------------------------------------------------------------------------------.publish;---------------------------------------------------------------------------------------------------Skip publish screen.- old0040B277     /74 10         je short 0040B289- new0040B277     /75 10         jnz short 0040B289
 
Last edited:
I do believe the cap to be -65,535 to 65,535.[/u] After all, it's only fair. Right? :wink:
I think it will be -32768 to 32767.
 
I do believe the cap to be -65,535 to 65,535. After all, it's only fair. Right? :wink:
I think it will be -32768 to 32767.
The value is type unsigned short. The highest cap you can set is 0FFFF (65,535).

b67kzk.jpg
 
Last edited:
Hmmm, that was unexpected; it's signed in FF7.

Can HP go up to 65535 as well?
 
Status
Not open for further replies.
Back
Top