User Tools

Site Tools


re2_opcodes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
re2_opcodes [2024/08/02 20:39] 3lricre2_opcodes [2024/08/04 06:23] (current) 3lric
Line 1: Line 1:
 ^  Instruction Name  ^  Length  ^  Example / Info  ^  History  ^ ^  Instruction Name  ^  Length  ^  Example / Info  ^  History  ^
-|{00}  Nop  |  01  |++00++|\\                         +|{00}  Nop  |  01  |++00++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x00 + UCHAR Opcode; // 0x00 
- } Nop;                    + } Nop;  
-This bytecode is used for alignment of 1 byte opcodes and ending ElseIf blocks.++|  08-02-2024 Newly Added  |                         +This bytecode is used for alignment of 1-byte opcodes and ending ElseIf blocks.++|  08-02-2024 Newly Added  | 
-|{01}  Evt_end  |  02  |++01 00++|\\                         +|{01}  Evt_end  |  02  |++01 00++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x01 + UCHAR Opcode; // 0x01 
- UCHAR zAlign;                // Always Zero + UCHAR zAlign; // Always Zero (Alignment byte) 
- } Evt_end;                    + } Evt_end;  
-This bytecode ends the current Main/Sub script.++|  08-02-2024 Newly Added  |                         +This bytecode ends the current Main/Sub script.++|  08-02-2024 Newly Added  | 
-|{02}  Evt_next  |  01  |++02++|\\                         +|{02}  Evt_next  |  01  |++02++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x02 + UCHAR Opcode; // 0x02 
- } Evt_next;                    + } Evt_next;  
-This bytecode moves to the next event.++|  08-02-2024 Newly Added  |                         +This bytecode moves to the next event in the sequence.++|  08-02-2024 Newly Added  | 
-|{03}  Evt_chain  |  02  |++03 ??++|\\                         +|{03}  Evt_chain  |  02  |++03 ID++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x03 + UCHAR Opcode; // 0x03 
- UCHAR Data1                // Data + UCHAR NextEventId; // Event ID to chain to 
- } Evt_chain;                    + } Evt_chain;  
-This bytecode chains the next event.++|  08-02-2024 Newly Added  |                         +This bytecode chains the current event to the specified next event ID, allowing the script to continue execution from the linked event.++|  08-02-2024 Newly Added  | 
-|{04}  Evt_exec  |  04  |++04 ?? ?? ??++|\\                         +|{04}  Evt_exec  |  04  |++04 ?? ?? ID++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x04 + UCHAR Opcode; // 0x04 
- UCHAR Data1                // Data + UCHAR data1; // Typically FF 
- UCHAR Data2                // Data + UCHAR GoSub; // Opcode for GoSub 0x18 
- UCHAR Data3                // Data + UCHAR ScdId; // Sub Script ID to Jump to 
- } Evt_exec;                    + } Evt_exec;  
-This bytecode executes the event.++|  08-02-2024 Newly Added  |                         +This bytecode executes the specified event with given parameters.++|  08-02-2024 Newly Added  | 
-|{05}  Evt_kill  |  02  |++05 ??++|\\                         +|{05}  Evt_kill  |  02  |++05 ID++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x05 + UCHAR Opcode; // 0x05 
- UCHAR Data1                // Data + UCHAR EventId; // Event ID to terminate 
- } Evt_kill;                    + } Evt_kill;  
-This bytecode kills the event.++|  08-02-2024 Newly Added  |                         +This bytecode terminates the specified event.++|  08-02-2024 Newly Added  | 
-|{06}  Ifel_ck  |  04  |++06 00 ?? ??++|\\                         +|{06}  Ifel_ck  |  04  |++06 00 SI ZE++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x06 + UCHAR Opcode; // 0x06 
- UCHAR zAlign;                // 00 + UCHAR zAlign; // Always Zero (Alignment byte) 
- USHORT data2               // Data + USHORT Size; // Size of the block to check 
- } Ifel_ck;                    + } Ifel_ck;  
-This bytecode checks the condition of an If-Else block.++|  08-02-2024 Newly Added  |                         +This bytecode checks condition and branches accordingly.++|  08-02-2024 Newly Added  | 
-|{07}  Else_ck  |  04  |++07 00 ?? ??++|\\                         +|{07}  Else_ck  |  04  |++07 00 SI ZE++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x07 + UCHAR Opcode; // 0x07 
- UCHAR zAlign;                // 00 + UCHAR zAlign; // Always Zero (Alignment byte) 
- USHORT data2               // Data + USHORT Size; // Size of the block to check 
- } Else_ck;                    + } Else_ck;  
-This bytecode checks the condition of an Else block.++|  08-02-2024 Newly Added  |                         +This bytecode specifies the size of the block to check if the corresponding Ifel_ck condition is met.++|  08-02-2024 Newly Added  | 
-|{08}  Endif  |  02  |++08 00++|\\                         +|{08}  Endif  |  02  |++08 00++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x08 + UCHAR Opcode; // 0x08 
- UCHAR zAlign;                // 00 + UCHAR zAlign; // Always Zero (Alignment byte) 
- } Endif;                    + } Endif;  
-This bytecode ends an If-Else block.++|  08-02-2024 Newly Added  |                         +This bytecode marks the end of an If/ElseIf/Else block.++|  08-02-2024 Newly Added  | 
-|{09}  Sleep  |  04  |++09 ?? ?? ??++|\\                         +|{09}  Sleep  |  04  |++09 ?? CO NT++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x09 + UCHAR Opcode; // 0x09 
- UCHAR Data1                // Data + UCHAR Sleeping; // Opcode for Sleeping 0x0A 
- USHORT data2               // Data + USHORT Count; // Timer / Sleep Duration 
- } Sleep;                    + } Sleep;  
-This bytecode pauses the event for specified duration.++|  08-02-2024 Newly Added  |                         +This bytecode pauses script execution for the specified duration.++|  08-02-2024 Newly Added  | 
-|{0A}  Sleeping  |  03  |++0A ?? ??++|\\                         +|{0A}  Sleeping  |  03  |++0A CO NT++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x0A + UCHAR Opcode; // 0x0A 
- USHORT data2               // Data + USHORT Count; // Timer / Sleep Duration 
- } Sleeping;                    + } Sleeping;  
-This bytecode sets the sleeping state.++|  08-02-2024 Newly Added  |                         +This bytecode pauses script execution for the specified duration.++|  08-02-2024 Newly Added  | 
-|{0B}  Wsleep  |  01  |++0B++|\\                         +|{0B}  Wsleep  |  01  |++0B++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x0B + UCHAR Opcode; // 0x0B 
- } Wsleep;                    + } Wsleep;  
-This bytecode sets the wake sleep state.++|  08-02-2024 Newly Added  |                         +This bytecode used before 0C will wait until the current XA sound has finished playing before proceeding.++|  08-02-2024 Newly Added  | 
-|{0C}  Wsleeping  |  01  |++0C++|\\                         +|{0C}  Wsleeping  |  01  |++0C++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x0C + UCHAR Opcode; // 0x0C 
- } Wsleeping;                    + } Wsleeping;  
-This bytecode sets the wake sleeping state.++|  08-02-2024 Newly Added  |                         +This bytecode used after 0B will wait until the current XA sound has finished playing before proceeding.++|  08-02-2024 Newly Added  | 
-|{0D}  For  |  06  |++0D 00 ?? ?? ?? ??++|\\                         +|{0D}  For  |  06  |++0D 00 SI ZE CO NT++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x0D + UCHAR Opcode; // 0x0D 
- UCHAR zAlign;                // 00 + UCHAR zAlign; // Always Zero (Alignment byte) 
- SHORT data2                // Data + USHORT Size; // Size of the block to check 
- USHORT data4               // Data + USHORT Count; // Amount of times block is looped 
- } For;                    + } For;  
-This bytecode starts For loop.++|  08-02-2024 Newly Added  |                         +This bytecode begins for-loop with the specified start and end values.++|  08-02-2024 Newly Added  | 
-|{0E}  Next  |  02  |++0E 00++|\\                         +|{0E}  Next  |  02  |++0E 00++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x0E + UCHAR Opcode; // 0x0E 
- UCHAR zAlign;                // 00 + UCHAR zAlign; // Always Zero (Alignment byte) 
- } Next;                    + } Next;  
-This bytecode ends For loop.++|  08-02-2024 Newly Added  |                         +This bytecode marks the end of for-loop.++|  08-02-2024 Newly Added  | 
-|{0F}  While  |  04  |++0F 00 ?? ??++|\\                         +|{0F}  While  |  04  |++0F 00 SI ZE++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x0F + UCHAR Opcode; // 0x0F 
- UCHAR zAlign;                // 00 + UCHAR zAlign; // Always Zero (Alignment byte) 
- SHORT data1                // Data + USHORT Size; // Size of the block to check 
- } While;                    + } While;  
-This bytecode starts While loop.++|  08-02-2024 Newly Added  |                         +This bytecode begins while-loop that continues as long as the specified condition is true.++|  08-02-2024 Newly Added  | 
-|{10}  Ewhile  |  02  |++10 ??++|\\                         +|{10}  Ewhile  |  02  |++10 ID++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x10 + UCHAR Opcode; // 0x10 
- UCHAR data1                // Data + UCHAR LoopId; // ID of the while-loop to end 
- } Ewhile;                    + } Ewhile;  
-This bytecode ends a While loop.++|  08-02-2024 Newly Added  |                         +This bytecode ends the specified while-loop.++|  08-02-2024 Newly Added  | 
-|{11}  Do  |  04  |++11 00 ?? ??++|\\                         +|{11}  Do  |  04  |++11 00 SI ZE++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x11 + UCHAR Opcode; // 0x11 
- UCHAR zAlign;                // 00 + UCHAR zAlign; // Always Zero (Alignment byte) 
- SHORT data2                // Data + USHORT Size; // Size of the block to check 
- } Do;                    + } Do;  
-This bytecode starts Do loop.++|  08-02-2024 Newly Added  |                         +This bytecode begins do-while loop that executes the loop body once before checking the condition.++|  08-02-2024 Newly Added  | 
-|{12}  Edwhile  |  02  |++12 ??++|\\                         +|{12}  Edwhile  |  02  |++12 ID++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x12 + UCHAR Opcode; // 0x12 
- UCHAR data1                // Data + UCHAR LoopId; // ID of the do-while loop to end 
- } Edwhile;                    + } Edwhile;  
-This bytecode ends a Do-While loop.++|  08-02-2024 Newly Added  |                         +This bytecode ends the specified do-while loop.++|  08-02-2024 Newly Added  | 
-|{13}  Switch  |  04  |++13 ?? ?? ??++|\\                         +|{13}  Switch  |  04  |++13 ID SI ZE++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x13 + UCHAR Opcode; // 0x13 
- UCHAR data1                // Data + UCHAR SwitchId; // ID of the switch variable 
- USHORT data2               // Data + USHORT Size; // Size of the block to check 
- } Switch;                    + } Switch;  
-This bytecode starts Switch statement.++|  08-02-2024 Newly Added  |                         +This bytecode begins switch-case block with the specified switch variable and default size.++|  08-02-2024 Newly Added  | 
-|{14}  Case  |  06  |++14 ?? ?? ?? ?? ??++|\\                         +|{14}  Case  |  06  |++14 00 SI ZE VA LU++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x14 + UCHAR Opcode; // 0x14 
- UCHAR data1                // Data + UCHAR zAlign; // Always Zero (Alignment byte) 
- USHORT data2               // Data + USHORT Size; // Size of the block to check 
- } Case;                    + USHORT CaseValue; // Value to compare with the switch variable 
-This bytecode defines a Case in Switch statement.++|  08-02-2024 Newly Added  |                         + } Case;  
-|{15}  Default  |  02  |++15 00++|\\                         +This bytecode defines a case within switch-case block.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{15}  Default  |  02  |++15 00++|\\  
- UCHAR Opcode;                // 0x15 + typedef struct {   
- UCHAR zAlign;                // 00 + UCHAR Opcode; // 0x15 
- } Default;                    + UCHAR zAlign; // Always Zero (Alignment byte) 
-This bytecode defines the Default case in a Switch statement.++|  08-02-2024 Newly Added  |                         + } Default;  
-|{16}  Eswitch  |  02  |++16 00++|\\                         +This bytecode marks the default case in a switch-case block.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{16}  Eswitch  |  02  |++16 00++|\\  
- UCHAR Opcode;                // 0x16 + typedef struct {   
- UCHAR zAlign;                // 00 + UCHAR Opcode; // 0x16 
- } Eswitch;                    + UCHAR zAlign; // Always Zero (Alignment byte) 
-This bytecode ends a Switch statement.++|  08-02-2024 Newly Added  |                         + } Eswitch;  
-|{17}  Goto  |  06  |++17 ?? ?? ?? ?? ??++|\\                         +This bytecode ends the switch-case block.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{17}  Goto  |  06  |++17 ?? ?? ?? ?? ?? ??++|\\ 
- UCHAR Opcode;                // 0x17 + typedef struct {   
- UCHAR data1                // Data + UCHAR Opcode;       // 0x17 
- UCHAR data2                // Data + UCHAR Ifel_ctr    // Always 0xFF (or 0x01 on specific cases) 
- UCHAR zAlign;                // Alignment byte + UCHAR Loop_ctr    // Always 0xFF (or 0x00 on specific cases) 
- SHORT data4                // Data + UCHAR zAlign;       // Always 0x00 
- } Goto;                    + SHORT Offset      // Relative Pointer, always references the same script 
-This bytecode performs a Goto operation.++|  08-02-2024 Newly Added  |                         + } Goto;  
-|{18}  Gosub  |  02  |++18 ??++|\\                         +This bytecode jumps to the specified offset within the script.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{18}  Gosub  |  02  |++18 ID++|\\  
- UCHAR Opcode;                // 0x18 + typedef struct {   
- UCHAR data1                // Data + UCHAR Opcode; // 0x18 
- } Gosub;                    + UCHAR SubroutineId; // ID of the subroutine to call 
-This bytecode performs a Gosub operation.++|  08-02-2024 Newly Added  |                         + } Gosub;  
-|{19}  Return  |  02  |++19 ??++|\\                         +This bytecode calls the specified subroutine.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{19}  Return  |  02  |++19 00++|\\  
- UCHAR Opcode;                // 0x19 + typedef struct {   
- UCHAR data[3]              // Data + UCHAR Opcode; // 0x19 
- } Return;                    + UCHAR zAlign; // Always Zero (Alignment byte) 
-This bytecode returns from subroutine.++|  08-02-2024 Newly Added  |                         + } Return;  
-|{1A}  Break  |  02  |++1A ??++|\\                         +This bytecode returns from the specified subroutine.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{1A}  Break  |  02  |++1A 00++|\\  
- UCHAR Opcode;                // 0x1A + typedef struct {   
- CHAR data1                 // Data + UCHAR Opcode; // 0x1A 
- } Break;                    + UCHAR zAlign; // Always Zero (Alignment byte) 
-This bytecode breaks out of loop.++|  08-02-2024 Newly Added  |                         + } Break;  
-|{1B}  For2  |  06  |++1B 00 ?? ?? 00 ??++|\\                         +This bytecode breaks out of the specified loop.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{1B}  For2  |  06  |++1B 00 XX XX 00 XX XX++|\\  
- UCHAR Opcode;                // 0x1B + typedef struct {   
- UCHAR zAlign0              // 00 + UCHAR Opcode; // 0x1B 
- SHORT data2                // Data + UCHAR zAlign; // Always Zero (Alignment byte) 
- UCHAR zAlign1              // 00 + SHORT StartValue; // Start value of the loop counter 
- UCHAR data5                // Data + UCHAR zAlign2; // Always Zero (Alignment byte) 
- } For2;                    + SHORT EndValue; // End value of the loop counter 
-This bytecode starts secondary For loop.++|  08-02-2024 Newly Added  |                         + } For2;  
-|{1C}  Break_point  |  01  |++1C++|\\                         +This bytecode begins for-loop with the specified start and end values.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{1C}  Break_point  |  01  |++1C++|\\  
- UCHAR Opcode;                // 0x1C + typedef struct {   
- } Break_point;                    + UCHAR Opcode; // 0x1C 
-This bytecode sets a breakpoint.++|  08-02-2024 Newly Added  |                         + } Break_point;  
-|{1D}  Work_copy  |  04  |++1D ?? ?? ??++|\\                         +This bytecode sets a breakpoint for debugging purposes.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{1D}  Work_copy  |  04  |++1D ?? ID ??++|\\  
- UCHAR Opcode;                // 0x1D + typedef struct {   
- UCHAR Source;                // Source + UCHAR Opcode; // 0x1D 
- UCHAR Destination          // Destination + UCHAR Source; // Source index 
- UCHAR Typecast;              // Typecast + UCHAR DestinationId; // Destination index 
- } Work_copy;                    + UCHAR Typecast; // Typecast operation 
-This bytecode copies work data.++|  08-02-2024 Newly Added  |                         + } Work_copy;  
-|{1E}  Nop1E   01  |++1E++|\\                         +This bytecode copies a value from the source index to the destination index with an optional typecast.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{1E}  Nop   01  |++1E++|\\  
- UCHAR Opcode;                // 0x1E + typedef struct {   
-Nop1E                   + UCHAR Opcode; // 0x1E 
-This bytecode is used for alignment of 1 byte opcodes and ending ElseIf blocks.++|  08-02-2024 Newly Added  |                         +Nop;  
-|{1F}  Nop1F   01  |++1F++|\\                         +This bytecode is used for alignment of 1-byte opcodes and ending ElseIf blocks.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{1F}  Nop   01  |++1F++|\\  
- UCHAR Opcode;                // 0x1F + typedef struct {   
-Nop1F                   + UCHAR Opcode; // 0x1F 
-This bytecode is used for alignment of 1 byte opcodes and ending ElseIf blocks.++|  08-02-2024 Newly Added  |                         +Nop;  
-|{20}  Nop  |  01  |++20++|\\                         +This bytecode is used for alignment of 1-byte opcodes and ending ElseIf blocks.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{20}  Nop  |  01  |++20++|\\  
- UCHAR Opcode;                // 0x20 + typedef struct {   
- } Nop;                    + UCHAR Opcode; // 0x20 
-This bytecode is used for alignment of 1 byte opcodes and ending ElseIf blocks.++|  08-02-2024 Newly Added  |                         + } Nop;  
-|{21}  Ck  |  04  |++21 ?? ?? ??++|\\                         +This bytecode is used for alignment of 1-byte opcodes and ending ElseIf blocks.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{21}  Ck  |  04  |++21 ?? ID ??++|\\  
- UCHAR Opcode;                // 0x21 + typedef struct {   
- UCHAR Flag;                  // System_flg, etc + UCHAR Opcode; // 0x21 
- UCHAR Id;                    // Bit + UCHAR Flag; // System flag to check 
- UCHAR OnOff;                 // On/Off + UCHAR Id; // Bit ID to check 
- } Ck;                    + UCHAR OnOff; // On/Off state to check 
-This bytecode checks flag.++|  08-02-2024 Newly Added  |                         + } Ck;  
-|{22}  Set  |  04  |++22 ?? ?? ??++|\\                         +This bytecode checks the specified system flag and bit ID for the given On/Off state.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{22}  Set  |  04  |++22 ?? ID ??++|\\  
- UCHAR Opcode;                // 0x22 + typedef struct {   
- UCHAR Flag;                  // System_flg, etc + UCHAR Opcode; // 0x22 
- UCHAR Id;                    // Bit + UCHAR Flag; // System flag to set 
- UCHAR OnOff;                 // On/Off + UCHAR Id; // Bit ID to set 
- } Set;                    + UCHAR OnOff; // On/Off state to set 
-This bytecode sets flag.++|  08-02-2024 Newly Added  |                         + } Set;  
-|{23}  Cmp  |  06  |++23 ?? ?? ?? ?? ??++|\\                         +This bytecode sets the specified system flag and bit ID to the given On/Off state.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{23}  Cmp  |  06  |++23 00 ID ?? VA LU++|\\ 
- UCHAR Opcode;                // 0x23 + typedef struct {   
- UCHAR Flag                 // Flag + UCHAR Opcode;       // 0x23 
- UCHAR Operator             // Operator + UCHAR zAlign      // Always 0x00 
- SHORT Value;                 // Value + UCHAR MemberId    // Id of the member to compare 
- } Cmp;                    + UCHAR Operator;      // Type of comparison 
-This bytecode compares values.++|  08-02-2024 Newly Added  |                         + SHORT Value;       // Value to compare the member to 
-|{24}  Save  |  04  |++24 ?? ?? ??++|\\                         + } Cmp;  
- typedef struct {         // Ptr // Description          +This bytecode compares the specified system flag with the given value using the provided comparison operator.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode;                // 0x24 +|{24}  Save  |  04  |++24 ID XX XX++|\\  
- UCHAR Destination;           // Destination + typedef struct {   
- SHORT Source;                // Source + UCHAR Opcode; // 0x24 
- } Save;                    + UCHAR Destination; // Destination index 
-This bytecode saves data.++|  08-02-2024 Newly Added  | + SHORT Source; // Source value 
-|{25}  Work_copy_2   03  |++25 ?? ??++|\\                         + } Save;  
- typedef struct {         // Ptr // Description          +This bytecode saves the specified source value to the destination index.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode;                // 0x25 +|{25}  Copy   03  |++25 ID ??++|\\  
- UCHAR Data1                // Data + typedef struct {   
- UCHAR Data2                // Data + UCHAR Opcode; // 0x25 
-Work_copy_2                   + UCHAR Destination; // Destination index 
-This bytecode copies work data with two parameters.++|  08-02-2024 Newly Added  |                         + UCHAR Source; // Source index 
-|{26}  Calc  |  06  |++26 ?? ?? ?? ?? ??++|\\                         +Copy;  
- typedef struct {         // Ptr // Description          +This bytecode copies the value from the source index to the destination index.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode;                // 0x26 +|{26}  Calc  |  06  |++26 00 ?? ?? VA LU++|\\  
- UCHAR Data1                // Data + typedef struct {   
- UCHAR Data2                // Data + UCHAR Opcode; // 0x26 
- SHORT Data3                // Data + UCHAR zAlign; // Always Zero (Alignment byte) 
- } Calc;                    + UCHAR Operator; // Arithmetic operation to perform 
-This bytecode performs a calculation.++|  08-02-2024 Newly Added  |                         + UCHAR Flag; // Memory Location to apply math to 
-|{27}  Calc2  |  04  |++27 ?? ?? ??++|\\                         + SHORT Value; // Amount used in operation 
- typedef struct {         // Ptr // Description          + } Calc;  
- UCHAR Opcode;                // 0x27 +This bytecode performs the specified arithmetic operation on the operands and stores the result.++|  08-02-2024 Newly Added  | 
- UCHAR Data1                // Data +|{27}  Calc2  |  04  |++27 ?? ?? ??++|\\ 
- UCHAR Data2                // Data + typedef struct {   
- UCHAR Data3                // Data + UCHAR Opcode;        // 0x27 
- } Calc2;                    + UCHAR Operator    // Type of operation 
-This bytecode performs a secondary calculation.++|  08-02-2024 Newly Added  |                         + UCHAR Flag        // F_atari, etc 
-|{28}  Sce_rnd  |  01  |++28++|\\                         + UCHAR Value        // Value to use in the operation 
- typedef struct {         // Ptr // Description          + } Calc2;  
- UCHAR Opcode;                // 0x28 +This bytecode performs the specified arithmetic operation on the two operands and stores the result.++|  08-02-2024 Newly Added  | 
- } Sce_rnd;                    +|{28}  Sce_rnd  |  01  |++28++|\\  
-This bytecode generates a random scenario.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{29}  Cut_chg  |  02  |++29 ??++|\\                         + UCHAR Opcode; // 0x28 
- typedef struct {         // Ptr // Description          + } Sce_rnd;  
- UCHAR Opcode;                // 0x29 +This bytecode generates a random value.++|  08-02-2024 Newly Added  |  
- UCHAR Data1                // Data +|{29}  Cut_chg  |  02  |++29 ID++|\\  
- } Cut_chg;                    + typedef struct {   
-This bytecode changes the cutscene.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x29 
-|{2A}  Cut_old  |  01  |++2A++|\\                         + UCHAR CutId; // ID of the cutscene 
- typedef struct {         // Ptr // Description          + } Cut_chg;  
- UCHAR Opcode;                // 0x2A +This bytecode changes the current camera to the specified camera ID.++|  08-02-2024 Newly Added  | 
- } Cut_old;                    +|{2A}  Cut_old  |  01  |++2A++|\\  
-This bytecode refers to an old cutscene.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{2B}  Message_on  |  06  |++2B ?? ?? ?? ?? ??++|\\                         + UCHAR Opcode; // 0x2A 
- typedef struct {         // Ptr // Description          + } Cut_old;  
- UCHAR Opcode;                // 0x2B +This bytecode reverts to the previous camera.++|  08-02-2024 Newly Added  | 
- UCHAR Data1                // Data +|{2B}  Message_on  |  06  |++2B 00 ?? ?? SI ZE++|\\  
- UCHAR Data2                // Data + typedef struct {   
- UCHAR Data3                // Data + UCHAR Opcode; // 0x2B 
- UCHAR Data4                // Data + UCHAR zAlign; // Always Zero (Alignment byte) 
- } Message_on;                    + UCHAR Type; // Message type 
-This bytecode displays message on screen.++|  08-02-2024 Newly Added  |                         + UCHAR MessageId; // ID of the message to display 
-|{2C}  Aot_set  |  20  |++2C ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + USHORT DisplayTime; // Time to display the message 
- typedef struct {         // Ptr // Description          + } Message_on;  
- UCHAR Opcode               // 0x2C +This bytecode displays the specified message.++|  08-02-2024 Newly Added  | 
- UCHAR Data1[19]            // Data +|{2C}  Aot_set  |  20  |++2C ID ?? ?? ?? ?? XX XX ZZ ZZ SI ZE SI ZE ?? ?? ?? ?? ?? ??++|\\  
- } Aot_set;                    + typedef struct {   
-This bytecode sets an AOT (Active Object Table) entry.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x2C 
-|{2D}  Obj_model_set  |  38  |++2D ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + CHAR Aot; // Aot 
- typedef struct {         // Ptr // Description          + UCHAR SCE; // Id 
- UCHAR Opcode               // 0x2D + UCHAR SAT; // Type 
- UCHAR Data1[37];             // Data + UCHAR nFloor; // nFloor 
- } Obj_model_set;                    + UCHAR Super; // Super 
-This bytecode sets an object model.++|  08-02-2024 Newly Added  |                         + SHORT X; // Position 
-|{2E}  Work_set  |  03  |++2E ?? ??++|\\                         + SHORT Z; // Position 
- typedef struct {         // Ptr // Description          + USHORT W; // Size 
- UCHAR Opcode;                // 0x2E + USHORT D; // Size 
- UCHAR Data1                // Data + USHORT Data0; // Sce_Message / Flag Type / Always 0x00FF 
- UCHAR Data2                // Data + USHORT Data1; // Sce_Message / Flag Id / Script Id Init & Complete 
- } Work_set;                    + USHORT Data2; // Always 0xFFFF 
-This bytecode sets work data.++|  08-02-2024 Newly Added  |                         + } Aot_set; 
-|{2F}  Speed_set  |  04  |++2F ?? ?? ??++|\\                         +This bytecode sets the properties of the specified AOT.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{2D}  Obj_model_set  |  38  |++2D ?? ID ?? ?? ?? ?? ?? ?? TI PE BE FL XX XX YY YY ZZ ZZ DX DX DY DY DZ DZ XX XX YY YY ZZ ZZ XX XX YY YY ZZ ZZ++|\\  
- UCHAR Opcode;                // 0x2F + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x2D 
- UCHAR Data2;                 // Data + UCHAR MD1; // MD1 File Id 
- UCHAR Data3                // Data + UCHAR Id; // Global->Ob_model[].Id 
- } Speed_set;                    + UCHAR Ccol_old; // CC_WORK structure 
-This bytecode sets the speed.++|  08-02-2024 Newly Added  |                         + UCHAR Ccol_no; // CC_WORK structure 
-|{30}  Add_speed  |  01  |++30++|\\                         + UCHAR Ctex_old; // CC_WORK structure 
- typedef struct {         // Ptr // Description          + UCHAR nFloor; //  
- UCHAR Opcode;                // 0x30 + UCHAR Super; //  
- } Add_speed;                    + USHORT Type; // Global->Ob_model[].Type 
-This bytecode adds speed.++|  08-02-2024 Newly Added  |                         + USHORT BeFlag; // Global->Ob_model[].Be_flg 
-|{31}  Add_aspeed  |  01  |++31++|\\                         + SHORT Attribute; // Global->Ob_model[].Attribute 
- typedef struct {         // Ptr // Description          + SHORT X; //  
- UCHAR Opcode;                // 0x31 + SHORT Y; //  
- } Add_aspeed;                    + SHORT Z; //  
-This bytecode adds angular speed.++|  08-02-2024 Newly Added  |                         + SHORT DirX; //  
-|{32}  Pos_set  |  08  |++32 ?? ?? ?? ?? ?? ?? ??++|\\                         + SHORT DirY; //  
- typedef struct {         // Ptr // Description          + SHORT DirZ; //  
- UCHAR Opcode;                // 0x32 + SHORT AtariOffsetX; //  
- UCHAR Data1                // Data + SHORT AtariOffsetY; //  
- UCHAR Data2                // Data + SHORT AtariOffsetZ; //  
- UCHAR Data3                // Data + SHORT AtariSizeX; //  
- UCHAR Data4;                 // Data + SHORT AtariSizeY; //  
- UCHAR Data5                // Data + SHORT AtariSizeZ; //  
- UCHAR Data6;                 // Data + } Obj_model_set;  
- } Pos_set;                    +This bytecode sets the properties of the specified object model.++|  08-02-2024 Newly Added  | 
-This bytecode sets the position.++|  08-02-2024 Newly Added  |                         +|{2E}  Work_set  |  03  |++2E ?? ID++|\\  
-|{33}  Dir_set  |  08  |++33 ?? ?? ?? ?? ?? ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x2E 
- UCHAR Opcode;                // 0x33 + UCHAR Type; // Type of Work Set to Select 
- UCHAR Data1                // Data + UCHAR EntityId; // ID of Entity to select 
- UCHAR Data2;                 // Data + } Work_set;  
- UCHAR Data3                // Data +This bytecode sets the properties of the specified work (task).++|  08-02-2024 Newly Added  | 
- UCHAR Data4;                 // Data +|{2F}  Speed_set  |  04  |++2F ID ?? 00++|\\  
- UCHAR Data5                // Data + typedef struct {   
- UCHAR Data6                // Data + UCHAR Opcode; // 0x2F 
- } Dir_set;                    + UCHAR SpeedId; // ID of the speed setting 
-This bytecode sets the direction.++|  08-02-2024 Newly Added  |                         + USHORT SpeedValue; // Value of the speed setting 
-|{34}  Member_set  |  04  |++34 ?? ?? ??++|\\                         + } Speed_set;  
- typedef struct {         // Ptr // Description          +This bytecode sets the specified speed setting.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode;                // 0x34 +|{30}  Add_speed  |  01  |++30++|\\  
- UCHAR Data1                // Data + typedef struct {   
- UCHAR Data2                // Data + UCHAR Opcode; // 0x30 
- UCHAR Data3;                 // Data + } Add_speed;  
- } Member_set;                    +This bytecode increments the speed setting.++|  08-02-2024 Newly Added  | 
-This bytecode sets member.++|  08-02-2024 Newly Added  |                         +|{31}  Add_aspeed  |  01  |++31++|\\  
-|{35}  Member_set2  |  03  |++35 ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x31 
- UCHAR Opcode;                // 0x35 + } Add_aspeed;  
- UCHAR Data1                // Data +This bytecode increments the angular speed setting.++|  08-02-2024 Newly Added  | 
- UCHAR Data2                // Data +|{32}  Pos_set  |  08  |++32 00 XX XX YY YY ZZ ZZ++|\\  
- } Member_set2;                    + typedef struct {   
-This bytecode sets a secondary member.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x32 
-|{36}  Se_on  |  12  |++36 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + UCHAR zAlign; // Always Zero (Alignment byte) 
- typedef struct {         // Ptr // Description          + SHORT PosX; // X position 
- UCHAR Opcode;                // 0x36 + SHORT PosY; // Y position 
- UCHAR Data1[11]            // Data + SHORT PosZ; // Z position 
- } Se_on;                    + } Pos_set;  
-This bytecode turns on the SE (Sound Effect).++|  08-02-2024 Newly Added  |                         +This bytecode sets the position in 3D space.++|  08-02-2024 Newly Added  | 
-|{37}  Sca_id_set  |  04  |++37 ?? ?? ??++|\\                         +|{33}  Dir_set  |  08  |++33 00 DX DX DY DY DZ DZ++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x37 + UCHAR Opcode; // 0x33 
- UCHAR Data1                // Data + UCHAR zAlign; // Always Zero (Alignment byte) 
- UCHAR Data2;                 // Data + SHORT DirX; // X direction 
- UCHAR Data3                // Data + SHORT DirY; // Y direction 
- } Sca_id_set;                    + SHORT DirZ; // Z direction 
-This bytecode sets the Sca ID.++|  08-02-2024 Newly Added  |                         + } Dir_set;  
-|{38}  Flr_set  |  03  |++38 ?? ??++|\\                         +This bytecode sets the direction in 3D space.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{34}  Member_set  |  04  |++34 ?? ?? ??++|\\  
- UCHAR Opcode;                // 0x38 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x34 
- UCHAR Data2                // Data + UCHAR Destination; // Destination 
- } Flr_set;                    + SHORT Source; // Source 
-This bytecode sets the floor.++|  08-02-2024 Newly Added  |                         + } Member_set;  
-|{39}  Dir_ck  |  08  |++39 ?? ?? ?? ?? ?? ?? ??++|\\                         +This bytecode sets the properties of the specified member.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{35}  Member_set2  |  03  |++35 ?? ?? ??++|\\  
- UCHAR Opcode;                // 0x39 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x35 
- UCHAR Data2;                 // Data + UCHAR Destination; // Destination 
- UCHAR Data3                // Data + UCHAR Source; // Source 
- UCHAR Data4                // Data + } Member_set2;  
- UCHAR Data5                // Data +This bytecode sets a single property of the specified member.++|  08-02-2024 Newly Added  | 
- UCHAR Data6;                 // Data +|{36}  Se_on  |  12  |++36 ?? ?? ?? ?? XX XX YY YY ZZ ZZ++|\\  
- } Dir_ck;                    + typedef struct {   
-This bytecode checks the direction.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x36 
-|{3A}  Sce_espr_on  |  16  |++3A ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + UCHAR VAB; // VAB Bank Id 
- typedef struct {         // Ptr // Description          + SHORT EDT; // EDT Sample Id 
- UCHAR Opcode;                // 0x3A + SHORT data0; // Sound Reverberation, Work Aot/Obj No 
- UCHAR Data1[15]            // Data + SHORT X; // Position 
- } Sce_espr_on;                    + SHORT Y; 
-This bytecode turns on the SCE ESPR.++|  08-02-2024 Newly Added  |                         + SHORT Z; 
-|{3B}  Door_aot_set  |  32  |++3B ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + } Se_on;  
- typedef struct {         // Ptr // Description          +This bytecode plays the specified sound effect with the given parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode               // 0x3B +|{37}  Sca_id_set  |  04  |++37 ?? ?? ??++|\\  
- UCHAR Data1[31]            // Data + typedef struct {   
- } Door_aot_set;                    + UCHAR Opcode; // 0x37 
-This bytecode sets door AOT entry.++|  08-02-2024 Newly Added  |                         + UCHAR iEntry; // SCA Collision Entry 
-|{3C}  Cut_auto  |  02  |++3C ??++|\\                         + USHORT Id; // New Collision ID 
- typedef struct {         // Ptr // Description          + } Sca_id_set;  
- UCHAR Opcode;                // 0x3C +This bytecode sets the specified scale ID to the given value.++|  08-02-2024 Newly Added  | 
- UCHAR Data1                // Data +|{38}  Flr_set  |  03  |++38 ID ??++|\\  
- } Cut_auto;                    + typedef struct {   
-This bytecode performs an automatic cut.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x38 
-|{3D}  Member_copy  |  03  |++3D ?? ??++|\\                         + UCHAR Id
- typedef struct {         // Ptr // Description          + UCHAR Flag
- UCHAR Opcode;                // 0x3D + } Flr_set;  
- UCHAR Data1                // Data +This bytecode sets the specified floor ID to the given value.++|  08-02-2024 Newly Added  | 
- UCHAR Data2                // Data +|{39}  Dir_ck  |  08  |++39 00 XX XX ZZ ZZ ?? ??++|\\  
- } Member_copy;                    + typedef struct {   
-This bytecode copies member.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x39 
-|{3E}  Member_cmp  |  06  |++3E ?? ?? ?? ?? ??++|\\                         + UCHAR zAlign; // 0x00 
- typedef struct {         // Ptr // Description          + SHORT X
- UCHAR Opcode;                // 0x3E + SHORT Z
- UCHAR Data1                // Data + SHORT Add
- UCHAR Data2                // Data + } Dir_ck;  
- USHORT Data3               // Data +This bytecode checks the specified direction coordinates.++|  08-02-2024 Newly Added  | 
- } Member_cmp;                    +|{3A}  Sce_espr_on  |  16  |++3A 00 ?? ?? ?? ?? ?? ?? XX XX YY YY ZZ ZZ DY DY++|\\  
-This bytecode compares member.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{3F}  Plc_motion  |  04  |++3F ?? ?? ??++|\\                         + UCHAR Opcode; // 0x3A 
- typedef struct {         // Ptr // Description          + UCHAR zAlign; // 0x00 
- UCHAR Opcode;                // 0x3F + USHORT data0; 
- UCHAR Data1                // Data + USHORT data1; 
- UCHAR Data2                // Data + USHORT data2; 
- UCHAR Data3                // Data + SHORT X; 
- } Plc_motion;                    + SHORT Y; 
-This bytecode sets the motion for PLC.++|  08-02-2024 Newly Added  |                         + SHORT Z; 
-|{40}  Plc_dest  |  08  |++40 ?? ?? ?? ?? ?? ?? ??++|\\                         + SHORT DirY; 
- typedef struct {         // Ptr // Description          + } Sce_espr_on;  
- UCHAR Opcode;                // 0x40 +This bytecode turns on the specified espr with the given parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data1                // Data +|{3B}  Door_aot_set  |  32  |++3B ID ?? ?? ?? ?? ?? XX XX ZZ ZZ SI ZE SI ZE XX XX YY YY ZZ ZZ 00 ?? ?? ?? ?? ++|\\  
- UCHAR Data2                // Data + typedef struct {   
- UCHAR Data3                // Data + UCHAR Opcode; // 0x3B 
- UCHAR Data4                // Data + UCHAR Aot; // Aot 
- UCHAR Data5                // Data + UCHAR SCE; // Id /* tagSCE_AOT 
- UCHAR Data6;                 // Data + UCHAR SAT; // Type 
- } Plc_dest;                    + UCHAR nFloor; // nFloor 
-This bytecode sets the destination for PLC.++|  08-02-2024 Newly Added  |                         + UCHAR Super; // Super 
-|{41}  Plc_neck  |  10  |++41 ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + SHORT X; // Position 
- typedef struct {         // Ptr // Description          + SHORT Z; // Position 
- UCHAR Opcode;                // 0x41 + USHORT W; // Size 
- UCHAR Data1                // Data + USHORT D; // Size */ tagSCE_AOT 
- UCHAR Data2                // Data + SHORT Next_pos_x; // */ tagIN_DOOR_WORK 
- UCHAR Data3;                 // Data + SHORT Next_pos_y; // 
- UCHAR Data4                // Data + SHORT Next_pos_z; // 
- UCHAR Data5;                 // Data + SHORT Next_cdir_y; // 
- UCHAR Data6                // Data + UCHAR Next_stage; // 
- UCHAR Data7;                 // Data + UCHAR Next_room; // 
- UCHAR Data8                // Data + UCHAR Next_cut; // 
- UCHAR Data9                // Data + UCHAR Next_nfloor; // 
- } Plc_neck;                    + UCHAR Dtex_type; // DO2 File Id 
-This bytecode sets the neck for PLC.++|  08-02-2024 Newly Added  |                         + UCHAR Door_type; // DO2 Animation Set 
-|{42}  Plc_ret  |  01  |++42++|\\                         + UCHAR Knock_type; // Sound 
- typedef struct {         // Ptr // Description          + UCHAR Key_id; //  
- UCHAR Opcode;                // 0x42 + UCHAR Key_type; //  
- } Plc_ret;                    + UCHAR Free; // */ tagIN_DOOR_WORK 
-This bytecode returns from a PLC operation.++|  08-02-2024 Newly Added  |                         + } Door_aot_set; 
-|{43}  Plc_flg  |  04  |++43 ?? ?? ??++|\\                         +This bytecode sets the specified door AOT parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{3C}  Cut_auto  |  02  |++3C ?? ++|\\  
- UCHAR Opcode;                // 0x43 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x3C 
- UCHAR Data2                // Data + UCHAR OnOff; // 00 OFF, 01 ON 
- UCHAR Data3                // Data + } Cut_auto;  
- } Plc_flg;                    +This bytecode sets the specified auto cutscene parameters.++|  08-02-2024 Newly Added  | 
-This bytecode sets flag for PLC.++|  08-02-2024 Newly Added  |                         +|{3D}  Member_copy  |  03  |++3D ?? ?? ++|\\  
-|{44}  Sce_em_set  |  22  |++44 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x3D 
- UCHAR Opcode               // 0x44 + UCHAR Destination; // Destination 
- UCHAR Data1[21]            // Data + UCHAR Source; // Source 
- } Sce_em_set;                    + } Member_copy;  
-This bytecode sets the scenario for EM.++|  08-02-2024 Newly Added  |                         +This bytecode copies the specified member parameters from the source to the destination.++|  08-02-2024 Newly Added  | 
-|{45}  Col_chg_set  |  05  |++45 ?? ?? ?? ??++|\\                         +|{3E}  Member_cmp  |  06  |++3E 00 ?? ?? VA LU++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x45 + UCHAR Opcode; // 0x3E 
- UCHAR Data1                // Data + UCHAR zAlign; // Always Zero (Alignment byte) 
- UCHAR Data2                // Data + UCHAR Flag; // Load_member_addr_branch() argv[1] 
- UCHAR Data3                // Data + UCHAR Operator; // Comparison operator 
- UCHAR Data4                // Data + SHORT Value; // Value to compare 
- } Col_chg_set;                    + } Member_cmp;  
-This bytecode sets the color change.++|  08-02-2024 Newly Added  |                         +This bytecode compares the specified member parameters with the given value.++|  08-02-2024 Newly Added  | 
-|{46}  Aot_reset  |  10  |++46 ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         +|{3F}  Plc_motion  |  04  |++3F ID ?? ??++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x46 + UCHAR Opcode; // 0x3F 
- UCHAR Data1                // Data + UCHAR MotionId; // EDD/EMR Id 
- UCHAR Data2                // Data + UCHAR Mode; // Mode to set the motion to 
- UCHAR Data3                // Data + UCHAR Param; // Parameter for the motion 
- UCHAR Data4                // Data + } Plc_motion;  
- UCHAR Data5;                 // Data +This bytecode sets the specified motion parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data6                // Data +|{40}  Plc_dest  |  08  |++40 00 ?? ?? XX XX ZZ ZZ++|\\  
- UCHAR Data7;                 // Data + typedef struct {   
- UCHAR Data8                // Data + UCHAR Opcode; // 0x40 
- UCHAR Data9;                 // Data + UCHAR zAlign; // 0x00 
- } Aot_reset;                    + UCHAR Animation; // EDD/EMR Id 
-This bytecode resets the AOT.++|  08-02-2024 Newly Added  |                         + UCHAR Bit; // Room_flg 
-|{47}  Aot_on  |  02  |++47 ??++|\\                         + SHORT X; // Destination 
- typedef struct {         // Ptr // Description          + SHORT Z; // Destination 
- UCHAR Opcode;                // 0x47 + } Plc_dest;  
- UCHAR Data1                // Data +This bytecode sets the specified destination parameters.++|  08-02-2024 Newly Added  | 
- } Aot_on;                    +|{41}  Plc_neck  |  10  |++41 ?? XX XX YY YY ZZ ZZ ?? ?? ++|\\  
-This bytecode turns on the AOT.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{48}  Super_set  |  16  |++48 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + UCHAR Opcode; // 0x41 
- typedef struct {         // Ptr // Description          + UCHAR Op; // 
- UCHAR Opcode               // 0x48 + SHORT X; // 
- UCHAR Data1[15]            // Data + SHORT Y; // 
- } Super_set;                    + SHORT Z; // 
-This bytecode sets super parameter.++|  08-02-2024 Newly Added  |                         + UCHAR SpeedX; // 
-|{49}  Super_reset  |  08  |++49 ?? ?? ?? ?? ?? ?? ??++|\\                         + UCHAR SpeedZ; // 
- typedef struct {         // Ptr // Description          + } Plc_neck;  
- UCHAR Opcode;                // 0x49 +This bytecode sets the specified neck parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data1[7]             // Data +|{42}  Plc_ret  |  01  |++42++|\\  
- } Super_reset;                    + typedef struct {   
-This bytecode resets super parameter.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x42 
-|{4A}  Plc_gun  |  02  |++4A ??++|\\                         + } Plc_ret;  
- typedef struct {         // Ptr // Description          +This bytecode returns from the specified plc function.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode;                // 0x4A +|{43}  Plc_flg  |  04  |++43 00 ?? ??++|\\  
- UCHAR Data1                // Data + typedef struct {   
- } Plc_gun;                    + UCHAR Opcode; // 0x43 
-This bytecode sets the PLC gun.++|  08-02-2024 Newly Added  |                         + UCHAR zAlign; // 0x00 
-|{4B}  Cut_replace  |  03  |++4B ?? ??++|\\                         + UCHAR data0; //  
- typedef struct {         // Ptr // Description          + UCHAR data1; //  
- UCHAR Opcode;                // 0x4B + } Plc_flg; 
- UCHAR Data1                // Data +This bytecode sets the specified flag parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data2                // Data +|{44}  Sce_em_set  |  22  |++44 00 ?? ID ?? ?? ?? ?? ?? XX XX YY YY ZZ ZZ DY DY ?? ?? ++|\\  
- } Cut_replace;                    + typedef struct {   
-This bytecode replaces cutscene.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x44 
-|{4C}  Sce_espr_kill  |  05  |++4C ?? ?? ?? ??++|\\                         + UCHAR Nop; // 0x00 
- typedef struct {         // Ptr // Description          + CHAR Em_no; // Em_no 
- UCHAR Opcode;                // 0x4C + UCHAR Id; // EMD File Id for Em_bin_load() function 
- UCHAR Data1                // Data + USHORT Type; // Type 
- UCHAR Data2                // Data + UCHAR nFloor; // nFloor 
- UCHAR Data3                // Data + UCHAR Sound_flg; // Sound_flg 
- UCHAR Data4                // Data + UCHAR Model_type; // Model_type 
- } Sce_espr_kill;                    + UCHAR Em_set_flg; // Em_set_flg 
-This bytecode kills the SCE ESPR.++|  08-02-2024 Newly Added  |                         + SHORT Pos_x; // Position X 
-|{4D}  Door_model_set  |  22  |++4D ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + SHORT Pos_y; // Position Y 
- typedef struct {         // Ptr // Description          + SHORT Pos_z; // Position Z 
- UCHAR Opcode               // 0x4D + SHORT Cdir_y; // Rotation Y 
- UCHAR Data1[21];             // Data + SHORT Motion; // Motion 
- } Door_model_set;                    + SHORT Ctr_flg; // Ctr_flg 
-This bytecode sets the door model.++|  08-02-2024 Newly Added  |                         + } Sce_em_set;  
-|{4E}  Item_aot_set  |  22  |++4E ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         +This bytecode sets the specified enemy parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{45}  Col_chg_set  |  05  |++45 ?? ?? ?? ??++|\\ 
- UCHAR Opcode               // 0x4E + typedef struct {   
- UCHAR Data1[21]            // Data + UCHAR Opcode; // 0x45 
- } Item_aot_set;                    + UCHAR Data0; // Data0 
-This bytecode sets an item AOT.++|  08-02-2024 Newly Added  |                         + UCHAR Data1; // Data1 
-|{4F}  Sce_key_ck  |  04  |++4F ?? ?? ??++|\\                         + UCHAR Data2; // Data2 
- typedef struct {         // Ptr // Description          + UCHAR Data3; // Data3 
- UCHAR Opcode;                // 0x4F + } Col_chg_set;  
- UCHAR Data1                // Data +This bytecode sets the specified color parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data2;                 // Data +|{46}  Aot_reset  |  10  |++46 ID ?? ?? ?? XX XX XX XX ++|\\ 
- UCHAR Data3                // Data + typedef struct {   
- } Sce_key_ck;                    + UCHAR Opcode; // 0x46 
-This bytecode checks the SCE key.++|  08-02-2024 Newly Added  |                         + CHAR Aot; // Aot 
-|{50}  Sce_trg_ck  |  04  |++50 ?? ?? ??++|\\                         + UCHAR SCE; // SCE 
- typedef struct {         // Ptr // Description          + UCHAR SAT; // SAT 
- UCHAR Opcode;                // 0x50 + SHORT Data0; // Data0 
- UCHAR Data1                // Data + SHORT Data1; // Data1 
- UCHAR Data2                // Data + SHORT Data2; // Data2 
- UCHAR Data3;                 // Data + } Aot_reset;  
- } Sce_trg_ck;                    +This bytecode resets the specified AOT parameters.++|  08-02-2024 Newly Added  | 
-This bytecode checks the SCE trigger.++|  08-02-2024 Newly Added  |                         +|{47}  Aot_on  |  02  |++47 ID++|\\ 
-|{51}  Sce_bgm_control  |  06  |++51 ?? ?? ?? ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x47 
- UCHAR Opcode;                // 0x51 + CHAR Aot; // Aot 
- UCHAR Data1                // Data + } Aot_on;  
- UCHAR Data2                // Data +This bytecode turns on the specified AOT.++|  08-02-2024 Newly Added  | 
- UCHAR Data3                // Data +|{48}  Super_set  |  16  |++48 00 ?? ID XX XX YY YY ZZ ZZ DX DX DY DY DZ DZ ++|\\ 
- USHORT Data4               // Data + typedef struct {   
- } Sce_bgm_control;                    + UCHAR Opcode; // 0x48 
-This bytecode controls the SCE BGM.++|  08-02-2024 Newly Added  |                         + UCHAR zAlign; // Alignment byte (always 0x00) 
-|{52}  Sce_espr_control  |  06  |++52 ?? ?? ?? ?? ??++|\\                         + UCHAR Work; // Work Type 
- typedef struct {         // Ptr // Description          + UCHAR Id; /Work Aot/Obj No 
- UCHAR Opcode;                // 0x52 + SHORT pX; // Parent X 
- UCHAR Data1                // Data + SHORT pY; // Parent Y 
- UCHAR Data2                // Data + SHORT pZ; // Parent Z 
- UCHAR Data3                // Data + SHORT dX; // Destination X 
- USHORT Data4               // Data + SHORT dY; // Destination Y 
- } Sce_espr_control;                    + SHORT dZ; // Destination Z 
-This bytecode controls the SCE ESPR.++|  08-02-2024 Newly Added  |                         + } Super_set;  
-|{53}  Sce_fade_set  |  06  |++53 ?? ?? ?? ?? ??++|\\                         +This bytecode sets the specified super parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{49}  Super_reset  |  08  |++49 00 DX DX DY DY DZ DZ ++|\\ 
- UCHAR Opcode;                // 0x53 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x49 
- UCHAR Data2                // Data + UCHAR zAlign; // Alignment byte (always 0x00) 
- UCHAR Data3                // Data + SHORT dX; // Destination X 
- USHORT Data4               // Data + SHORT dY; // Destination Y 
- } Sce_fade_set;                    + SHORT dZ; // Destination Z 
-This bytecode sets the SCE fade.++|  08-02-2024 Newly Added  |                         + } Super_reset;  
-|{54}  Sce_espr3d_on  |  22  |++54 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         +This bytecode resets the specified super parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{4A}  Plc_gun  |  02  |++4A ID++|\\  
- UCHAR Opcode;                // 0x54 + typedef struct {   
- UCHAR Data1[21]            // Data + UCHAR Opcode; // 0x4A 
- } Sce_espr3d_on;                    + UCHAR GunId; // ID of the gun to set 
-This bytecode turns on the SCE ESPR 3D.++|  08-02-2024 Newly Added  |                         + } Plc_gun;  
-|{55}  Member_calc  |  06  |++55 ?? ?? ?? ?? ??++|\\                         +This bytecode sets the specified gun parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{4B}  Cut_replace  |  03  |++4B ID ??++|\\ 
- UCHAR Opcode;                // 0x55 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x4B 
- UCHAR Data2;                 // Data + UCHAR Id; // Id 
- UCHAR Data3                // Data + UCHAR Value; // Value 
- USHORT Data4               // Data + } Cut_replace;  
- } Member_calc;                    +This bytecode replaces the specified cutscene parameters.++|  08-02-2024 Newly Added  | 
-This bytecode performs member calculation.++|  08-02-2024 Newly Added  |                         +|{4C}  Sce_espr_kill  |  05  |++4C ID ?? ?? ??++|\\ 
-|{56}  Member_calc2  |  04  |++56 ?? ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x4C 
- UCHAR Opcode;                // 0x56 + UCHAR id; // Esp_kill() argv[0] 
- UCHAR Data1                // Data + UCHAR tp; // Esp_kill() argv[1] 
- UCHAR Data2                // Data + CHAR WorkKind; // Get_matrix() argv[0] 
- UCHAR Data3                // Data + CHAR WorkNo; // Get_matrix() argv[1] 
- } Member_calc2;                    + } Sce_espr_kill;  
-This bytecode performs a secondary member calculation.++|  08-02-2024 Newly Added  |                         +This bytecode kills the specified espr with the given parameters.++|  08-02-2024 Newly Added  | 
-|{57}  Sce_bgmtbl_set  |  08  |++57 ?? ?? ?? ?? ?? ?? ??++|\\                         +|{4D}  Door_model_set  |  22  |++4D ?? ID ?? ?? ?? ?? XX XX YY YY ZZ ZZ DY DY ?? ?? ?? ?? ?? ?? ++|\\ 
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x57 + UCHAR Opcode; // 0x4D 
- UCHAR Data1                // Data + UCHAR data0; // data0 
- UCHAR Data2;                 // Data + UCHAR Id; // DOOR_WORK.Id 
- UCHAR Data3                // Data + UCHAR OfsY; // DOOR_WORK.Atd[3] 
- UCHAR Data4                // Data + UCHAR BeFlg; // DOOR_WORK.Be_flg 
- UCHAR Data5                // Data + UCHAR data5; // data5 
- UCHAR Data6                // Data + USHORT data6; // data6 
- } Sce_bgmtbl_set;                    + SHORT X; // DOOR_WORK.Atd[3] 
-This bytecode sets the SCE BGM table.++|  08-02-2024 Newly Added  |                         + SHORT Y; // DOOR_WORK.Atd[3] 
-|{58}  Plc_rot  |  04  |++58 ?? ?? ??++|\\                         + SHORT Z; // DOOR_WORK.Atd[3] 
- typedef struct {         // Ptr // Description          + SHORT DirY; // DOOR_WORK.Atd[3] 
- UCHAR Opcode;                // 0x58 + USHORT data10; // DOOR_WORK.MATRIX 
- UCHAR Data1                // Data + USHORT data11; // DOOR_WORK.MATRIX 
- UCHAR Data2;                 // Data + USHORT data12; // DOOR_WORK.MATRIX 
- UCHAR Data3                // Data + } Door_model_set;  
- } Plc_rot;                    +This bytecode sets the specified door model parameters.++|  08-02-2024 Newly Added  | 
-This bytecode rotates the PLC.++|  08-02-2024 Newly Added  |                         +|{4E}  Item_aot_set  |  22  |++4E ID ?? ?? ?? ?? ?? XX XX ZZ ZZ SI ZE SI ZE ?? ?? ?? ?? ?? ?? ?? ?? ++|\\ 
-|{59}  Xa_on  |  04  |++59 ?? ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x4E 
- UCHAR Opcode;                // 0x59 + UCHAR Aot; // Aot 
- UCHAR Data1                // Data + UCHAR SCE; // SCE 
- UCHAR Data2                // Data + UCHAR SAT; // SAT 
- UCHAR Data3;                 // Data + UCHAR nFloor; // nFloor 
- } Xa_on;                    + UCHAR Super; // Super 
-This bytecode turns on the XA sound.++|  08-02-2024 Newly Added  |                         + SHORT X; // X 
-|{5A}  Weapon_chg  |  02  |++5A ??++|\\                         + SHORT Z; // Z 
- typedef struct {         // Ptr // Description          + USHORT W; // W 
- UCHAR Opcode;                // 0x5A + USHORT D; // D 
- UCHAR Data1                // Data + USHORT iItem; // iItem 
- } Weapon_chg;                    + USHORT nItem; // nItem 
-This bytecode changes the weapon.++|  08-02-2024 Newly Added  |                         + USHORT Flag; // Flag 
-|{5B}  Plc_cnt  |  02  |++5B ??++|\\                         + UCHAR MD1; // MD1 
- typedef struct {         // Ptr // Description          + UCHAR Action; // Action 
- UCHAR Opcode;                // 0x5B + } Item_aot_set;  
- UCHAR Data1                // Data +This bytecode sets the specified item AOT parameters.++|  08-02-2024 Newly Added  | 
- } Plc_cnt;                    +|{4F}  Sce_key_ck  |  04  |++4F ?? VA LU ++|\\ 
-This bytecode counts the PLC.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{5C}  Sce_shake_on  |  03  |++5C ?? ??++|\\                         + UCHAR Opcode; // 0x4F 
- typedef struct {         // Ptr // Description          + UCHAR Flag; // Flag 
- UCHAR Opcode;                // 0x5C + USHORT Value; // Value 
- UCHAR Data1                // Data + } Sce_key_ck;  
- UCHAR Data2                // Data +This bytecode checks the specified key parameters.++|  08-02-2024 Newly Added  | 
- } Sce_shake_on;                    +|{50}  Sce_trg_ck  |  04  |++50 ?? VA LU ++|\\ 
-This bytecode turns on the SCE shake effect.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{5D}  Mizu_div_set  |  02  |++5D ??++|\\                         + UCHAR Opcode; // 0x50 
- typedef struct {         // Ptr // Description          + UCHAR Flag; // Flag 
- UCHAR Opcode;                // 0x5D + USHORT Value; // Value 
- UCHAR Data1                // Data + } Sce_trg_ck;  
- } Mizu_div_set;                    +This bytecode checks the specified trigger parameters.++|  08-02-2024 Newly Added  | 
-This bytecode sets the Mizu division.++|  08-02-2024 Newly Added  |                         +|{51}  Sce_bgm_control  |  06  |++51 ID ?? ?? ?? ?? ++|\\ 
-|{5E}  Keep_Item_ck  |  02  |++5E ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x51 
- UCHAR Opcode;                // 0x5E + UCHAR Id; // Id 
- UCHAR Data1                // Data + UCHAR Op; // Op 
- } Keep_Item_ck;                    + UCHAR Type; // Type 
-This bytecode checks the kept item.++|  08-02-2024 Newly Added  |                         + UCHAR VolL; // VolL 
-|{5F}  Xa_vol  |  02  |++5F ??++|\\                         + UCHAR VolR; // VolR 
- typedef struct {         // Ptr // Description          + } Sce_bgm_control;  
- UCHAR Opcode;                // 0x5F +This bytecode controls the specified BGM parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data1                // Data +|{52}  Sce_espr_control  |  06  |++52 ID ?? ?? ?? ?? ++|\\ 
- } Xa_vol;                    + typedef struct {   
-This bytecode sets the XA volume.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x52 
-|{60}  Kage_set  |  14  |++60 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + UCHAR Id; // Id 
- typedef struct {         // Ptr // Description          + UCHAR Type; // Type 
- UCHAR Opcode               // 0x60 + UCHAR Return; // Return 
- UCHAR Data1[13]            // Data + CHAR WorkKind; // WorkKind 
- } Kage_set;                    + CHAR WorkNo; // WorkNo 
-This bytecode sets the Kage parameter.++|  08-02-2024 Newly Added  |                         + } Sce_espr_control;  
-|{61}  Cut_be_set  |  04  |++61 ?? ?? ??++|\\                         +This bytecode controls the specified espr parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{53}  Sce_fade_set  |  06  |++53 ?? ?? ?? ?? ?? ++|\\ 
- UCHAR Opcode;                // 0x61 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x53 
- UCHAR Data2                // Data + UCHAR data0; // data0 
- UCHAR Data3                // Data + UCHAR data1; // data1 
- } Cut_be_set;                    + UCHAR data2; // data2 
-This bytecode sets the cutscene BE parameter.++|  08-02-2024 Newly Added  |                         + USHORT data3; // data3 
-|{62}  Sce_Item_lost  |  02  |++62 ??++|\\                         + } Sce_fade_set;  
- typedef struct {         // Ptr // Description          +This bytecode sets the specified fade parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode;                // 0x62 +|{54}  Sce_espr3d_on  |  22  |++54 00 ?? ?? ?? ?? XX XX YY YY ZZ ZZ DX DX DY DY DZ DZ ?? ?? ++|\\ 
- UCHAR Data1                // Data + typedef struct {   
- } Sce_Item_lost;                    + UCHAR Opcode; // 0x54 
-This bytecode sets the SCE item lost parameter.++|  08-02-2024 Newly Added  |                         + UCHAR zAlign; // zAlign 
-|{63}  Plc_gun_eff  |  01  |++63++|\\                         + USHORT data0; // data0 
- typedef struct {         // Ptr // Description          + USHORT data1; // data1 
- UCHAR Opcode;                // 0x63 + USHORT data2; // data2 
- } Plc_gun_eff;                    + SHORT X; // X 
-This bytecode sets the PLC gun effect.++|  08-02-2024 Newly Added  |                         + SHORT Y; // Y 
-|{64}  Sce_espr_on2  |  16  |++64 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + SHORT Z; // Z 
- typedef struct {         // Ptr // Description          + SHORT DirX; // DirX 
- UCHAR Opcode               // 0x64 + SHORT DirY; // DirY 
- UCHAR Data1[15]            // Data + SHORT DirZ; // DirZ 
- } Sce_espr_on2;                    + SHORT data3; // data3 
-This bytecode turns on the SCE ESPR 2.++|  08-02-2024 Newly Added  |                         + } Sce_espr3d_on;  
-|{65}  Sce_espr_kill2  |  02  |++65 ??++|\\                         +This bytecode turns on the specified 3D espr with the given parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{55}  Member_calc  |  06  |++55 ?? ?? ?? ?? VA LU ++|\\ 
- UCHAR Opcode;                // 0x65 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x55 
- } Sce_espr_kill2;                    + UCHAR Operator; // Operator 
-This bytecode kills the SCE ESPR 2.++|  08-02-2024 Newly Added  |                         + USHORT Flag; // Flag 
-|{66}  Plc_stop  |  01  |++66++|\\                         + SHORT Value; // Value 
- typedef struct {         // Ptr // Description          + } Member_calc;  
- UCHAR Opcode;                // 0x66 +This bytecode performs the specified arithmetic operation on the member with the given value.++|  08-02-2024 Newly Added  | 
- } Plc_stop;                    +|{56}  Member_calc2  |  04  |++56 ?? ?? ?? ++|\\ 
-This bytecode stops the PLC.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{67}  Aot_set_4p  |  28  |++67 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + UCHAR Opcode; // 0x56 
- typedef struct {         // Ptr // Description          + UCHAR Operator; // Operator 
- UCHAR Opcode               // 0x67 + UCHAR Flag; // Flag 
- UCHAR Data1[27]            // Data + UCHAR Value; // Value 
- } Aot_set_4p;                    + } Member_calc2;  
-This bytecode sets an AOT (Active Object Table) entry with 4 parameters.++|  08-02-2024 Newly Added  |                         +This bytecode performs the specified arithmetic operation on the member with the given value.++|  08-02-2024 Newly Added  | 
-|{68}  Door_aot_set_4p  |  40  |++68 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         +|{57}  Sce_bgmtbl_set  |  08  |++57 00 ?? ?? ?? ?? ?? ++|\\ 
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode               // 0x68 + UCHAR Opcode; // 0x57 
- UCHAR Data1[39]            // Data + UCHAR zAlign; // zAlign 
- } Door_aot_set_4p;                    + UCHAR Stage; // Stage 
-This bytecode sets door AOT entry with 4 parameters.++|  08-02-2024 Newly Added  |                         + UCHAR Room; // Room 
-|{69}  Item_aot_set_4p  |  30  |++69 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + USHORT data1; // data1 
- typedef struct {         // Ptr // Description          + USHORT data2; // data2 
- UCHAR Opcode               // 0x69 + } Sce_bgmtbl_set;  
- UCHAR Data1[29]            // Data +This bytecode sets the specified BGM table parameters.++|  08-02-2024 Newly Added  | 
- } Item_aot_set_4p;                    +|{58}  Plc_rot  |  04  |++58 ID ?? ?? ++|\\ 
-This bytecode sets an item AOT entry with 4 parameters.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{6A}  Light_pos_set  |  06  |++6A ?? ?? ?? ?? ??++|\\                         + UCHAR Opcode; // 0x58 
- typedef struct {         // Ptr // Description          + UCHAR Id; // Id 
- UCHAR Opcode;                // 0x6A + USHORT Sce_free0; // Sce_free0 
- UCHAR Data1                // Data + } Plc_rot; 
- UCHAR Data2                // Data +  
- UCHAR Data3                // Data +This bytecode sets the specified rotation parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data4                // Data +|{59}  Xa_on  |  04  |++59 ?? ?? ?? ++|\\ 
- UCHAR Data5;                 // Data + typedef struct {   
- } Light_pos_set;                    + UCHAR Opcode; // 0x59 
-This bytecode sets the light position.++|  08-02-2024 Newly Added  |                         + UCHAR Mode; // Mode 
-|{6B}  Light_kido_set  |  04  |++6B ?? ?? ??++|\\                         + USHORT Number; // Number 
- typedef struct {         // Ptr // Description          + } Xa_on;  
- UCHAR Opcode;                // 0x6B +This bytecode turns on the specified XA with the given parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data1                // Data +|{5A}  Weapon_chg  |  02  |++5A ID++|\\  
- UCHAR Data2;                 // Data + typedef struct {   
- UCHAR Data3                // Data + UCHAR Opcode; // 0x5A 
- } Light_kido_set;                    + UCHAR WeaponId; // ID of the weapon to change 
-This bytecode sets the light intensity (Kido).++|  08-02-2024 Newly Added  |                         + } Weapon_chg;  
-|{6C}  Rbj_reset  |  01  |++6C++|\\                         +This bytecode changes the specified weapon parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{5B}  Plc_cnt  |  02  |++5B ID ++|\\ 
- UCHAR Opcode;                // 0x6C + typedef struct {   
- } Rbj_reset;                    + UCHAR Opcode; // 0x5B 
-This bytecode resets the RBJ.++|  08-02-2024 Newly Added  |                         + UCHAR Id; // Id 
-|{6D}  Sce_scr_move  |  04  |++6D ?? ?? ??++|\\                         + } Plc_cnt;  
- typedef struct {         // Ptr // Description          +This bytecode performs the specified arithmetic operation on the counter with the given value.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode;                // 0x6D +|{5C}  Sce_shake_on  |  03  |++5C ?? ?? ++|\\ 
- UCHAR Data1                // Data + typedef struct {   
- UCHAR Data2                // Data + UCHAR Opcode; // 0x5C 
- UCHAR Data3;                 // Data + CHAR Slide_ofs; // Slide_ofs 
- } Sce_scr_move;                    + CHAR Copy_ofs; // Copy_ofs 
-This bytecode moves the SCE screen.++|  08-02-2024 Newly Added  |                         + } Sce_shake_on;  
-|{6E}  Parts_set  |  06  |++6E ?? ?? ?? ?? ??++|\\                         +This bytecode turns on the specified shake effect with the given parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{5D}  Mizu_div_set  |  02  |++5D ID ++|\\ 
- UCHAR Opcode;                // 0x6E + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x5D 
- UCHAR Data2                // Data + UCHAR Id; // Id 
- UCHAR Data3;                 // Data + } Mizu_div_set; 
- UCHAR Data4                // Data +This bytecode sets the specified water division parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data5                // Data +|{5E}  Keep_Item_ck  |  02  |++5E ??++|\\  
- } Parts_set;                    + typedef struct {   
-This bytecode sets parts.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x5E 
-|{6F}  Movie_on  |  02  |++6F ??++|\\                         + UCHAR ItemId; // ID of the item to check 
- typedef struct {         // Ptr // Description          + } Keep_Item_ck;  
- UCHAR Opcode;                // 0x6F +This bytecode checks the specified item parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data1                // Data +|{5F}  Xa_vol  |  02  |++5F ??++|\\  
- } Movie_on;                    + typedef struct {   
-This bytecode turns on the movie.++|  08-02-2024 Newly Added  |                         + UCHAR Opcode; // 0x5F 
-|{70}  Splc_ret  |  01  |++70++|\\                         + UCHAR Volume; // XA volume level 
- typedef struct {         // Ptr // Description          + } Xa_vol;  
- UCHAR Opcode;                // 0x70 +This bytecode sets the specified XA volume and pan parameters.++|  08-02-2024 Newly Added  | 
- } Splc_ret;                    +|{60}  Kage_set  |  14  |++60 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ++|\\ 
-This bytecode returns from a SPLC operation.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{71}  Splc_sce  |  01  |++71++|\\                         + UCHAR Opcode; // 0x60 
- typedef struct {         // Ptr // Description          + UCHAR Work; // Work 
- UCHAR Opcode;                // 0x71 + CHAR Id; // Id 
- } Splc_sce;                    + UCHAR Data0; // Data0 
-This bytecode sets the SPLC scene.++|  08-02-2024 Newly Added  |                         + UCHAR Data1; // Data1 
-|{72}  Super_on  |  16  |++72 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + UCHAR Data2; // Data2 
- typedef struct {         // Ptr // Description          + USHORT Data3; // Data3 
- UCHAR Opcode               // 0x72 + USHORT Data4; // Data4 
- UCHAR Data1[15]            // Data + USHORT Data5; // Data5 
- } Super_on;                    + USHORT Data6; // Data6 
-This bytecode turns on the super mode.++|  08-02-2024 Newly Added  |                         + } Kage_set;  
-|{73}  Mirror_set  |  08  |++73 ?? ?? ?? ?? ?? ?? ??++|\\                         +This bytecode sets the specified shadow parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{61}  Cut_be_set  |  04  |++61 ID ?? ?? ++|\\ 
- UCHAR Opcode;                // 0x73 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x61 
- UCHAR Data2;                 // Data + UCHAR Id; // Id 
- UCHAR Data3                // Data + UCHAR Value; // Value 
- UCHAR Data4                // Data + UCHAR OnOff; // OnOff 
- UCHAR Data5                // Data + } Cut_be_set;  
- UCHAR Data6;                 // Data +This bytecode sets the specified cutscene parameters.++|  08-02-2024 Newly Added  | 
- } Mirror_set;                    +|{62}  Sce_Item_lost  |  02  |++62 ID++|\\  
-This bytecode sets the mirror parameters.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{74}  Sce_fade_adjust  |  04  |++74 ?? ?? ??++|\\                         + UCHAR Opcode; // 0x62 
- typedef struct {         // Ptr // Description          + UCHAR ItemId; // ID of the lost item 
- UCHAR Opcode;                // 0x74 + } Sce_Item_lost;  
- UCHAR Data1                // Data +This bytecode removes the specified item from the inventory.++|  08-02-2024 Newly Added  | 
- UCHAR Data2                // Data +|{63}  Plc_gun_eff  |  01  |++63++|\\  
- UCHAR Data3;                 // Data + typedef struct {   
- } Sce_fade_adjust;                    + UCHAR Opcode; // 0x63 
-This bytecode adjusts the SCE fade.++|  08-02-2024 Newly Added  |                         + } Plc_gun_eff;  
-|{75}  Sce_espr3d_on2  |  22  |++75 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         +This bytecode sets the specified gun effect parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{64}  Sce_espr_on2  |  16  |++64 ?? ?? ?? ?? ?? ?? XX XX YY YY ZZ ZZ ?? ?? ++|\\ 
- UCHAR Opcode;                // 0x75 + typedef struct {   
- UCHAR Data1[21]            // Data + UCHAR Opcode; // 0x64 
- } Sce_espr3d_on2;                    + UCHAR dir_y_id2; // dir_y_id2 
-This bytecode turns on the SCE ESPR 3D (version 2).++|  08-02-2024 Newly Added  |                         + USHORT data1; // data1 
-|{76}  Sce_Item_get  |  03  |++76 ?? ??++|\\                         + UCHAR WorkKind; // WorkKind 
- typedef struct {         // Ptr // Description          + UCHAR WorkNo; // WorkNo 
- UCHAR Opcode;                // 0x76 + USHORT data3; // data3 
- UCHAR Data1                // Data + SHORT X; // X 
- UCHAR Data2                // Data + SHORT Y; // Y 
- } Sce_Item_get;                    + SHORT Z; // Z 
-This bytecode gets an SCE item.++|  08-02-2024 Newly Added  |                         + USHORT DirY; // DirY 
-|{77}  Sce_line_start  |  04  |++77 ?? ?? ??++|\\                         + } Sce_espr_on2;  
- typedef struct {         // Ptr // Description          +This bytecode turns on the specified espr with the given parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode;                // 0x77 +|{65}  Sce_espr_kill2  |  02  |++65 ??++|\\  
- UCHAR Data1                // Data + typedef struct {   
- UCHAR Data2;                 // Data + UCHAR Opcode; // 0x65 
- UCHAR Data3                // Data + UCHAR EsprId; // ID of the effect sprite to kill 
- } Sce_line_start;                    + } Sce_espr_kill2;  
-This bytecode starts the SCE line.++|  08-02-2024 Newly Added  |                         +This bytecode kills the specified espr with the given parameters.++|  08-02-2024 Newly Added  | 
-|{78}  Sce_line_main  |  06  |++78 ?? ?? ?? ?? ??++|\\                         +|{66}  Plc_stop  |  01  |++66++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x78 + UCHAR Opcode; // 0x66 
- UCHAR Data1                // Data + } Plc_stop;  
- UCHAR Data2                // Data +This bytecode stops the specified plc function.++|  08-02-2024 Newly Added  | 
- UCHAR Data3;                 // Data +|{67}  Aot_set_4p  |  28  |++67 ID ?? ?? ?? ?? ?? XX XX ZZ ZZ XX XX ZZ ZZ XX XX ZZ ZZ XX XX ZZ ZZ ?? ?? ?? ?? ++|\\ 
- UCHAR Data4                // Data + typedef struct {   
- UCHAR Data5;                 // Data + UCHAR Opcode; // 0x67 
- } Sce_line_main;                    + UCHAR Aot; // Aot 
-This bytecode defines the main SCE line.++|  08-02-2024 Newly Added  |                         + UCHAR SCE; // Id 
-|{79}  Sce_line_end  |  01  |++79++|\\                         + UCHAR SAT; // Type 
- typedef struct {         // Ptr // Description          + UCHAR nFloor; // nFloor 
- UCHAR Opcode;                // 0x79 + UCHAR Super; // Super 
- } Sce_line_end;                    + SHORT X0; // X0 
-This bytecode ends the SCE line.++|  08-02-2024 Newly Added  |                         + SHORT Z0; // Z0 
-|{7A}  Sce_parts_bomb  |  16  |++7A ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + SHORT X1; // X1 
- typedef struct {         // Ptr // Description          + SHORT Z1; // Z1 
- UCHAR Opcode               // 0x7A + SHORT X2; // X2 
- UCHAR Data1[15]            // Data + SHORT Z2; // Z2 
- } Sce_parts_bomb;                    + SHORT X3; // X3 
-This bytecode sets the SCE parts bomb.++|  08-02-2024 Newly Added  |                         + SHORT Z3; // Z3 
-|{7B}  Sce_parts_down  |  16  |++7B ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + USHORT Data0; // Data0 
- typedef struct {         // Ptr // Description          + USHORT Data1; // Data1 
- UCHAR Opcode;                // 0x7B + USHORT Data2; // Data2 
- UCHAR Data1[15]            // Data + } Aot_set_4p;  
- } Sce_parts_down;                    +This bytecode sets the specified 4-point AOT parameters.++|  08-02-2024 Newly Added  | 
-This bytecode sets the SCE parts down.++|  08-02-2024 Newly Added  |                         +|{68}  Door_aot_set_4p  |  40  |++68 ID ?? ?? ?? ?? ?? XX XX ZZ ZZ XX XX ZZ ZZ XX XX ZZ ZZ XX XX ZZ ZZ XX XX YY YY ZZ ZZ ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ++|\\ 
-|{7C}  Light_color_set  |  06  |++7C ?? ?? ?? ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x68 
- UCHAR Opcode;                // 0x7C + UCHAR Aot; // Aot 
- UCHAR Data1                // Data + UCHAR SCE; // Id 
- UCHAR Data2                // Data + UCHAR SAT; // Type 
- UCHAR Data3                // Data + UCHAR nFloor; // nFloor 
- UCHAR Data4                // Data + UCHAR Super; // Super 
- UCHAR Data5                // Data + SHORT X0; // X0 
- } Light_color_set;                    + SHORT Z0; // Z0 
-This bytecode sets the light color.++|  08-02-2024 Newly Added  |                         + SHORT X1; // X1 
-|{7D}  Light_pos_set2  |  06  |++7D ?? ?? ?? ?? ??++|\\                         + SHORT Z1; // Z1 
- typedef struct {         // Ptr // Description          + SHORT X2; // X2 
- UCHAR Opcode;                // 0x7D + SHORT Z2; // Z2 
- UCHAR Data1                // Data + SHORT X3; // X3 
- UCHAR Data2                // Data + SHORT Z3; // Z3 
- UCHAR Data3;                 // Data + SHORT Next_pos_x; // Next_pos_x 
- UCHAR Data4                // Data + SHORT Next_pos_y; // Next_pos_y 
- UCHAR Data5                // Data + SHORT Next_pos_z; // Next_pos_z 
- } Light_pos_set2;                    + SHORT Next_cdir_y; // Next_cdir_y 
-This bytecode sets the secondary light position.++|  08-02-2024 Newly Added  |                         + UCHAR Next_stage; // Next_stage 
-|{7E}  Light_kido_set2  |  06  |++7E ?? ?? ?? ?? ??++|\\                         + UCHAR Next_room; // Next_room 
- typedef struct {         // Ptr // Description          + UCHAR Next_cut; // Next_cut 
- UCHAR Opcode;                // 0x7E + UCHAR Next_nfloor; // Next_nfloor 
- UCHAR Data1                // Data + UCHAR Dtex_type; // Dtex_type 
- UCHAR Data2                // Data + UCHAR Door_type; // Door_type 
- UCHAR Data3                // Data + UCHAR Knock_type; // Knock_type 
- UCHAR Data4;                 // Data + UCHAR Key_id; // Key_id 
- UCHAR Data5                // Data + UCHAR Key_type; // Key_type 
- } Light_kido_set2;                    + UCHAR Free; // Free 
-This bytecode sets the secondary light intensity (Kido).++|  08-02-2024 Newly Added  |                         + } Door_aot_set_4p;  
-|{7F}  Light_color_set2  |  06  |++7F ?? ?? ?? ?? ??++|\\                         +This bytecode sets the specified 4-point door AOT parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{69}  Item_aot_set_4p  |  30  |++69 ID ?? ?? ?? ?? ?? XX XX ZZ ZZ XX XX ZZ ZZ XX XX ZZ ZZ XX XX ZZ ZZ ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ++|\\ 
- UCHAR Opcode;                // 0x7F + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x69 
- UCHAR Data2                // Data + UCHAR Aot; // Aot 
- UCHAR Data3                // Data + UCHAR SCE; // Id 
- UCHAR Data4                // Data + UCHAR SAT; // Type 
- UCHAR Data5                // Data + UCHAR nFloor; // nFloor 
- } Light_color_set2;                    + UCHAR Super; // Super 
-This bytecode sets the secondary light color.++|  08-02-2024 Newly Added  |                         + SHORT X0; // X0 
-|{80}  Se_vol  |  02  |++80 ??++|\\                         + SHORT Z0; // Z0 
- typedef struct {         // Ptr // Description          + SHORT X1; // X1 
- UCHAR Opcode;                // 0x80 + SHORT Z1; // Z1 
- UCHAR Data1                // Data + SHORT X2; // X2 
- } Se_vol;                    + SHORT Z2; // Z2 
-This bytecode sets the SE volume.++|  08-02-2024 Newly Added  |                         + SHORT X3; // X3 
-|{81}  Sce_Item_cmp   03  |++81 ?? ??++|\\                         + SHORT Z3; // Z3 
- typedef struct {         // Ptr // Description          + USHORT iItem; // iItem 
- UCHAR Opcode;                // 0x81 + USHORT nItem; // nItem 
- UCHAR Data1                // Data + USHORT Flag; // Flag 
- UCHAR Data2                // Data + UCHAR MD1; // MD1 
-Sce_Item_cmp                   + UCHAR Action; // Action 
-This bytecode compares an SCE item.++|  08-02-2024 Newly Added  |                         + } Item_aot_set_4p;  
-|{82}  Sce_espr_task  |  03  |++82 ?? ??++|\\                         +This bytecode sets the specified 4-point item AOT parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{6A}  Light_pos_set  |  06  |++6A 00 ?? ?? XX XX ++|\\ 
- UCHAR Opcode;                // 0x82 + typedef struct {   
- UCHAR Data1                // Data + UCHAR Opcode; // 0x6A 
- UCHAR Data2                // Data + UCHAR zAlign; // zAlign 
- } Sce_espr_task;                    + UCHAR Index; // Index 
-This bytecode sets an SCE ESPR task.++|  08-02-2024 Newly Added  |                         + UCHAR XYZ; // XYZ 
-|{83}  Plc_heal  |  01  |++83++|\\                         + SHORT Position; // Position 
- typedef struct {         // Ptr // Description          + } Light_pos_set;  
- UCHAR Opcode;                // 0x83 +This bytecode sets the specified light position parameters.++|  08-02-2024 Newly Added  | 
- } Plc_heal;                    +|{6B}  Light_kido_set  |  04  |++6B ?? ?? XX XX ++|\\ 
-This bytecode heals the PLC.++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{84}  St_map_hint  |  02  |++84 ??++|\\                         + UCHAR Opcode; // 0x6B 
- typedef struct {         // Ptr // Description          + UCHAR Index; // Index 
- UCHAR Opcode;                // 0x84 + SHORT Luminosity; // Luminosity 
- UCHAR Data1                // Data + } Light_kido_set;  
- } St_map_hint;                    +This bytecode sets the specified light intensity and color parameters.++|  08-02-2024 Newly Added  | 
-This bytecode sets the ST map hint.++|  08-02-2024 Newly Added  |                         +|{6C}  Rbj_reset  |  01  |++6C++|\\  
-|{85}  Sce_em_pos_ck  |  06  |++85 ?? ?? ?? ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x6C 
- UCHAR Opcode;                // 0x85 + } Rbj_reset;  
- UCHAR Data1                // Data +This bytecode resets the specified rbj parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data2                // Data +|{6D}  Sce_scr_move  |  04  |++6D 00 XX XX ++|\\ 
- UCHAR Data3                // Data + typedef struct {   
- UCHAR Data4                // Data + UCHAR Opcode; // 0x6D 
- UCHAR Data5;                 // Data + UCHAR zAlign; // zAlign 
- } Sce_em_pos_ck;                    + SHORT Scrl_y; // Scrl_y 
-This bytecode checks the SCE EM position.++|  08-02-2024 Newly Added  |                         + } Sce_scr_move;  
-|{86}  Poison_ck  |  01  |++86++|\\                         +This bytecode moves the specified screen with the given parameters.++|  08-02-2024 Newly Added  | 
- typedef struct {         // Ptr // Description          +|{6E}  Parts_set  |  06  |++6E 00 ?? ?? XX XX ++|\\ 
- UCHAR Opcode;                // 0x86 + typedef struct {   
- } Poison_ck;                    + UCHAR Opcode; // 0x6E 
-This bytecode checks for poison.++|  08-02-2024 Newly Added  |                         + UCHAR zAlign; // zAlign 
-|{87}  Poison_clr  |  01  |++87++|\\                         + CHAR Id; // Id 
- typedef struct {         // Ptr // Description          + CHAR Type; // Type 
- UCHAR Opcode;                // 0x87 + SHORT Value; // Value 
- } Poison_clr;                    + } Parts_set;  
-This bytecode clears poison.++|  08-02-2024 Newly Added  |                         +This bytecode sets the specified parts parameters.++|  08-02-2024 Newly Added  | 
-|{88}  Sce_Item_lost2  |  03  |++88 ?? ??++|\\                         +|{6F}  Movie_on  |  02  |++6F ??++|\\  
- typedef struct {         // Ptr // Description          + typedef struct {   
- UCHAR Opcode;                // 0x88 + UCHAR Opcode; // 0x6F 
- UCHAR Data1                // Data + UCHAR MovieId; // ID of the movie 
- UCHAR Data2                // Data + } Movie_on;  
- } Sce_Item_lost2;                    +This bytecode plays the specified movie.++|  08-02-2024 Newly Added  | 
-This bytecode sets the SCE item lost parameter (version 2).++|  08-02-2024 Newly Added  |                         +|{70}  Splc_ret  |  01  |++70++|\\  
-|{89}  Evt_next2  |  01  |++89++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x70 
- UCHAR Opcode;                // 0x89 + } Splc_ret;  
- } Evt_next2;                    +This bytecode returns from the specified splc function.++|  08-02-2024 Newly Added  | 
-This bytecode moves to the next event (version 2).++|  08-02-2024 Newly Added  |                         +|{71}  Splc_sce  |  01  |++71++|\\  
-|{8A}  Vib_set0  |  06  |++8A ?? ?? ?? ?? ??++|\\                         + typedef struct {   
- typedef struct {         // Ptr // Description          + UCHAR Opcode; // 0x71 
- UCHAR Opcode;                // 0x8A + } Splc_sce;  
- UCHAR Data1                // Data +This bytecode sets the specified splc parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data2                // Data +|{72}  Super_on  |  16  |++72 00 ?? ?? ?? ?? XX XX XX XX XX XX XX XX XX ++|\\ 
- UCHAR Data3;                 // Data + typedef struct {   
- UCHAR Data4                // Data + UCHAR Opcode; // 0x72 
- UCHAR Data5;                 // Data + UCHAR zAlign; // zAlign 
- } Vib_set0;                    + UCHAR data0; // data0 
-This bytecode sets vibration parameters (set 0).++|  08-02-2024 Newly Added  |                         + UCHAR data1; // data1 
-|{8B}  Vib_set1  |  06  |++8B ?? ?? ?? ?? ??++|\\                         + SHORT data2; // data2 
- typedef struct {         // Ptr // Description          + SHORT data3; // data3 
- UCHAR Opcode;                // 0x8B + SHORT data4; // data4 
- UCHAR Data1                // Data + SHORT data5; // data5 
- UCHAR Data2                // Data + SHORT data6; // data6 
- UCHAR Data3;                 // Data + SHORT data7; // data7 
- UCHAR Data4                // Data + } Super_on;  
- UCHAR Data5;                 // Data +This bytecode turns on the specified super with the given parameters.++|  08-02-2024 Newly Added  | 
- } Vib_set1;                    +|{73}  Mirror_set  |  08  |++73 ?? ?? XX XX XX XX XX XX ++|\\ 
-This bytecode sets vibration parameters (set 1).++|  08-02-2024 Newly Added  |                         + typedef struct {   
-|{8C}  Vib_fade_set  |  08  |++8C ?? ?? ?? ?? ?? ?? ??++|\\                         + UCHAR Opcode; // 0x73 
- typedef struct {         // Ptr // Description          + UCHAR Flag; // Flag 
- UCHAR Opcode;                // 0x8C + USHORT Position; // Position 
- UCHAR Data1                // Data + USHORT Min; // Min 
- UCHAR Data2                // Data + USHORT Max; // Max 
- UCHAR Data3                // Data + } Mirror_set;  
- UCHAR Data4                // Data +This bytecode sets the specified mirror position parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Data5;                 // Data +|{74}  Sce_fade_adjust  |  04  |++74 ?? ?? XX XX ++|\\ 
- UCHAR Data6                // Data + typedef struct {   
- UCHAR Data7;                 // Data + UCHAR Opcode; // 0x74 
- } Vib_fade_set;                    + UCHAR data0; // data0 
-This bytecode sets the vibration fade parameters.++|  08-02-2024 Newly Added  |                         + SHORT data1; // data1 
-|{8D}  Item_aot_set2  |  24  |++8D ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + } Sce_fade_adjust;  
- typedef struct {         // Ptr // Description          +This bytecode adjusts the specified fade parameters.++|  08-02-2024 Newly Added  | 
- UCHAR Opcode               // 0x8D +|{75}  Sce_espr3d_on2  |  22  |++75 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ++|\\ 
- UCHAR Data1[23];             // Data + typedef struct {   
- } Item_aot_set2;                    + UCHAR Opcode; // 0x75 
-This bytecode sets an item AOT entry (version 2).++|  08-02-2024 Newly Added  |                         + UCHAR dir_y_id2; // dir_y_id2 
-|{8E}  Sce_em_set2  |  24  |++8E ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\                         + USHORT bit; // bit 
- typedef struct {         // Ptr // Description          + USHORT data4; // data4 
- UCHAR Opcode               // 0x8E + USHORT data6; // data6 
- UCHAR Data1[23]            // Data + USHORT data8; // data8 
- } Sce_em_set2;                    + USHORT dataA; // dataA 
-This bytecode sets the scenario for EM (version 2).++|  08-02-2024 Newly Added  |+ USHORT dataC; // dataC 
 + USHORT dataE; // dataE 
 + USHORT data10; // data10 
 + USHORT data12; // data12 
 + USHORT data14; // data14 
 + } Sce_espr3d_on2;  
 +This bytecode turns on the specified 3D espr with the given parameters.++|  08-02-2024 Newly Added  | 
 +|{76}  Sce_Item_get  |  03  |++76 ID ?? ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x76 
 + UCHAR Id; // Id 
 + UCHAR Num; // Num 
 + } Sce_Item_get;  
 +This bytecode gets the specified item with the given quantity.++|  08-02-2024 Newly Added  | 
 +|{77}  Sce_line_start  |  04  |++77 ID XX XX ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x77 
 + UCHAR Id; // Id 
 + USHORT Value; // Value 
 + } Sce_line_start;  
 +This bytecode starts the specified line with the given parameters.++|  08-02-2024 Newly Added  | 
 +|{78}  Sce_line_main  |  06  |++78 ID XX XX XX XX ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x78 
 + UCHAR Id; // Id 
 + SHORT Data0; // Data0 
 + SHORT Data1; // Data1 
 + } Sce_line_main;  
 +This bytecode sets the specified line parameters.++|  08-02-2024 Newly Added  | 
 +|{79}  Sce_line_end  |  01  |++79 ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x79 
 + } Sce_line_end;  
 +This bytecode ends the specified line.++|  08-02-2024 Newly Added  | 
 +|{7A}  Sce_parts_bomb  |  16  |++7A 00 ?? ?? ?? ?? XX XX XX XX XX XX XX XX XX ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x7A 
 + UCHAR zAlign; // zAlign 
 + UCHAR data2; // data2 
 + UCHAR data3; // data3 
 + UCHAR data4; // data4 
 + UCHAR data5; // data5 
 + SHORT data6; // data6 
 + SHORT data8; // data8 
 + SHORT dataA; // dataA 
 + SHORT dataC; // dataC 
 + SHORT dataE; // dataE 
 + } Sce_parts_bomb;  
 +This bytecode bombs the specified parts with the given parameters.++|  08-02-2024 Newly Added  | 
 +|{7B}  Sce_parts_down  |  16  |++7B ID XX XX XX XX XX XX XX XX XX XX XX XX ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x7B 
 + UCHAR Id; // Id 
 + SHORT X; // X 
 + SHORT Y; // Y 
 + SHORT Z; // Z 
 + SHORT cDirZ; // cDirZ 
 + SHORT DirX; // DirX 
 + SHORT DirY; // DirY 
 + SHORT DirZ; // DirZ 
 + } Sce_parts_down;  
 +This bytecode moves down the specified parts with the given parameters.++|  08-02-2024 Newly Added  | 
 +|{7C}  Light_color_set  |  06  |++7C ?? ?? ?? ?? ?? 00 ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x7C 
 + UCHAR Index; // Index 
 + UCHAR R; // R 
 + UCHAR G; // G 
 + UCHAR B; // B 
 + UCHAR zAlign; // zAlign 
 + } Light_color_set;  
 +This bytecode sets the specified light color parameters.++|  08-02-2024 Newly Added  | 
 +|{7D}  Light_pos_set2  |  06  |++7D ?? ?? ?? ?? XX XX ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x7D 
 + UCHAR nCut; // nCut 
 + UCHAR Index; // Index 
 + UCHAR XYZ; // XYZ 
 + SHORT Position; // Position 
 + } Light_pos_set2;  
 +This bytecode sets the specified light position parameters.++|  08-02-2024 Newly Added  | 
 +|{7E}  Light_kido_set2  |  06  |++7E 00 ?? ?? XX XX ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x7E 
 + UCHAR zAlign; // zAlign 
 + UCHAR nCut; // nCut 
 + UCHAR Index; // Index 
 + USHORT Luminosity; // Luminosity 
 + } Light_kido_set2;  
 +This bytecode sets the specified light intensity and color parameters.++|  08-02-2024 Newly Added  | 
 +|{7F}  Light_color_set2  |  06  |++7F ?? ?? ?? ?? ?? ?? ++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x7F 
 + UCHAR nCut; // nCut 
 + UCHAR Index; // Index 
 + UCHAR R; // R 
 + UCHAR G; // G 
 + UCHAR B; // B 
 + } Light_color_set2;  
 +This bytecode sets the specified light color parameters.++|  08-02-2024 Newly Added  | 
 +|{80}  Se_vol  |  02  |++80 ?? ??++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x80 
 + UCHAR Volume; // Volume level 
 + } Se_vol;  
 +This bytecode sets the specified sound effect volume and pan parameters.++|  08-02-2024 Newly Added  | 
 +|{81}  Keep_Item_ck2   03  |++81 ID ??++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x81 
 + UCHAR ItemId; // ID of the item to check 
 + UCHAR Quantity; // Quantity of the item to check 
 +Keep_Item_ck2;  
 +This bytecode checks the specified item parameters.++|  08-02-2024 Newly Added  | 
 +|{82}  Sce_espr_task  |  03  |++82 ?? ?? ??++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x82 
 + CHAR WorkKind; // WorkKind 
 + CHAR WorkNo; // WorkNo 
 + } Sce_espr_task;  
 +This bytecode sets the specified espr task parameters.++|  08-02-2024 Newly Added  | 
 +|{83}  Plc_heal  |  01  |++83++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x83 
 + } Plc_heal;  
 +This bytecode heals the specified plc function.++|  08-02-2024 Newly Added  | 
 +|{84}  St_map_hint  |  02  |++84 ?? ??++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x84 
 + UCHAR DrModeTag; // DrModeTag 
 + } St_map_hint;  
 +This bytecode sets the specified map hint parameters.++|  08-02-2024 Newly Added  | 
 +|{85}  Sce_em_pos_ck  |  06  |++85 ?? ?? ?? ?? CO NT++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x85 
 + UCHAR Id; // Id 
 + UCHAR data1; // data1 
 + UCHAR Att; // Att 
 + USHORT Flg; // Flg 
 + } Sce_em_pos_ck;  
 +This bytecode checks the specified enemy position parameters.++|  08-02-2024 Newly Added  | 
 +|{86}  Poison_ck  |  01  |++86++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x86 
 + } Poison_ck;  
 +This bytecode checks the specified poison parameters.++|  08-02-2024 Newly Added  | 
 +|{87}  Poison_clr  |  01  |++87++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x87 
 + } Poison_clr;  
 +This bytecode clears the specified poison parameters.++|  08-02-2024 Newly Added  | 
 +|{88}  Sce_Item_lost2  |  03  |++88 ID ??++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x88 
 + UCHAR ItemId; // ID of the item 
 + UCHAR Quantity; // Quantity of the item 
 + } Sce_Item_lost2;  
 +This bytecode removes the specified item from the inventory.++|  08-02-2024 Newly Added  | 
 +|{89}  Evt_next2  |  01  |++89++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x89 
 + } Evt_next2;  
 +This bytecode moves to the next event in the sequence.++|  08-02-2024 Newly Added  | 
 +|{8A}  Vib_set0  |  06  |++8A 00 ?? ?? ?? ??++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x8A 
 + UCHAR zAlign; // zAlign 
 + USHORT data0; // data0 
 + USHORT data1; // data1 
 + } Vib_set0;  
 +This bytecode sets the specified vibration parameters.++|  08-02-2024 Newly Added  | 
 +|{8B}  Vib_set1  |  06  |++8B ID  VA LU VA LU++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x8B 
 + UCHAR Id; // Vibration ID 
 + USHORT Value1; // Vibration Value 1 
 + USHORT Value2; // Vibration Value 2 
 + } Vib_set1;  
 +This bytecode sets the specified vibration parameters.++|  08-02-2024 Newly Added  | 
 +|{8C}  Vib_fade_set  |  08  |++8C 00 ?? ?? ?? ?? ?? ??++|\\ 
 + typedef struct {   
 + UCHAR Opcode; // 0x8C 
 + UCHAR zAlign; // zAlign 
 + UCHAR data0; // data0 
 + UCHAR data1; // data1 
 + USHORT data2; // data2 
 + USHORT data3; // data3 
 + } Vib_fade_set;  
 +This bytecode sets the specified vibration fade parameters.++|  08-02-2024 Newly Added  | 
 +|{8D}  Item_aot_set2  |  24  |++8D ID ?? ?? ?? ?? ?? XX XX ZZ ZZ WW WW DD DD ?? ?? ?? ?? ?? ?? ?? ?? ??++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x8D 
 + UCHAR Aot; // Id 
 + UCHAR SCE; // Type (0x02) 
 + UCHAR SAT; // Atari 
 + UCHAR nFloor; // Height 
 + UCHAR Super; // Matrix 
 + SHORT X; // Position 
 + SHORT Z; // Position 
 + USHORT W; // Size 
 + USHORT D; // Size 
 + USHORT iItem; // Item Id 
 + USHORT nItem; // Item Amount 
 + USHORT Flag; // argv[1for Flg_on() and Flg_ck() 
 + UCHAR MD1; // MD1 File Id - 0xFF if no MD1 
 + UCHAR Action; // Predefined action taken to obtain 
 + UCHAR data16; //  
 + UCHAR data17; //  
 + } Item_aot_set2; 
 +This bytecode sets the specified item AOT parameters.++|  08-02-2024 Newly Added  | 
 +|{8E}  Sce_em_set2  |  24  |++8E 00 ID ?? ?? SI ZE ?? ?? ?? XX XX YY YY ZZ ZZ DY DY ?? ?? ?? ??++|\\  
 + typedef struct {   
 + UCHAR Opcode; // 0x8E 
 + UCHAR zAlign; // Alignment byte, always zero 
 + UCHAR Aot; //  
 + UCHAR EMD; //  
 + USHORT Type; //  
 + UCHAR nFloor; //  
 + UCHAR SeType; //  
 + UCHAR ModelType; //  
 + UCHAR EmSetFlg; //  
 + SHORT X; //  
 + SHORT Y; //  
 + SHORT Z; //  
 + SHORT DirY; //  
 + USHORT Timer0; //  
 + USHORT Timer1; //  
 + USHORT data16; //  
 + } Sce_em_set2;  
 +This bytecode sets the specified enemy parameters.++|  08-02-2024 Newly Added  | 
  
re2_opcodes.1722656399.txt.gz · Last modified: 2024/08/02 20:39 by 3lric