Author Topic: [FFVIII] Game Tweaks  (Read 4111 times)

Phun

  • Guest
[FFVIII] Game Tweaks
« on: 2009-07-24 01:56:39 »
Client: Final Fantasy VIII v1.2 - ENG (NON-NVIDIA)

Code: [Select]
;---------------------------------------------------------------------------------------------------
.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
« Last Edit: 2009-07-29 01:27:42 by Phun »

Kudistos Megistos

  • Banned
  • *
  • Posts: 3929
    • View Profile
Re: [FFVIII] Client Modifications
« Reply #1 on: 2009-07-24 01:59:56 »
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.

Phun

  • Guest
Re: [FFVIII] Client Modifications
« Reply #2 on: 2009-07-24 02:04:07 »
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).

« Last Edit: 2009-07-24 03:14:54 by Phun »

Kudistos Megistos

  • Banned
  • *
  • Posts: 3929
    • View Profile
Re: [FFVIII] Game Tweaks
« Reply #3 on: 2009-07-24 13:14:32 »
Hmmm, that was unexpected; it's signed in FF7.

Can HP go up to 65535 as well?

Phun

  • Guest
Re: [FFVIII] Game Tweaks
« Reply #4 on: 2009-07-24 14:27:45 »
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.