P
Phun
Guest
Client: Final Fantasy VIII v1.2 - ENG (NON-NVIDIA)
Code: [Select]
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: