Skip to content

Conditionals

1234567890num edited this page Mar 13, 2021 · 8 revisions

Difficulty

patch=1,EE,E001000X,extended,0032DFC8 //X = Difficulty Determiner. 0=Beginner, 1=Standard, 2=Proud, 3=Critical.

Start of the Game

patch=1,EE,E0022002,extended,0032BAE0 //Location at Station of Serenity in Twilight Town
patch=1,EE,E0010001,extended,0032BAE8 //Event at selecting dream weapon

Bootup

patch=1,EE,E001FFFF,extended,0032BAE0 //Location at Bootup (Main Menu)

If not in room transition

patch=1,EE,E0020000,extended,1032BAD8

Dream Weapon

patch=1,EE,E101000X,extended,0032E02C //0=Dream Sword, 1=Dream Shield, 2=Dream Staff

General World Conditional

patch=1,EE,E10100XX,extended,0032BAE0 //XX is world ID

or

patch=1,EE,E001XX00,extended,0032BADF

General Event Conditional

patch=1,EE,E004YYXX,extended,0032BAE0 //XX is world ID, YY is room ID
patch=1,EE,E00300AA,extended,0032BAE4 //Map ID
patch=1,EE,E00200BB,extended,0032BAE6 //Battle ID
patch=1,EE,E00100CC,extended,0032BAE8 //Event ID

Note: Generally AA=BB=CC, thus you can use just one of the three lines.

Types of Battles

patch=1,EE,E001000X,extended,01C61958 //0=Not in Battle (Blue), 1=In Mob Battle (Yellow), 2=In Required Battle (Red)

If Sora can be Controlled (aka the loading has been completed)

patch=1,EE,E0010000,extended,01D48DB8

Controller Buttons

patch=1,EE,E001ABCD,extended,0034D45C
A : Other Buttons
B : D-pad
C : Shoulder Buttons
D : Face Buttons
_____________________________________________________________________________________________
FFF0 - Start Select R3 L3 | FF0F - Up Down Left Right | F0FF - R1 R2 L1 L2 | 0FFF - ◯ ▢ ✕ △
FFF1 - Start        R3 L3 | FF1F -    Down Left Right | F1FF - R1 R2 L1    | 1FFF - ◯ ▢ ✕
FFF2 - Start Select    L3 | FF2F - Up Down Left       | F2FF - R1    L1 L2 | 2FFF -    ▢ ✕ △
FFF3 - Start        R3    | FF3F -    Down Left       | F3FF - R1    L1    | 3FFF -    ▢ ✕
FFF4 - Start Select    L3 | FF4F - Up      Left Right | F4FF - R1 R2    L2 | 4FFF - ◯ ▢   △
FFF5 - Start           L3 | FF5F -         Left Right | F5FF - R1 R2       | 5FFF - ◯ ▢
FFF6 - Start Select       | FF6F - Up      Left       | F6FF - R1       L2 | 6FFF -    ▢   △
FFF7 - Start              | FF7F -         Left       | F7FF - R1          | 7FFF -    ▢
FFF8 -       Select R3 L3 | FF8F - Up Down      Right | F8FF -    R2 L1 L2 | 8FFF - ◯   ✕ △
FFF9 -              R3 L3 | FF9F -    Down      Right | F9FF -    R2 L1    | 9FFF - ◯   ✕
FFFA -       Select R3    | FFAF - Up Down            | FAFF -       L1 L2 | AFFF -      ✕ △
FFFB -              R3    | FFBF -    Down            | FBFF -       L1    | BFFF -      ✕
FFFC -       Select    L3 | FFCF - Up           Right | FCFF -    R2    L2 | CFFF - ◯     △
FFFD -                 L3 | FFDF -              Right | FDFF -    R2       | DFFF - ◯
FFFE -       Select       | FFEF - Up                 | FEFF -          L2 | EFFF -        △
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾

Notes:

  • 0000 - All Buttons | FFFF - No Buttons
  • This does not include analog sticks.
  • You can combine these, for example FCEF (R2 + L2 + Up).
  • You can use this for conditions to check if one or more buttons are pressed.
  • You can use this to make one or more buttons to be pressed.
Clone this wiki locally