Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - xplosivmetal

Pages: [1]
1
Sithlord,

A bugfix you might think about including in 1.9.8...

Change \FF7tk\widgets\CharEditor.cpp line 1472 (in subroutine void CharEditor::cb_sadness_toggled(bool sad)) from this:

   setSadnessFury(0x20);

to this:

   setSadnessFury(0x10);

and also line 1483 (in subroutine void CharEditor::cb_fury_toggled(bool fury)) from this:

   setSadnessFury(0x10);

to this:

   setSadnessFury(0x20);

You will also need to change lines 28 & 29 in \FF7tk\static_data\FF7Char.h from:

    enum FF7CharStatus
    {
        Fury = 0x10,
        Sadness =0x20,

        BackRow = 0xFE,
        FrontRow =0xFF
    };

to this:

    enum FF7CharStatus
    {
        Sadness  = 0x10,
        Fury         = 0x20,

        BackRow  = 0xFE,
        FrontRow = 0xFF
    };

These changes are required when you need your characters to be in 'Fury' and not find out when you load your save game they have been set to 'Sadness' instead!

I have double checked with Jenova Source, Fury is 0x20 (32 in denary) & Sadness is 0x10 (16 in denary)

Thanks for your time :)

Lloyd

Pages: [1]