Kingdom Hearts - Final Mix: Reaction Commands

Discussion in 'Code Vault' started by TopazTK [Topaz' Reality], May 23, 2019.

  1. TopazTK [Topaz' Reality] Moogle Assistant

    Joined:
    May 23, 2019
    Gender:
    Darkness
    Location:
    Kosovo, Prizren
    2
    6
    The code that is given below shotcuts going to the 4th Slot, pressing X and going back to the first slot (after a second press) to Triangle, acting as a psuedo reaction command system. It's good enough to work seamlessly and to give that KH2 luxury.

    The video which demonstrates this is here:


    And here is the code in all of it's glory:

    Code:
    // 4th Slot + (Cross) is bound to (Triangle) - KH1FM
    patch=1,EE,E00400FF,extended,004E42E6
    patch=1,EE,E00300E6,extended,002E2FFF
    patch=1,EE,002E2FE4,extended,00000003
    patch=1,EE,004E42DD,extended,000000DF
    patch=1,EE,004E435D,extended,000000DF
    patch=1,EE,E00400FF,extended,004E42E6
    patch=1,EE,E0030073,extended,002E2FFF
    patch=1,EE,002E2FE4,extended,00000000
    patch=1,EE,004E42DD,extended,000000DF
    patch=1,EE,004E435D,extended,000000DF
    I have also made a KH1US version of this. Comment below if you want that code as well.
     
  2. Enzineda Traverse Town Homebody

    Joined:
    Jul 2, 2013
    23
    112
    I went ahead and made my own reaction command code, looks like it uses similar functionality but with edge case handlers.

    This version causes you to not attack unintentionally when there is no action available, while still allowing you to use alternative 1st slot actions like Talk, Raid, etc. with the Triangle button.

    Code:
    // NTSC Mode Version
    
    // Reaction Commands
    patch=1,EE,E10C00D8,extended,002E3170 // Disable when shortcut menu is open
    
    patch=1,EE,E1050000,extended,102E2FEF // Slot 4 Isn't Empty
    patch=1,EE,E00400FF,extended,004E42E6 // Triangle Joker
    patch=1,EE,E00300E6,extended,002E2FFF
    patch=1,EE,002E2FE4,extended,00000003
    patch=1,EE,004E42DD,extended,000000BF // Press X
    patch=1,EE,004E435D,extended,000000BF // Press X
    
    patch=1,EE,E1050001,extended,102E2FEC // Slot 1 isn't Attack
    patch=1,EE,E00400FF,extended,004E42E6 // Triangle Joker
    patch=1,EE,E0030073,extended,002E2FFF
    patch=1,EE,002E2FE4,extended,00000000
    patch=1,EE,004E42DD,extended,000000BF // Press X
    patch=1,EE,004E435D,extended,000000BF // Press X
    
    
    
    Code:
    // JP Controls Version
    
    // Reaction Commands
    patch=1,EE,E10C00D8,extended,002E3170 // Disable when shortcut menu is open
    
    patch=1,EE,E1050000,extended,102E2FEF // Slot 4 Isn't Empty
    patch=1,EE,E00400FF,extended,004E42E6 // Triangle Joker
    patch=1,EE,E00300E6,extended,002E2FFF
    patch=1,EE,002E2FE4,extended,00000003
    patch=1,EE,004E42DD,extended,000000DF // Press X
    patch=1,EE,004E435D,extended,000000DF // Press X
    
    patch=1,EE,E1050001,extended,102E2FEC // Slot 1 isn't Attack
    patch=1,EE,E00400FF,extended,004E42E6 // Triangle Joker
    patch=1,EE,E0030073,extended,002E2FFF
    patch=1,EE,002E2FE4,extended,00000000
    patch=1,EE,004E42DD,extended,000000DF // Press X
    patch=1,EE,004E435D,extended,000000DF // Press X
    
    
    
     
    Last edited: Dec 31, 2019
  3. TopazTK [Topaz' Reality] Moogle Assistant

    Joined:
    May 23, 2019
    Gender:
    Darkness
    Location:
    Kosovo, Prizren
    2
    6
    I thank you for your efforts Enzineda. I, having made the code in extreme haste, did not have the time to fancy it. Liked.
     
  4. Agent 86 Moogle Assistant

    Joined:
    May 7, 2020
    Gender:
    Male
    0
    4
    Hi everyone!!

    Yes, I am very interested by a KH1US version of your reaction command code if you still have it in hand. Could you post it please?
    Is it possible to add a case handler like Enzineda's version?

    Thanks in advance!
     
  5. NexusGamingWolf Moogle Assistant

    Joined:
    Jul 12, 2020
    Gender:
    Male
    0
    1
    Yes, I am very interested by a KH1US version of your reaction command code if you still have it in hand. Could you post it please? :P