From 05b2edad405eb47a5f36ee09f705f0da04df0793 Mon Sep 17 00:00:00 2001 From: octorock <79596758+octorock@users.noreply.github.com> Date: Thu, 4 Mar 2021 03:49:25 +0100 Subject: Add notes to script.c --- include/script.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'include/script.h') diff --git a/include/script.h b/include/script.h index 9abc5291..416485b5 100644 --- a/include/script.h +++ b/include/script.h @@ -3,14 +3,24 @@ #include "global.h" +typedef struct +{ + u16 command; + u16 metadata; +} ScriptCommand; + + typedef struct { - u16* unk_00; + union { + u16* raw; + ScriptCommand* commands; // list of commands to execute + } unk_00; u32 unk_04; u32 unk_08; u8 unk_0C[0x4]; // unused u16 unk_10; u16 unk_12; - u32 unk_14; + u32 compareResult; // result of a compare script command u8 unk_18; u8 unk_19; u8 unk_1A; -- cgit v1.2.3