Qhimm.com Forums
Miscellaneous Forums => Archive => Topic started by: Phun on 2009-07-24 01:56:39
-
Client: Final Fantasy VIII v1.2 - ENG (NON-NVIDIA)
;---------------------------------------------------------------------------------------------------
.damage
;---------------------------------------------------------------------------------------------------
Change the damage cap to 65,535.
- old
00491127 81C1 0F270000 add ecx,270F
- new
00491127 81C1 FFFF0000 add ecx,0FFFF
;---------------------------------------------------------------------------------------------------
.hp
;---------------------------------------------------------------------------------------------------
Change the HP cap to 32,767.
- old
00495A0A 81FA 0F270000 cmp edx,270F
00495A12 BA 0F270000 mov edx,270F
- new
00495A0A 81FA FF7F0000 cmp edx,7FFF
00495A12 BA FF7F0000 mov edx,7FFF
;---------------------------------------------------------------------------------------------------
.item
;---------------------------------------------------------------------------------------------------
Stop the item amount from decreasing when used.
- old
004F9365 3BC3 cmp eax,ebx
- new
004F9365 85D8 test eax,ebx
;---------------------------------------------------------------------------------------------------
.magic
;---------------------------------------------------------------------------------------------------
Stop the magic amount from decreasing when cast.
- old
00486AF8 84C9 test cl,cl
- new
00486AF8 32C9 xor cl,cl
;---------------------------------------------------------------------------------------------------
.publish
;---------------------------------------------------------------------------------------------------
Skip publish screen.
- old
0040B277 /74 10 je short 0040B289
- new
0040B277 /75 10 jnz short 0040B289
-
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).
(http://i26.tinypic.com/b67kzk.jpg)
-
Hmmm, that was unexpected; it's signed in FF7.
Can HP go up to 65535 as well?
-
Hmmm, that was unexpected; it's signed in FF7.
Can HP go up to 65535 as well?
If you can manage to get it that high.