mirror of
https://github.com/pret/pmd-red.git
synced 2026-09-09 17:45:57 -05:00
Create DEBUGINFO_O macro
This commit is contained in:
@@ -5,172 +5,174 @@
|
||||
#include "constants/script_dungeon_id.h"
|
||||
#include "portrait_placement.h"
|
||||
#include "structs/str_ground_script.h"
|
||||
|
||||
#define LPARRAY(x) (ARRAY_COUNT(x)), x
|
||||
|
||||
#define CPOS_HALFTILE 0x2
|
||||
#define CPOS_CURRENT 0x4
|
||||
|
||||
// 01..07: complex map/dungeon selection/check commands
|
||||
#define NEXT_DUNGEON(u, d) { 0x02, 0, u, d, 0, NULL } // Seems to be a general command for setting up which dungeon to enter next. First argument is unknown. The second argument is script dungeon id(not the one in dungeon/constants.h). There's a different ordering and a table with the proper dungeon id.
|
||||
#define NEXT_DUNGEON(u, d) { 0x02, 0, u, d, 0, NULL } // Seems to be a general command for setting up which dungeon to enter next. First argument is unknown. The second argument is script dungeon id(not the one in dungeon/constants.h). There's a different ordering and a table with the proper dungeon id.
|
||||
|
||||
#define SELECT_MAP(m) { 0x08, 0, 0, m, 0, NULL }
|
||||
#define SELECT_GROUND(m) { 0x09, 0, 0, m, 0, NULL }
|
||||
#define SELECT_DUNGEON(m,d,f,b) { 0x0A, b, f, d, m, NULL }
|
||||
#define SELECT_WEATHER(w) { 0x0B, 0, 0, w, 0, NULL }
|
||||
#define SELECT_ENTITIES(g,s) { 0x0C, s, g, 0, 0, NULL }
|
||||
#define SELECT_LIVES(g,s) { 0x0D, s, g, 0, 0, NULL }
|
||||
#define SELECT_OBJECTS(g,s) { 0x0E, s, g, 0, 0, NULL }
|
||||
#define SELECT_EFFECTS(g,s) { 0x0F, s, g, 0, 0, NULL }
|
||||
#define SELECT_EVENTS(g,s) { 0x10, s, g, 0, 0, NULL }
|
||||
#define CANCEL_ENTITIES(g,s) { 0x11, s, g, 0, 0, NULL }
|
||||
#define CANCEL_LIVES(g,s) { 0x12, s, g, 0, 0, NULL }
|
||||
#define CANCEL_OBJECTS(g,s) { 0x13, s, g, 0, 0, NULL }
|
||||
#define CANCEL_EFFECTS(g,s) { 0x14, s, g, 0, 0, NULL }
|
||||
#define CANCEL_EVENTS(g,s) { 0x15, s, g, 0, 0, NULL }
|
||||
#define CANCEL_OFFSCREEN_LIVES { 0x16, 0, 0, 0, 0, NULL }
|
||||
#define CANCEL_OFFSCREEN_OBJECTS {0x17, 0, 0, 0, 0, NULL }
|
||||
#define CANCEL_OFFSCREEN_EFFECTS {0x18, 0, 0, 0, 0, NULL }
|
||||
#define SPAWN_OBJECT(k,d,g,s) { 0x19, s, g, d, k, NULL }
|
||||
#define SPAWN_EFFECT(k,d,g,s) { 0x1A, s, g, d, k, NULL }
|
||||
#define EXECUTE_FUNCTION(f) { 0x1B, 0, f, 0, 0, NULL }
|
||||
#define EXECUTE_SUBROUTINE(f) { 0x1C, 0, f, 0, 0, NULL }
|
||||
#define EXECUTE_STATION(m,g,s) { 0x1D, s, g, m, 0, NULL }
|
||||
#define EXECUTE_SUBSTATION(m,g,s){0x1E, s, g, m, 0, NULL }
|
||||
#define RESCUE_SELECT { 0x1F, 0, 0, 0, 0, NULL }
|
||||
#define SELECT_MAP(m) { 0x08, 0, 0, m, 0, NULL }
|
||||
#define SELECT_GROUND(m) { 0x09, 0, 0, m, 0, NULL }
|
||||
#define SELECT_DUNGEON(m,d,f,b) { 0x0A, b, f, d, m, NULL }
|
||||
#define SELECT_WEATHER(w) { 0x0B, 0, 0, w, 0, NULL }
|
||||
#define SELECT_ENTITIES(g,s) { 0x0C, s, g, 0, 0, NULL }
|
||||
#define SELECT_LIVES(g,s) { 0x0D, s, g, 0, 0, NULL }
|
||||
#define SELECT_OBJECTS(g,s) { 0x0E, s, g, 0, 0, NULL }
|
||||
#define SELECT_EFFECTS(g,s) { 0x0F, s, g, 0, 0, NULL }
|
||||
#define SELECT_EVENTS(g,s) { 0x10, s, g, 0, 0, NULL }
|
||||
#define CANCEL_ENTITIES(g,s) { 0x11, s, g, 0, 0, NULL }
|
||||
#define CANCEL_LIVES(g,s) { 0x12, s, g, 0, 0, NULL }
|
||||
#define CANCEL_OBJECTS(g,s) { 0x13, s, g, 0, 0, NULL }
|
||||
#define CANCEL_EFFECTS(g,s) { 0x14, s, g, 0, 0, NULL }
|
||||
#define CANCEL_EVENTS(g,s) { 0x15, s, g, 0, 0, NULL }
|
||||
#define CANCEL_OFFSCREEN_LIVES { 0x16, 0, 0, 0, 0, NULL }
|
||||
#define CANCEL_OFFSCREEN_OBJECTS { 0x17, 0, 0, 0, 0, NULL }
|
||||
#define CANCEL_OFFSCREEN_EFFECTS { 0x18, 0, 0, 0, 0, NULL }
|
||||
#define SPAWN_OBJECT(k,d,g,s) { 0x19, s, g, d, k, NULL }
|
||||
#define SPAWN_EFFECT(k,d,g,s) { 0x1A, s, g, d, k, NULL }
|
||||
#define EXECUTE_FUNCTION(f) { 0x1B, 0, f, 0, 0, NULL }
|
||||
#define EXECUTE_SUBROUTINE(f) { 0x1C, 0, f, 0, 0, NULL }
|
||||
#define EXECUTE_STATION(m,g,s) { 0x1D, s, g, m, 0, NULL }
|
||||
#define EXECUTE_SUBSTATION(m,g,s) { 0x1E, s, g, m, 0, NULL }
|
||||
#define RESCUE_SELECT { 0x1F, 0, 0, 0, 0, NULL }
|
||||
// 20: execute script as parented object, maybe? Unused in ROM
|
||||
// 21: follow object/make object follow/get parented?
|
||||
// 22..2f: ???
|
||||
#define TEXTBOX_AUTO_PRESS(endF, midF) { 0x2b, 0, 0, endF, midF, NULL} // Waits specified number of frames, then automatically does a button press without waiting for player's input. -1 disables it.
|
||||
#define TEXTBOX_AUTO_PRESS(endF, midF) { 0x2b, 0, 0, endF, midF, NULL} // Waits specified number of frames, then automatically does a button press without waiting for player's input. -1 disables it.
|
||||
|
||||
// Note for the spriteId: first 4 bits(0xF) are the actual spriteId, but sometimes a 0x40 flag is attached to it, but it has no practical use. Could be different in Blue?
|
||||
#define PORTRAIT(place, id, sprite) { 0x2e, place, id, sprite, 0, NULL } // Sets up portrait data for the specified speaker
|
||||
#define PORTRAIT_REP(id, sprite) { 0x2e, PLACEMENT_COUNT, id, sprite, 0, NULL } // Same as the above, but it assumes the last used placement for the speaker. Useful in long scripts, where you don't need to remember all the placements.
|
||||
#define PORTRAIT(place, id, sprite) { 0x2e, place, id, sprite, 0, NULL } // Sets up portrait data for the specified speaker
|
||||
#define PORTRAIT_REP(id, sprite) { 0x2e, PLACEMENT_COUNT, id, sprite, 0, NULL } // Same as the above, but it assumes the last used placement for the speaker. Useful in long scripts, where you don't need to remember all the placements.
|
||||
|
||||
#define PORTRAIT_POS(id, x, y) { 0x2f, 0, id, x, y, NULL } // Sets portrait delta position, which modifies the portrait's position on the screen.
|
||||
#define PORTRAIT_POS(id, x, y) { 0x2f, 0, id, x, y, NULL } // Sets portrait delta position, which modifies the portrait's position on the screen.
|
||||
// 30..39: various text printing
|
||||
#define TEXTBOX_CLEAR { 0x30, 0, 0, 0, 0, NULL }
|
||||
#define TEXTBOX_CLEAR2 { 0x31, 0, 0, 0, 0, NULL } // Used rarely, I don't think there's a functional difference between 0x30 and 0x31.
|
||||
#define MSG_INSTANT(msg) { 0x32, 0, -1, 0, 0, msg }
|
||||
#define MSG_NPC(id, msg) { 0x34, 0, id, 0, 0, msg } // ID is portrait id of the npc. -1 means no portrait
|
||||
#define MSG_LETTER(msg) { 0x35, 0, -1, 0, 0, msg }
|
||||
#define MSG_ON_BG(msg) { 0x37, 0, -1, 0, 0, msg } // Prints raw text on bg without any windows. Used for the intro portal messages. To advance the text player needs to press a button.
|
||||
#define MSG_ON_BG2(msg) { 0x38, 0, -1, 0, 0, msg } // Identical to the above, used literally once for just a newline.
|
||||
#define MSG_ON_BG_AUTO(u, msg) { 0x39, 0, u, 0, 0, msg } // Similar to the above, but the message appears and fades automatically, without any player's input. Used for narration text. The short argument isn't really used, but needs to be greater than 0.
|
||||
#define TEXTBOX_CLEAR { 0x30, 0, 0, 0, 0, NULL }
|
||||
#define TEXTBOX_CLEAR2 { 0x31, 0, 0, 0, 0, NULL } // Used rarely, I don't think there's a functional difference between 0x30 and 0x31.
|
||||
#define MSG_INSTANT(msg) { 0x32, 0, -1, 0, 0, msg }
|
||||
#define MSG_NPC(id, msg) { 0x34, 0, id, 0, 0, msg } // ID is portrait id of the npc. -1 means no portrait
|
||||
#define MSG_LETTER(msg) { 0x35, 0, -1, 0, 0, msg }
|
||||
#define MSG_ON_BG(msg) { 0x37, 0, -1, 0, 0, msg } // Prints raw text on bg without any windows. Used for the intro portal messages. To advance the text player needs to press a button.
|
||||
#define MSG_ON_BG2(msg) { 0x38, 0, -1, 0, 0, msg } // Identical to the above, used literally once for just a newline.
|
||||
#define MSG_ON_BG_AUTO(u, msg) { 0x39, 0, u, 0, 0, msg } // Similar to the above, but the message appears and fades automatically, without any player's input. Used for narration text. The short argument isn't really used, but needs to be greater than 0.
|
||||
// 3a: yes/no choice (only used for saving)
|
||||
// 3b: uber command (conditional jump)
|
||||
#define SPECIAL_TEXT(k, i, t) { 0x3C, k, 0, i, t, NULL }
|
||||
#define RENAME_ALLY(id) { 0x3D, 0, 0, id, 0, NULL }
|
||||
#define RENAME_TEAM { 0x3E, 0, 0, 0, 0, NULL }
|
||||
#define SPECIAL_TEXT(k, i, t) { 0x3C, k, 0, i, t, NULL }
|
||||
#define RENAME_ALLY(id) { 0x3D, 0, 0, id, 0, NULL }
|
||||
#define RENAME_TEAM { 0x3E, 0, 0, 0, 0, NULL }
|
||||
// 3f: input box?
|
||||
// 40: unused?
|
||||
#define REMOVE_ITEMSTACK(i) { 0x41, 0, i, 0, 0, NULL }
|
||||
#define MUSIC_STOP_ALL { 0x42, 0, 0, 0, 0, NULL }
|
||||
#define MUSIC_FADEOUT_ALL(f) { 0x43, 0, f, 0, 0, NULL }
|
||||
#define BGM_SWITCH(i) { 0x44, 0, 0, i, 0, NULL }
|
||||
#define BGM_FADEIN(f,i) { 0x45, 0, f, i, 0, NULL }
|
||||
#define BGM_QUEUE(i) { 0x46, 0, 0, i, 0, NULL }
|
||||
#define BGM_STOP { 0x47, 0, 0, 0, 0, NULL }
|
||||
#define BGM_FADEOUT(f) { 0x48, 0, f, 0, 0, NULL }
|
||||
#define FANFARE_PLAY(i) { 0x49, 0, 0, i, 0, NULL }
|
||||
#define FANFARE_STOP(i) { 0x4a, 0, 0, i, 0, NULL }
|
||||
#define FANFARE_FADEOUT(f,i) { 0x4b, 0, f, i, 0, NULL }
|
||||
#define FANFARE_PLAY2(i) { 0x4c, 0, 0, i, 0, NULL }
|
||||
#define FANFARE_STOP2(i) { 0x4d, 0, 0, i, 0, NULL }
|
||||
#define FANFARE_FADEOUT2(f,i) { 0x4e, 0, f, i, 0, NULL }
|
||||
#define REMOVE_ITEMSTACK(i) { 0x41, 0, i, 0, 0, NULL }
|
||||
#define MUSIC_STOP_ALL { 0x42, 0, 0, 0, 0, NULL }
|
||||
#define MUSIC_FADEOUT_ALL(f) { 0x43, 0, f, 0, 0, NULL }
|
||||
#define BGM_SWITCH(i) { 0x44, 0, 0, i, 0, NULL }
|
||||
#define BGM_FADEIN(f,i) { 0x45, 0, f, i, 0, NULL }
|
||||
#define BGM_QUEUE(i) { 0x46, 0, 0, i, 0, NULL }
|
||||
#define BGM_STOP { 0x47, 0, 0, 0, 0, NULL }
|
||||
#define BGM_FADEOUT(f) { 0x48, 0, f, 0, 0, NULL }
|
||||
#define FANFARE_PLAY(i) { 0x49, 0, 0, i, 0, NULL }
|
||||
#define FANFARE_STOP(i) { 0x4a, 0, 0, i, 0, NULL }
|
||||
#define FANFARE_FADEOUT(f,i) { 0x4b, 0, f, i, 0, NULL }
|
||||
#define FANFARE_PLAY2(i) { 0x4c, 0, 0, i, 0, NULL }
|
||||
#define FANFARE_STOP2(i) { 0x4d, 0, 0, i, 0, NULL }
|
||||
#define FANFARE_FADEOUT2(f,i) { 0x4e, 0, f, i, 0, NULL }
|
||||
// 4f..57: more movement/position? Some sprite stuff?
|
||||
#define SELECT_ANIMATION(id) { 0x54, 0, id, 0, 0, NULL }
|
||||
#define SELECT_ANIMATION(id) { 0x54, 0, id, 0, 0, NULL }
|
||||
// 58..95: position and movement-related
|
||||
// For WARP/WALK, every map has a list of predefined locations.
|
||||
#define WARP_WAYPOINT(u, w) { 0x5B, u, 0, w, 0, NULL }
|
||||
#define WALK_RELATIVE(spd, h, v){ 0x6A, 0, spd, h, v, NULL }
|
||||
#define WALK_GRID(spd, w) { 0x6B, 0, spd, w, 0, NULL }
|
||||
#define WALK_DIRECT(spd, w) { 0x7A, 0, spd, w, 0, NULL }
|
||||
#define CAMERA_PAN(u1, u2) { 0x86, 0, u1, u2, 0, NULL }
|
||||
#define ROTATE(spd, d, o) { 0x91, spd, d, o, 0, NULL } // d=cw/ccw/shortest, o=final orientation
|
||||
#define WARP_WAYPOINT(u, w) { 0x5B, u, 0, w, 0, NULL }
|
||||
#define WALK_RELATIVE(spd, h, v) { 0x6A, 0, spd, h, v, NULL }
|
||||
#define WALK_GRID(spd, w) { 0x6B, 0, spd, w, 0, NULL }
|
||||
#define WALK_DIRECT(spd, w) { 0x7A, 0, spd, w, 0, NULL }
|
||||
#define CAMERA_PAN(u1, u2) { 0x86, 0, u1, u2, 0, NULL }
|
||||
#define ROTATE(spd, d, o) { 0x91, spd, d, o, 0, NULL } // d=cw/ccw/shortest, o=final orientation
|
||||
// 96: unused?
|
||||
// 97: ??? (maybe more camera?)
|
||||
#define CAMERA_INIT_PAN { 0x98, 0, 0, 0, 0, NULL }
|
||||
#define CAMERA_END_PAN { 0x99, 0, 0, 0, 0, NULL }
|
||||
#define CAMERA_INIT_PAN { 0x98, 0, 0, 0, 0, NULL }
|
||||
#define CAMERA_END_PAN { 0x99, 0, 0, 0, 0, NULL }
|
||||
// 9a: ??? (maybe more camera?)
|
||||
// 9b..a3: camera-related
|
||||
#define RESET_ARRAY(v) { 0xA4, 0, v, 0, 0, NULL }
|
||||
#define CLEAR_ARRAY(v) { 0xA5, 0, v, 0, 0, NULL }
|
||||
#define UPDATE_VARINT(o,v,i) { 0xA6, o, v, i, 0, NULL }
|
||||
#define UPDATE_VARVAR(o,a,b) { 0xA7, o, a, b, 0, NULL }
|
||||
#define SET_ARRAYVAL(v,i,x) { 0xA8, 0, v, i, x, NULL }
|
||||
#define SCENARIO_CALC(v,a,b) { 0xA9, 0, v, a, b, NULL }
|
||||
#define SCENARIO_ADVANCE(v,a) { 0xAA, 0, v, a, 0, NULL }
|
||||
#define SET_DUNGEON_RES(r,e) { 0xAB, 0, r, e, 0, NULL }
|
||||
#define SET_PLAYER_KIND(k) { 0xAC, 0, k, 0, 0, NULL }
|
||||
#define RESET_ARRAY(v) { 0xA4, 0, v, 0, 0, NULL }
|
||||
#define CLEAR_ARRAY(v) { 0xA5, 0, v, 0, 0, NULL }
|
||||
#define UPDATE_VARINT(o,v,i) { 0xA6, o, v, i, 0, NULL }
|
||||
#define UPDATE_VARVAR(o,a,b) { 0xA7, o, a, b, 0, NULL }
|
||||
#define SET_ARRAYVAL(v,i,x) { 0xA8, 0, v, i, x, NULL }
|
||||
#define SCENARIO_CALC(v,a,b) { 0xA9, 0, v, a, b, NULL }
|
||||
#define SCENARIO_ADVANCE(v,a) { 0xAA, 0, v, a, 0, NULL }
|
||||
#define SET_DUNGEON_RES(r,e) { 0xAB, 0, r, e, 0, NULL }
|
||||
#define SET_PLAYER_KIND(k) { 0xAC, 0, k, 0, 0, NULL }
|
||||
// ad..b2: opaque functions
|
||||
#define JUMPIF_EQUAL(v,i,l) { 0xB3, l, v, i, 0, NULL }
|
||||
#define JUMPIF(o,v,i,l) { 0xB4, o, l, v, i, NULL }
|
||||
#define JUMPIF_2(o,a,b,l) { 0xB5, o, l, a, b, NULL }
|
||||
#define JUMPIF_ARRAY(v,i,l) { 0xB6, 0, l, v, i, NULL }
|
||||
#define JUMPIF_SUM(o,v,i,l) { 0xB7, o, l, v, i, NULL }
|
||||
#define JUMPIF_SCENE_LT(v,a,b,l){ 0xB8, l, v, a, b, NULL }
|
||||
#define JUMPIF_SCENE_EQ(v,a,b,l){ 0xB9, l, v, a, b, NULL }
|
||||
#define JUMPIF_SCENE_GT(v,a,b,l){ 0xBA, l, v, a, b, NULL }
|
||||
#define JUMPIF_SCENARIOCHECK(i,l){0xBB, l, i, 0, 0, NULL }
|
||||
#define JUMPIF_EQUAL(v,i,l) { 0xB3, l, v, i, 0, NULL }
|
||||
#define JUMPIF(o,v,i,l) { 0xB4, o, l, v, i, NULL }
|
||||
#define JUMPIF_2(o,a,b,l) { 0xB5, o, l, a, b, NULL }
|
||||
#define JUMPIF_ARRAY(v,i,l) { 0xB6, 0, l, v, i, NULL }
|
||||
#define JUMPIF_SUM(o,v,i,l) { 0xB7, o, l, v, i, NULL }
|
||||
#define JUMPIF_SCENE_LT(v,a,b,l) { 0xB8, l, v, a, b, NULL }
|
||||
#define JUMPIF_SCENE_EQ(v,a,b,l) { 0xB9, l, v, a, b, NULL }
|
||||
#define JUMPIF_SCENE_GT(v,a,b,l) { 0xBA, l, v, a, b, NULL }
|
||||
#define JUMPIF_SCENARIOCHECK(i,l) { 0xBB, l, i, 0, 0, NULL }
|
||||
// functions need reversing
|
||||
#define JUMPIF_UNK_BC(i,l) { 0xBC, l, i, 0, 0, NULL }
|
||||
#define JUMPIF_UNK_BD(i,l) { 0xBD, l, 0, i, 0, NULL }
|
||||
#define JUMPIF_UNK_BE(l) { 0xBE, l, 0, 0, 0, NULL }
|
||||
#define JUMPIF_HASITEM(i,l) { 0xBF, l, i, 0, 0, NULL }
|
||||
#define CJUMP_VAR(v) { 0xC0, 0, v, 0, 0, NULL }
|
||||
#define CJUMP_CALC_VI(o,v,i) { 0xC1, o, v, i, 0, NULL }
|
||||
#define CJUMP_CALC_VV(o,a,b) { 0xC2, o, a, b, 0, NULL }
|
||||
#define CJUMP_RANDOM(h) { 0xC3, 0, h, 0, 0, NULL }
|
||||
#define CJUMP_SCENARIO_0(v) { 0xC4, 0, v, 0, 0, NULL }
|
||||
#define CJUMP_SCENARIO_1(v) { 0xC5, 0, v, 0, 0, NULL }
|
||||
#define JUMPIF_UNK_BC(i,l) { 0xBC, l, i, 0, 0, NULL }
|
||||
#define JUMPIF_UNK_BD(i,l) { 0xBD, l, 0, i, 0, NULL }
|
||||
#define JUMPIF_UNK_BE(l) { 0xBE, l, 0, 0, 0, NULL }
|
||||
#define JUMPIF_HASITEM(i,l) { 0xBF, l, i, 0, 0, NULL }
|
||||
#define CJUMP_VAR(v) { 0xC0, 0, v, 0, 0, NULL }
|
||||
#define CJUMP_CALC_VI(o,v,i) { 0xC1, o, v, i, 0, NULL }
|
||||
#define CJUMP_CALC_VV(o,a,b) { 0xC2, o, a, b, 0, NULL }
|
||||
#define CJUMP_RANDOM(h) { 0xC3, 0, h, 0, 0, NULL }
|
||||
#define CJUMP_SCENARIO_0(v) { 0xC4, 0, v, 0, 0, NULL }
|
||||
#define CJUMP_SCENARIO_1(v) { 0xC5, 0, v, 0, 0, NULL }
|
||||
// wtf is c6
|
||||
#define CJUMP_UNK_C6(a) { 0xC6, 0, 0, a, 0, NULL }
|
||||
#define CJUMP_DIRECTION { 0xC7, 0, 0, 0, 0, NULL }
|
||||
#define CJUMP_UNK_C6(a) { 0xC6, 0, 0, a, 0, NULL }
|
||||
#define CJUMP_DIRECTION { 0xC7, 0, 0, 0, 0, NULL }
|
||||
// C8: distance calculation with that weird 80A7AE8
|
||||
#define CJUMP_UNK_C8(a) { 0xC8, 0, 0, a, 0, NULL }
|
||||
#define CJUMP_UNK_C8(a) { 0xC8, 0, 0, a, 0, NULL }
|
||||
// C9: ditto, but with one hardcoded pos of four
|
||||
#define CJUMP_UNK_C9(a) { 0xC9, 0, 0, a, 0, NULL }
|
||||
#define CJUMP_DIR_TO_LINK(l) { 0xCA, 0, 0, l, 0, NULL }
|
||||
#define CJUMP_UNK_C9(a) { 0xC9, 0, 0, a, 0, NULL }
|
||||
#define CJUMP_DIR_TO_LINK(l) { 0xCA, 0, 0, l, 0, NULL }
|
||||
// wtf is cb
|
||||
#define CJUMP_UNK_CB(h) { 0xCB, 0, h, 0, 0, NULL }
|
||||
#define COND_EQUAL(v,t) { 0xCC, 0, t, v, 0, NULL }
|
||||
#define COND(o,v,t) { 0xCD, o, t, v, 0, NULL }
|
||||
#define COND_VAR(o,v,t) { 0xCE, o, t, v, 0, NULL }
|
||||
#define MSG_VAR(b,v,a) { 0xCF, b, v, a, 0, NULL }
|
||||
#define VARIANT(c,s) { 0xD0, 0, c, 0, 0, s }
|
||||
#define VARIANT_DEFAULT(s) { 0xD1, 0, 0, 0, 0, s }
|
||||
#define ASK_DEBUG(b,h,a,s) { 0xD2, b, h, a, 0, s }
|
||||
#define ASK1(b,h,a,s) { 0xD3, b, h, a, 0, s }
|
||||
#define ASK2(b,h,a,s) { 0xD4, b, h, a, 0, s }
|
||||
#define ASK3(b,h,a,s) { 0xD5, b, h, a, 0, s }
|
||||
#define ASK1_VAR(b,h,a,v) { 0xD6, b, h, a, v, NULL }
|
||||
#define ASK2_VAR(b,h,a,v) { 0xD7, b, h, a, v, NULL }
|
||||
#define ASK3_VAR(b,h,a,v) { 0xD8, b, h, a, v, NULL }
|
||||
#define CHOICE(h,s) { 0xD9, 0, h, 0, 0, s }
|
||||
#define WAIT(f) { 0xDB, 0, f, 0, 0, NULL }
|
||||
#define WAIT_RANDOM(a,b) { 0xDC, 0, a, b, 0, NULL }
|
||||
#define CJUMP_UNK_CB(h) { 0xCB, 0, h, 0, 0, NULL }
|
||||
#define COND_EQUAL(v,t) { 0xCC, 0, t, v, 0, NULL }
|
||||
#define COND(o,v,t) { 0xCD, o, t, v, 0, NULL }
|
||||
#define COND_VAR(o,v,t) { 0xCE, o, t, v, 0, NULL }
|
||||
#define MSG_VAR(b,v,a) { 0xCF, b, v, a, 0, NULL }
|
||||
#define VARIANT(c,s) { 0xD0, 0, c, 0, 0, s }
|
||||
#define VARIANT_DEFAULT(s) { 0xD1, 0, 0, 0, 0, s }
|
||||
#define ASK_DEBUG(b,h,a,s) { 0xD2, b, h, a, 0, s }
|
||||
#define ASK1(b,h,a,s) { 0xD3, b, h, a, 0, s }
|
||||
#define ASK2(b,h,a,s) { 0xD4, b, h, a, 0, s }
|
||||
#define ASK3(b,h,a,s) { 0xD5, b, h, a, 0, s }
|
||||
#define ASK1_VAR(b,h,a,v) { 0xD6, b, h, a, v, NULL }
|
||||
#define ASK2_VAR(b,h,a,v) { 0xD7, b, h, a, v, NULL }
|
||||
#define ASK3_VAR(b,h,a,v) { 0xD8, b, h, a, v, NULL }
|
||||
#define CHOICE(h,s) { 0xD9, 0, h, 0, 0, s }
|
||||
#define WAIT(f) { 0xDB, 0, f, 0, 0, NULL }
|
||||
#define WAIT_RANDOM(a,b) { 0xDC, 0, a, b, 0, NULL }
|
||||
#define STOP_ANIMATION_ON_CURRENT_FRAME { 0xDD, 0, 0, 0, 0, NULL }
|
||||
// de..e2 - various HandleAction commands
|
||||
// e3..e5 - locking/condvar commands
|
||||
#define AWAIT_CUE(id) { 0xE3, 0, id, 0, 0, NULL }
|
||||
#define ALERT_CUE(id) { 0xE4, 0, id, 0, 0, NULL }
|
||||
#define CALL_LABEL(x) { 0xE6, 0, x, 0, 0, NULL }
|
||||
#define JUMP_LABEL(x) { 0xE7, 0, x, 0, 0, NULL }
|
||||
#define CALL_SCRIPT(x) { 0xE8, 0, x, 0, 0, NULL }
|
||||
#define JUMP_SCRIPT(x) { 0xE9, 0, x, 0, 0, NULL }
|
||||
#define CALL_STATION(g,s) { 0xEA, s, g,-1, 0, NULL }
|
||||
#define JUMP_STATION(g,s) { 0xEB, s, g,-1, 0, NULL }
|
||||
#define EXECUTE_MAP_VAR(v) { 0xEC, 0, v, 0, 0, NULL }
|
||||
#define RESET_CALLER { 0xED, 0, 0, 0, 0, NULL }
|
||||
#define RET_DIRECT { 0xEE, 0, 0, 0, 0, NULL }
|
||||
#define RET { 0xEF, 0, 0, 0, 0, NULL }
|
||||
#define HALT { 0xF0, 0, 0, 0, 0, NULL }
|
||||
#define END_DELETE { 0xF1, 0, 0, 0, 0, NULL }
|
||||
#define LABEL(x) { 0xF4, 0, x, 0, 0, NULL }
|
||||
#define AWAIT_CUE(id) { 0xE3, 0, id, 0, 0, NULL }
|
||||
#define ALERT_CUE(id) { 0xE4, 0, id, 0, 0, NULL }
|
||||
#define CALL_LABEL(x) { 0xE6, 0, x, 0, 0, NULL }
|
||||
#define JUMP_LABEL(x) { 0xE7, 0, x, 0, 0, NULL }
|
||||
#define CALL_SCRIPT(x) { 0xE8, 0, x, 0, 0, NULL }
|
||||
#define JUMP_SCRIPT(x) { 0xE9, 0, x, 0, 0, NULL }
|
||||
#define CALL_STATION(g,s) { 0xEA, s, g,-1, 0, NULL }
|
||||
#define JUMP_STATION(g,s) { 0xEB, s, g,-1, 0, NULL }
|
||||
#define EXECUTE_MAP_VAR(v) { 0xEC, 0, v, 0, 0, NULL }
|
||||
#define RESET_CALLER { 0xED, 0, 0, 0, 0, NULL }
|
||||
#define RET_DIRECT { 0xEE, 0, 0, 0, 0, NULL }
|
||||
#define RET { 0xEF, 0, 0, 0, 0, NULL }
|
||||
#define HALT { 0xF0, 0, 0, 0, 0, NULL }
|
||||
#define END_DELETE { 0xF1, 0, 0, 0, 0, NULL }
|
||||
#define LABEL(x) { 0xF4, 0, x, 0, 0, NULL }
|
||||
#ifdef NONMATCHING
|
||||
#define DEBUGINFO { 0xF6, 0, __LINE__, 0, 0, __FILE__ }
|
||||
#define DEBUGINFO { 0xF6, 0, __LINE__, 0, 0, __FILE__ }
|
||||
#define DEBUGINFO_O(originalLineNum) DEBUGINFO
|
||||
#else
|
||||
#define DEBUGINFO { 0xF6, 0, __LINE__, 0, 0, FAKE_FILENAME }
|
||||
#define DEBUGINFO_O(originalLineNum) { 0xF6, 0, originalLineNum, 0, 0, FAKE_FILENAME }
|
||||
#endif
|
||||
|
||||
// function/trigger/script names
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g0_s0_station_sref_script[] = { /* 0x820fd30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(162),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs162_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs162_g0_s0_station_sref_script }; /* 0x820fd9c */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g1_s0_station_sref_script[] = { /* 0x820fda8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(4),
|
||||
@@ -31,7 +31,7 @@ static const struct ScriptCommand s_gs162_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g1_s0_station_sref_script }; /* 0x820fe48 */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g1_s0_lives0_dlg0[] = { /* 0x820fe54 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -58,7 +58,7 @@ static const struct ScriptCommand s_gs162_g1_s0_lives0_dlg0[] = { /* 0x820fe54 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g2_s0_station_sref_script[] = { /* 0x8210084 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(61),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(4),
|
||||
@@ -75,14 +75,14 @@ static const struct ScriptCommand s_gs162_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g2_s0_station_sref_script }; /* 0x8210144 */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g2_s0_eff0_script[] = { /* 0x8210150 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
END_DELETE,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs162_g2_s0_lives0_dlg0[] = { /* 0x8210190 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(85),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -118,7 +118,7 @@ static const struct ScriptCommand s_gs162_g2_s0_lives0_dlg0[] = { /* 0x8210190 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g3_s0_station_sref_script[] = { /* 0x82104bc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(4),
|
||||
@@ -133,7 +133,7 @@ static const struct ScriptCommand s_gs162_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g3_s0_station_sref_script }; /* 0x821055c */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g3_s0_lives0_dlg0[] = { /* 0x8210568 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(136),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -164,7 +164,7 @@ static const struct ScriptCommand s_gs162_g3_s0_lives0_dlg0[] = { /* 0x8210568 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g3_s1_lives0_dlg0[] = { /* 0x82107fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(167),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(23),
|
||||
STOP_ANIMATION_ON_CURRENT_FRAME,
|
||||
@@ -227,7 +227,7 @@ static const struct ScriptCommand s_gs162_g3_s1_lives0_dlg0[] = { /* 0x82107fc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs162_g4_s0_station_sref_script[] = { /* 0x8210bbc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(230),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(4),
|
||||
@@ -242,7 +242,7 @@ static const struct ScriptCommand s_gs162_g4_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g4_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g4_s0_station_sref_script }; /* 0x8210c5c */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g4_s0_lives0_dlg0[] = { /* 0x8210c68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(245),
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL },
|
||||
@@ -311,7 +311,7 @@ static const struct ScriptCommand s_gs162_g4_s0_lives0_dlg0[] = { /* 0x8210c68 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g4_s1_lives0_dlg0[] = { /* 0x821124c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(314),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(23),
|
||||
@@ -375,7 +375,7 @@ static const struct ScriptCommand s_gs162_g4_s1_lives0_dlg0[] = { /* 0x821124c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs162_g5_s0_station_sref_script[] = { /* 0x821161c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(378),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(5),
|
||||
@@ -389,7 +389,7 @@ static const struct ScriptCommand s_gs162_g5_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g5_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g5_s0_station_sref_script }; /* 0x82116ac */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g5_s0_lives0_dlg0[] = { /* 0x82116b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(392),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -410,7 +410,7 @@ static const struct ScriptCommand s_gs162_g5_s0_lives0_dlg0[] = { /* 0x82116b8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g6_s0_station_sref_script[] = { /* 0x82117e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(413),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(5),
|
||||
@@ -426,7 +426,7 @@ static const struct ScriptCommand s_gs162_g6_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g6_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g6_s0_station_sref_script }; /* 0x8211894 */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(429),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -566,7 +566,7 @@ static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g6_s1_lives0_dlg0[] = { /* 0x8212774 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(569),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(23),
|
||||
@@ -673,7 +673,7 @@ static const struct ScriptCommand s_gs162_g6_s1_lives0_dlg0[] = { /* 0x8212774 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs162_g7_s0_station_sref_script[] = { /* 0x8212df4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(676),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
{ 0x27, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL },
|
||||
@@ -685,7 +685,7 @@ static const struct ScriptCommand s_gs162_g7_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g7_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g7_s0_station_sref_script }; /* 0x8212e64 */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g7_s0_lives0_dlg0[] = { /* 0x8212e70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(688),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -702,7 +702,7 @@ static const struct ScriptCommand s_gs162_g7_s0_lives0_dlg0[] = { /* 0x8212e70 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g7_s0_lives1_dlg0[] = { /* 0x8212f40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(705),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
@@ -710,7 +710,7 @@ static const struct ScriptCommand s_gs162_g7_s0_lives1_dlg0[] = { /* 0x8212f40 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs162_g8_s0_station_sref_script[] = { /* 0x8212f90 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(713),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(5),
|
||||
@@ -725,7 +725,7 @@ static const struct ScriptCommand s_gs162_g8_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g8_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g8_s0_station_sref_script }; /* 0x8213030 */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g8_s0_lives0_dlg0[] = { /* 0x821303c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(728),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -825,7 +825,7 @@ static const struct ScriptCommand s_gs162_g8_s0_lives0_dlg0[] = { /* 0x821303c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs162_g8_s1_lives0_dlg0[] = { /* 0x8213b50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(828),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(23),
|
||||
@@ -975,7 +975,7 @@ static const struct ScriptCommand s_gs162_g8_s1_lives0_dlg0[] = { /* 0x8213b50 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs162_g9_s0_station_sref_script[] = { /* 0x8214480 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(978),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_SWITCH(5),
|
||||
@@ -990,7 +990,7 @@ static const struct ScriptCommand s_gs162_g9_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs162_g9_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g9_s0_station_sref_script }; /* 0x8214520 */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g9_s0_lives0_dlg0[] = { /* 0x821452c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(993),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -1144,7 +1144,7 @@ static const struct ScriptCommand s_gs162_g9_s0_lives0_dlg0[] = { /* 0x821452c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g9_s1_lives0_dlg0[] = { /* 0x82157b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1147),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(23),
|
||||
@@ -1234,7 +1234,7 @@ static const struct ScriptCommand s_gs162_g9_s1_lives0_dlg0[] = { /* 0x82157b8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs162_g10_s0_station_sref_script[] = { /* 0x8215d28 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1237),
|
||||
SELECT_MAP(162),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x27, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL },
|
||||
@@ -1246,7 +1246,7 @@ static const struct ScriptCommand s_gs162_g10_s0_station_sref_script[] = { /* 0x
|
||||
static const struct ScriptRef s_gs162_g10_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g10_s0_station_sref_script }; /* 0x8215d98 */
|
||||
|
||||
static const struct ScriptCommand s_gs162_g10_s0_lives0_dlg0[] = { /* 0x8215da4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1249),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -1261,7 +1261,7 @@ static const struct ScriptCommand s_gs162_g10_s0_lives0_dlg0[] = { /* 0x8215da4
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs162_g10_s0_lives1_dlg0[] = { /* 0x8215e54 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1264),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs163_g0_s0_station_sref_script[] = { /* 0x82163d4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(163),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs163_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs163_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs163_g0_s0_station_sref_script }; /* 0x8216440 */
|
||||
|
||||
static const struct ScriptCommand s_gs163_g1_s0_station_sref_script[] = { /* 0x821644c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
BGM_STOP,
|
||||
SELECT_MAP(163),
|
||||
{ 0x2d, 0x09, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -38,7 +38,7 @@ static const struct ScriptRef s_gs163_g1_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs163_g1_s0_lives0_dlg0[] = { /* 0x8216594 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(41),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -55,7 +55,7 @@ static const struct ScriptCommand s_gs163_g1_s0_lives0_dlg0[] = { /* 0x8216594 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs163_g2_s0_station_sref_script[] = { /* 0x82166dc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(58),
|
||||
SELECT_MAP(163),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
{ 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL },
|
||||
@@ -67,7 +67,7 @@ static const struct ScriptCommand s_gs163_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs163_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs163_g2_s0_station_sref_script }; /* 0x821674c */
|
||||
|
||||
static const struct ScriptCommand s_gs163_g2_s0_lives0_dlg0[] = { /* 0x8216758 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(70),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(6),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -86,7 +86,7 @@ static const struct ScriptCommand s_gs163_g2_s0_lives0_dlg0[] = { /* 0x8216758 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs163_g3_s0_station_sref_script[] = { /* 0x8216898 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
SELECT_MAP(163),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_FADEIN(60, 37),
|
||||
@@ -102,7 +102,7 @@ static const struct ScriptCommand s_gs163_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs163_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs163_g3_s0_station_sref_script }; /* 0x8216948 */
|
||||
|
||||
static const struct ScriptCommand s_gs163_g3_s0_lives0_dlg0[] = { /* 0x8216954 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(105),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -256,7 +256,7 @@ static const struct ScriptCommand s_gs163_g3_s0_lives0_dlg0[] = { /* 0x8216954 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs163_g3_s0_lives1_dlg0[] = { /* 0x8217f50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(259),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs164_g0_s0_station_sref_script[] = { /* 0x8218140 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
SELECT_MAP(164),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -18,7 +18,7 @@ static const struct ScriptCommand s_gs164_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs164_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs164_g0_s0_station_sref_script }; /* 0x82181ac */
|
||||
|
||||
static const struct ScriptCommand s_gs164_g1_s0_station_sref_script[] = { /* 0x82181b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
BGM_SWITCH(24),
|
||||
{ 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -41,7 +41,7 @@ static const struct ScriptRef s_gs164_g1_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs164_g1_s0_lives0_dlg0[] = { /* 0x821833c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(44),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
ALERT_CUE(6),
|
||||
@@ -58,7 +58,7 @@ static const struct ScriptCommand s_gs164_g1_s0_lives0_dlg0[] = { /* 0x821833c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs164_g1_s0_lives1_dlg0[] = { /* 0x8218458 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(61),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
CAMERA_PAN(256, 1),
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs165_g0_s0_station_sref_script[] = { /* 0x82185a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
SELECT_MAP(165),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -18,7 +18,7 @@ static const struct ScriptCommand s_gs165_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs165_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs165_g0_s0_station_sref_script }; /* 0x821860c */
|
||||
|
||||
static const struct ScriptCommand s_gs165_g1_s0_station_sref_script[] = { /* 0x8218618 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
BGM_SWITCH(24),
|
||||
{ 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -49,7 +49,7 @@ static const struct ScriptRef s_gs165_g1_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs165_g1_s0_lives0_dlg0[] = { /* 0x8218834 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(52),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
ALERT_CUE(6),
|
||||
@@ -74,7 +74,7 @@ static const struct ScriptCommand s_gs165_g1_s0_lives0_dlg0[] = { /* 0x8218834 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs165_g1_s0_lives1_dlg0[] = { /* 0x8218a34 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(77),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs166_g0_s0_station_sref_script[] = { /* 0x8218bbc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
SELECT_MAP(166),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -18,7 +18,7 @@ static const struct ScriptCommand s_gs166_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs166_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs166_g0_s0_station_sref_script }; /* 0x8218c28 */
|
||||
|
||||
static const struct ScriptCommand s_gs166_g1_s0_station_sref_script[] = { /* 0x8218c34 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
SELECT_MAP(166),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL },
|
||||
@@ -30,7 +30,7 @@ static const struct ScriptCommand s_gs166_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs166_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs166_g1_s0_station_sref_script }; /* 0x8218ca4 */
|
||||
|
||||
static const struct ScriptCommand s_gs166_g1_s0_lives0_dlg0[] = { /* 0x8218cb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(33),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
ALERT_CUE(6),
|
||||
@@ -56,7 +56,7 @@ static const struct ScriptCommand s_gs166_g1_s0_lives0_dlg0[] = { /* 0x8218cb0 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs166_g1_s0_lives1_dlg0[] = { /* 0x8218e38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(59),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -72,7 +72,7 @@ static const struct ScriptCommand s_gs166_g1_s0_lives1_dlg0[] = { /* 0x8218e38 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs166_g2_s0_station_sref_script[] = { /* 0x8218f08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(75),
|
||||
SELECT_MAP(166),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL },
|
||||
@@ -99,7 +99,7 @@ static const struct ScriptRef s_gs166_g2_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs166_g2_s0_lives0_dlg0[] = { /* 0x821915c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -148,7 +148,7 @@ static const struct ScriptCommand s_gs166_g2_s0_lives0_dlg0[] = { /* 0x821915c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs166_g2_s0_lives1_dlg0[] = { /* 0x821952c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(151),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs167_g0_s0_station_sref_script[] = { /* 0x8219784 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(15),
|
||||
SELECT_MAP(167),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -21,7 +21,7 @@ static const struct ScriptCommand s_gs167_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs167_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs167_g0_s0_station_sref_script }; /* 0x82197f0 */
|
||||
|
||||
static const struct ScriptCommand s_gs167_g1_s0_station_sref_script[] = { /* 0x82197fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(24),
|
||||
SELECT_MAP(167),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL },
|
||||
@@ -33,7 +33,7 @@ static const struct ScriptCommand s_gs167_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs167_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs167_g1_s0_station_sref_script }; /* 0x821986c */
|
||||
|
||||
static const struct ScriptCommand s_gs167_g2_s0_station_sref_script[] = { /* 0x8219878 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(36),
|
||||
SELECT_MAP(167),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(24),
|
||||
@@ -63,7 +63,7 @@ static const struct ScriptRef s_gs167_g2_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs167_g2_s0_eff0_script[] = { /* 0x8219b58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(66),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -79,7 +79,7 @@ static const struct ScriptCommand s_gs167_g2_s0_eff0_script[] = { /* 0x8219b58 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs167_g2_s0_lives0_dlg0[] = { /* 0x8219c28 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -262,7 +262,7 @@ static const struct ScriptCommand s_gs167_g2_s0_lives0_dlg0[] = { /* 0x8219c28 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs167_g2_s0_lives1_dlg0[] = { /* 0x821b5d4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(265),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs168_g0_s0_station_sref_script[] = { /* 0x821ba24 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(168),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs168_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs168_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs168_g0_s0_station_sref_script }; /* 0x821ba90 */
|
||||
|
||||
static const struct ScriptCommand s_gs168_g1_s0_station_sref_script[] = { /* 0x821ba9c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(168),
|
||||
SELECT_WEATHER(-1),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
@@ -30,7 +30,7 @@ static const struct ScriptCommand s_gs168_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs168_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs168_g1_s0_station_sref_script }; /* 0x821bb2c */
|
||||
|
||||
static const struct ScriptCommand s_gs168_g1_s0_eff0_script[] = { /* 0x821bb38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(33),
|
||||
CAMERA_END_PAN,
|
||||
CAMERA_INIT_PAN,
|
||||
AWAIT_CUE(4),
|
||||
@@ -45,7 +45,7 @@ static const struct ScriptCommand s_gs168_g1_s0_eff0_script[] = { /* 0x821bb38 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs168_g1_s0_lives0_dlg0[] = { /* 0x821bbf8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(48),
|
||||
SELECT_ANIMATION(5),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
@@ -152,7 +152,7 @@ static const struct ScriptCommand s_gs168_g1_s0_lives0_dlg0[] = { /* 0x821bbf8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs168_g1_s0_lives1_dlg0[] = { /* 0x821c620 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(155),
|
||||
SELECT_ANIMATION(5),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -199,7 +199,7 @@ static const struct ScriptCommand s_gs168_g1_s0_lives1_dlg0[] = { /* 0x821c620 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs168_g1_s0_lives2_dlg0[] = { /* 0x821c8e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(202),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -212,7 +212,7 @@ static const struct ScriptCommand s_gs168_g1_s0_lives2_dlg0[] = { /* 0x821c8e0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs168_g2_s0_station_sref_script[] = { /* 0x821c980 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(215),
|
||||
SELECT_MAP(168),
|
||||
SELECT_WEATHER(-1),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
@@ -226,7 +226,7 @@ static const struct ScriptCommand s_gs168_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs168_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs168_g2_s0_station_sref_script }; /* 0x821ca10 */
|
||||
|
||||
static const struct ScriptCommand s_gs168_g2_s0_lives0_dlg0[] = { /* 0x821ca1c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(229),
|
||||
SELECT_ANIMATION(5),
|
||||
{ 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -260,7 +260,7 @@ static const struct ScriptCommand s_gs168_g2_s0_lives0_dlg0[] = { /* 0x821ca1c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs168_g2_s0_lives1_dlg0[] = { /* 0x821cc58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(263),
|
||||
SELECT_ANIMATION(5),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs169_g0_s0_station_sref_script[] = { /* 0x821cea0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(169),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs169_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs169_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs169_g0_s0_station_sref_script }; /* 0x821cf0c */
|
||||
|
||||
static const struct ScriptCommand s_gs169_g1_s0_station_sref_script[] = { /* 0x821cf18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(169),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(36),
|
||||
@@ -29,7 +29,7 @@ static const struct ScriptCommand s_gs169_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs169_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs169_g1_s0_station_sref_script }; /* 0x821cf98 */
|
||||
|
||||
static const struct ScriptCommand s_gs169_g1_s0_lives0_dlg0[] = { /* 0x821cfa4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(32),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -47,7 +47,7 @@ static const struct ScriptCommand s_gs169_g1_s0_lives0_dlg0[] = { /* 0x821cfa4 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs169_g1_s0_lives1_dlg0[] = { /* 0x821d0e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(50),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs170_g0_s0_station_sref_script[] = { /* 0x821d1e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(170),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs170_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs170_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs170_g0_s0_station_sref_script }; /* 0x821d250 */
|
||||
|
||||
static const struct ScriptCommand s_gs170_g1_s0_station_sref_script[] = { /* 0x821d25c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(170),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_FADEIN(30, 36),
|
||||
@@ -30,7 +30,7 @@ static const struct ScriptCommand s_gs170_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs170_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs170_g1_s0_station_sref_script }; /* 0x821d2ec */
|
||||
|
||||
static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(33),
|
||||
SELECT_ANIMATION(5),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
@@ -230,7 +230,7 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs170_g1_s0_lives1_dlg0[] = { /* 0x821ec08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(233),
|
||||
SELECT_ANIMATION(5),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -249,7 +249,7 @@ static const struct ScriptCommand s_gs170_g1_s0_lives1_dlg0[] = { /* 0x821ec08 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs170_g1_s0_lives2_dlg0[] = { /* 0x821ed08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(252),
|
||||
SELECT_ANIMATION(5),
|
||||
AWAIT_CUE(6),
|
||||
SELECT_ANIMATION(2),
|
||||
@@ -259,7 +259,7 @@ static const struct ScriptCommand s_gs170_g1_s0_lives2_dlg0[] = { /* 0x821ed08 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs170_g1_s1_lives0_dlg0[] = { /* 0x821ed78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(262),
|
||||
{ 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
@@ -268,7 +268,7 @@ static const struct ScriptCommand s_gs170_g1_s1_lives0_dlg0[] = { /* 0x821ed78 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs170_g2_s0_station_sref_script[] = { /* 0x821edd8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(271),
|
||||
SELECT_MAP(170),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x27, 0x00, 0x0005, 0x00000020, 0x00ffffff, NULL },
|
||||
@@ -281,7 +281,7 @@ static const struct ScriptCommand s_gs170_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs170_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs170_g2_s0_station_sref_script }; /* 0x821ee58 */
|
||||
|
||||
static const struct ScriptCommand s_gs170_g2_s0_lives0_dlg0[] = { /* 0x821ee64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(284),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -359,7 +359,7 @@ static const struct ScriptCommand s_gs170_g2_s0_lives0_dlg0[] = { /* 0x821ee64 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs170_g2_s0_lives1_dlg0[] = { /* 0x821f534 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(362),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -373,7 +373,7 @@ static const struct ScriptCommand s_gs170_g2_s0_lives1_dlg0[] = { /* 0x821f534 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs170_g2_s0_lives2_dlg0[] = { /* 0x821f5e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(376),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(6),
|
||||
CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC),
|
||||
@@ -386,7 +386,7 @@ static const struct ScriptCommand s_gs170_g2_s0_lives2_dlg0[] = { /* 0x821f5e4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs170_g2_s0_lives3_dlg0[] = { /* 0x821f684 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(389),
|
||||
{ 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs171_g0_s0_station_sref_script[] = { /* 0x821f9bc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
SELECT_MAP(171),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -27,7 +27,7 @@ static const struct ScriptCommand s_gs171_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs171_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs171_g0_s0_station_sref_script }; /* 0x821fa28 */
|
||||
|
||||
static const struct ScriptCommand s_gs171_g1_s0_station_sref_script[] = { /* 0x821fa34 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(30),
|
||||
SELECT_MAP(171),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(19),
|
||||
@@ -40,7 +40,7 @@ static const struct ScriptCommand s_gs171_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs171_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g1_s0_station_sref_script }; /* 0x821fab4 */
|
||||
|
||||
static const struct ScriptCommand s_gs171_g1_s0_eff0_script[] = { /* 0x821fac0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(43),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -53,7 +53,7 @@ static const struct ScriptCommand s_gs171_g1_s0_eff0_script[] = { /* 0x821fac0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g1_s0_lives0_dlg0[] = { /* 0x821fb60 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(56),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x3b, 0x38, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -71,7 +71,7 @@ static const struct ScriptCommand s_gs171_g1_s0_lives0_dlg0[] = { /* 0x821fb60 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs171_g2_s0_station_sref_script[] = { /* 0x821fcb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(74),
|
||||
SELECT_MAP(171),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(19),
|
||||
@@ -84,7 +84,7 @@ static const struct ScriptCommand s_gs171_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs171_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g2_s0_station_sref_script }; /* 0x821fd38 */
|
||||
|
||||
static const struct ScriptCommand s_gs171_g2_s0_eff0_script[] = { /* 0x821fd44 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
{ 0x59, 0x00, 0x0000, -0x000000e0, 0x00000000, NULL },
|
||||
CAMERA_INIT_PAN,
|
||||
AWAIT_CUE(4),
|
||||
@@ -95,7 +95,7 @@ static const struct ScriptCommand s_gs171_g2_s0_eff0_script[] = { /* 0x821fd44 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g2_s0_lives0_dlg0[] = { /* 0x821fdc4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -118,7 +118,7 @@ static const struct ScriptCommand s_gs171_g2_s0_lives0_dlg0[] = { /* 0x821fdc4 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs171_g3_s0_station_sref_script[] = { /* 0x8220004 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
BGM_FADEOUT(30),
|
||||
WAIT(60),
|
||||
SELECT_MAP(171),
|
||||
@@ -133,7 +133,7 @@ static const struct ScriptCommand s_gs171_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs171_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g3_s0_station_sref_script }; /* 0x82200a4 */
|
||||
|
||||
static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(136),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -277,7 +277,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs171_g3_s0_lives1_dlg0[] = { /* 0x8220df0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(280),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -302,7 +302,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives1_dlg0[] = { /* 0x8220df0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g3_s0_lives2_dlg0[] = { /* 0x8220f50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(305),
|
||||
SELECT_ANIMATION(5),
|
||||
WAIT(1),
|
||||
SELECT_ANIMATION(2),
|
||||
@@ -323,7 +323,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives2_dlg0[] = { /* 0x8220f50 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g3_s0_lives3_dlg0[] = { /* 0x8221070 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(326),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -343,7 +343,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives3_dlg0[] = { /* 0x8221070 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g3_s0_lives4_dlg0[] = { /* 0x8221180 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(346),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(10),
|
||||
{ 0x89, 0x60, 0x0100, 0x00000004, 0x00000000, NULL },
|
||||
@@ -352,7 +352,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives4_dlg0[] = { /* 0x8221180 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g3_s0_eff1_script[] = { /* 0x82211e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(355),
|
||||
{ 0x59, 0x00, -0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(9),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000069, 0x00000000, NULL },
|
||||
@@ -379,7 +379,7 @@ static const struct ScriptCommand s_gs171_g3_s0_eff1_script[] = { /* 0x82211e0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_station_sref_script[] = { /* 0x8221360 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(382),
|
||||
SELECT_MAP(171),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(19),
|
||||
@@ -393,7 +393,7 @@ static const struct ScriptCommand s_gs171_g4_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs171_g4_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g4_s0_station_sref_script }; /* 0x82213f0 */
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_lives0_dlg0[] = { /* 0x82213fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(396),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -446,7 +446,7 @@ static const struct ScriptCommand s_gs171_g4_s0_lives0_dlg0[] = { /* 0x82213fc *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_lives1_dlg0[] = { /* 0x8221794 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(449),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -462,7 +462,7 @@ static const struct ScriptCommand s_gs171_g4_s0_lives1_dlg0[] = { /* 0x8221794 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_lives2_dlg0[] = { /* 0x8221864 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(465),
|
||||
SELECT_ANIMATION(5),
|
||||
WAIT(1),
|
||||
SELECT_ANIMATION(2),
|
||||
@@ -475,14 +475,14 @@ static const struct ScriptCommand s_gs171_g4_s0_lives2_dlg0[] = { /* 0x8221864 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_lives3_dlg0[] = { /* 0x8221904 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(478),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_lives4_dlg0[] = { /* 0x8221944 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(485),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x52, 0x00, 0x0000, 0x00010000, 0x00000000, NULL },
|
||||
AWAIT_CUE(12),
|
||||
@@ -497,7 +497,7 @@ static const struct ScriptCommand s_gs171_g4_s0_lives4_dlg0[] = { /* 0x8221944 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_eff1_script[] = { /* 0x8221a04 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(500),
|
||||
AWAIT_CUE(9),
|
||||
{ 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL },
|
||||
{ 0x56, 0x00, 0x0000, 0x000000a5, 0x00000000, NULL },
|
||||
@@ -513,7 +513,7 @@ static const struct ScriptCommand s_gs171_g4_s0_eff1_script[] = { /* 0x8221a04 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_eff2_script[] = { /* 0x8221ad4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(516),
|
||||
{ 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL },
|
||||
AWAIT_CUE(10),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL },
|
||||
@@ -531,7 +531,7 @@ static const struct ScriptCommand s_gs171_g4_s0_eff2_script[] = { /* 0x8221ad4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_eff3_script[] = { /* 0x8221bc4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(534),
|
||||
{ 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL },
|
||||
AWAIT_CUE(11),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL },
|
||||
@@ -549,7 +549,7 @@ static const struct ScriptCommand s_gs171_g4_s0_eff3_script[] = { /* 0x8221bc4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g4_s0_eff4_script[] = { /* 0x8221cb4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(552),
|
||||
{ 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL },
|
||||
AWAIT_CUE(13),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL },
|
||||
@@ -567,7 +567,7 @@ static const struct ScriptCommand s_gs171_g4_s0_eff4_script[] = { /* 0x8221cb4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_station_sref_script[] = { /* 0x8221da4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(570),
|
||||
{ 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_MAP(171),
|
||||
SELECT_ENTITIES(5, 0),
|
||||
@@ -581,7 +581,7 @@ static const struct ScriptCommand s_gs171_g5_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs171_g5_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g5_s0_station_sref_script }; /* 0x8221e34 */
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_eff0_script[] = { /* 0x8221e40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(584),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -596,7 +596,7 @@ static const struct ScriptCommand s_gs171_g5_s0_eff0_script[] = { /* 0x8221e40 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(599),
|
||||
SELECT_ANIMATION(52),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0001, 0x00000007, 0x00000000, NULL },
|
||||
@@ -765,7 +765,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives1_dlg0[] = { /* 0x8222c44 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(768),
|
||||
SELECT_ANIMATION(52),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -808,7 +808,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives1_dlg0[] = { /* 0x8222c44 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives2_dlg0[] = { /* 0x8222ec4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(811),
|
||||
SELECT_ANIMATION(5),
|
||||
WAIT(1),
|
||||
SELECT_ANIMATION(2),
|
||||
@@ -826,7 +826,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives2_dlg0[] = { /* 0x8222ec4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives3_dlg0[] = { /* 0x8222fb4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(829),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -842,7 +842,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives3_dlg0[] = { /* 0x8222fb4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives4_dlg0[] = { /* 0x8223084 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(845),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(9),
|
||||
@@ -864,7 +864,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives4_dlg0[] = { /* 0x8223084 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives5_dlg0[] = { /* 0x82231b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(867),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(11),
|
||||
@@ -886,7 +886,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives5_dlg0[] = { /* 0x82231b4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives6_dlg0[] = { /* 0x82232e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(889),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(12),
|
||||
@@ -906,7 +906,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives6_dlg0[] = { /* 0x82232e4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives7_dlg0[] = { /* 0x82233f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(909),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(13),
|
||||
@@ -926,7 +926,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives7_dlg0[] = { /* 0x82233f4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives8_dlg0[] = { /* 0x8223504 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(929),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(16),
|
||||
WAIT(1),
|
||||
@@ -945,7 +945,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives8_dlg0[] = { /* 0x8223504 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives9_dlg0[] = { /* 0x8223604 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(948),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(15),
|
||||
AWAIT_CUE(15),
|
||||
@@ -962,7 +962,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives9_dlg0[] = { /* 0x8223604 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives10_dlg0[] = { /* 0x82236e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(965),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(14),
|
||||
WAIT(5),
|
||||
@@ -981,7 +981,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives10_dlg0[] = { /* 0x82236e4
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives11_dlg0[] = { /* 0x82237e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(984),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(17),
|
||||
WAIT(8),
|
||||
@@ -1000,7 +1000,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives11_dlg0[] = { /* 0x82237e4
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives12_dlg0[] = { /* 0x82238e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1003),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(18),
|
||||
AWAIT_CUE(18),
|
||||
@@ -1017,7 +1017,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives12_dlg0[] = { /* 0x82238e4
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives13_dlg0[] = { /* 0x82239c4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1020),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(19),
|
||||
WAIT(2),
|
||||
@@ -1036,7 +1036,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives13_dlg0[] = { /* 0x82239c4
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g5_s0_lives14_dlg0[] = { /* 0x8223ac4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1039),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(20),
|
||||
CALL_SCRIPT(JUMP_HAPPY_FUNC),
|
||||
@@ -1054,7 +1054,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives14_dlg0[] = { /* 0x8223ac4
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_station_sref_script[] = { /* 0x8223bb4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1057),
|
||||
SELECT_MAP(171),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(41),
|
||||
@@ -1067,7 +1067,7 @@ static const struct ScriptCommand s_gs171_g6_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs171_g6_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g6_s0_station_sref_script }; /* 0x8223c34 */
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_eff0_script[] = { /* 0x8223c40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1070),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -1086,7 +1086,7 @@ static const struct ScriptCommand s_gs171_g6_s0_eff0_script[] = { /* 0x8223c40 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1089),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -1384,7 +1384,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives1_dlg0[] = { /* 0x8225528 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1387),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -1419,7 +1419,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives1_dlg0[] = { /* 0x8225528 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives2_dlg0[] = { /* 0x8225728 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1422),
|
||||
SELECT_ANIMATION(5),
|
||||
WAIT(1),
|
||||
SELECT_ANIMATION(2),
|
||||
@@ -1473,7 +1473,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives2_dlg0[] = { /* 0x8225728 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives3_dlg0[] = { /* 0x8225a58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1476),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -1487,7 +1487,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives3_dlg0[] = { /* 0x8225a58 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives4_dlg0[] = { /* 0x8225b08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1490),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -1557,7 +1557,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives4_dlg0[] = { /* 0x8225b08 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives5_dlg0[] = { /* 0x8225f38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1560),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -1595,7 +1595,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives5_dlg0[] = { /* 0x8225f38 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives6_dlg0[] = { /* 0x8226168 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1598),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -1636,7 +1636,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives6_dlg0[] = { /* 0x8226168 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives7_dlg0[] = { /* 0x82263c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1639),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -1689,7 +1689,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives7_dlg0[] = { /* 0x82263c8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives8_dlg0[] = { /* 0x82266e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1692),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(16),
|
||||
@@ -1742,7 +1742,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives8_dlg0[] = { /* 0x82266e8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives9_dlg0[] = { /* 0x8226a08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1745),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(14),
|
||||
@@ -1783,7 +1783,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives9_dlg0[] = { /* 0x8226a08 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives10_dlg0[] = { /* 0x8226c68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1786),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(15),
|
||||
@@ -1818,7 +1818,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives10_dlg0[] = { /* 0x8226c68
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives11_dlg0[] = { /* 0x8226e68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1821),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(17),
|
||||
@@ -1856,7 +1856,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives11_dlg0[] = { /* 0x8226e68
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives12_dlg0[] = { /* 0x8227098 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1859),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(18),
|
||||
@@ -1894,7 +1894,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives12_dlg0[] = { /* 0x8227098
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives13_dlg0[] = { /* 0x82272c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1897),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(19),
|
||||
@@ -1945,7 +1945,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives13_dlg0[] = { /* 0x82272c8
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_lives14_dlg0[] = { /* 0x82275c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1948),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(19),
|
||||
@@ -1996,7 +1996,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives14_dlg0[] = { /* 0x82275c8
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s0_eff1_script[] = { /* 0x82278c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1999),
|
||||
AWAIT_CUE(20),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000a7, 0x00000000, NULL },
|
||||
AWAIT_CUE(20),
|
||||
@@ -2067,7 +2067,7 @@ static const struct ScriptCommand s_gs171_g6_s0_eff1_script[] = { /* 0x82278c8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g6_s1_lives0_dlg0[] = { /* 0x8227d08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2070),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -2097,7 +2097,7 @@ static const struct ScriptCommand s_gs171_g6_s1_lives0_dlg0[] = { /* 0x8227d08 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_station_sref_script[] = { /* 0x8227eb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2100),
|
||||
BGM_FADEOUT(240),
|
||||
WAIT(180),
|
||||
SELECT_MAP(171),
|
||||
@@ -2111,7 +2111,7 @@ static const struct ScriptCommand s_gs171_g7_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs171_g7_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g7_s0_station_sref_script }; /* 0x8227f48 */
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives0_dlg0[] = { /* 0x8227f54 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2114),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x09, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0001, 0x00000007, 0x00000000, NULL },
|
||||
@@ -2210,7 +2210,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives0_dlg0[] = { /* 0x8227f54 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives1_dlg0[] = { /* 0x8228974 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2213),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -2223,7 +2223,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives1_dlg0[] = { /* 0x8228974 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives2_dlg0[] = { /* 0x8228a14 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2226),
|
||||
SELECT_ANIMATION(5),
|
||||
WAIT(1),
|
||||
SELECT_ANIMATION(2),
|
||||
@@ -2236,7 +2236,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives2_dlg0[] = { /* 0x8228a14 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives3_dlg0[] = { /* 0x8228ab4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2239),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -2250,7 +2250,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives3_dlg0[] = { /* 0x8228ab4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives4_dlg0[] = { /* 0x8228b64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2253),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(9),
|
||||
@@ -2261,7 +2261,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives4_dlg0[] = { /* 0x8228b64 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives5_dlg0[] = { /* 0x8228be4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2264),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(11),
|
||||
@@ -2272,7 +2272,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives5_dlg0[] = { /* 0x8228be4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives6_dlg0[] = { /* 0x8228c64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2275),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(12),
|
||||
@@ -2283,7 +2283,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives6_dlg0[] = { /* 0x8228c64 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives7_dlg0[] = { /* 0x8228ce4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2286),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(13),
|
||||
@@ -2294,7 +2294,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives7_dlg0[] = { /* 0x8228ce4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives8_dlg0[] = { /* 0x8228d64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2297),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(16),
|
||||
WAIT_RANDOM(0, 15),
|
||||
@@ -2304,7 +2304,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives8_dlg0[] = { /* 0x8228d64 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives9_dlg0[] = { /* 0x8228dd4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2307),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(14),
|
||||
WAIT_RANDOM(0, 15),
|
||||
@@ -2314,7 +2314,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives9_dlg0[] = { /* 0x8228dd4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives10_dlg0[] = { /* 0x8228e44 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2317),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(15),
|
||||
WAIT_RANDOM(0, 15),
|
||||
@@ -2324,7 +2324,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives10_dlg0[] = { /* 0x8228e44
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives11_dlg0[] = { /* 0x8228eb4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2327),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(17),
|
||||
WAIT_RANDOM(0, 15),
|
||||
@@ -2334,7 +2334,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives11_dlg0[] = { /* 0x8228eb4
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives12_dlg0[] = { /* 0x8228f24 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2337),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(18),
|
||||
WAIT_RANDOM(0, 15),
|
||||
@@ -2344,7 +2344,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives12_dlg0[] = { /* 0x8228f24
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives13_dlg0[] = { /* 0x8228f94 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2347),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(19),
|
||||
WAIT_RANDOM(0, 15),
|
||||
@@ -2354,7 +2354,7 @@ static const struct ScriptCommand s_gs171_g7_s0_lives13_dlg0[] = { /* 0x8228f94
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs171_g7_s0_lives14_dlg0[] = { /* 0x8229004 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(2357),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(19),
|
||||
WAIT_RANDOM(0, 15),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs172_g0_s0_station_sref_script[] = { /* 0x82298b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(172),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs172_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs172_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs172_g0_s0_station_sref_script }; /* 0x8229920 */
|
||||
|
||||
static const struct ScriptCommand s_gs172_g1_s0_station_sref_script[] = { /* 0x822992c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(172),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x2d, 0x09, 0x0000, 0x00000022, 0x00000000, NULL },
|
||||
@@ -35,7 +35,7 @@ static const struct ScriptRef s_gs172_g1_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs172_g1_s0_eff0_script[] = { /* 0x8229a2c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(38),
|
||||
CAMERA_INIT_PAN,
|
||||
AWAIT_CUE(4),
|
||||
{ 0x89, 0xe0, 0x004c, 0x00000004, 0x00000000, NULL },
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs173_g0_s0_station_sref_script[] = { /* 0x8229b2c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
SELECT_MAP(173),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -17,7 +17,7 @@ static const struct ScriptCommand s_gs173_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs173_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs173_g0_s0_station_sref_script }; /* 0x8229b98 */
|
||||
|
||||
static const struct ScriptCommand s_gs173_g1_s0_station_sref_script[] = { /* 0x8229ba4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(20),
|
||||
SELECT_MAP(173),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
WAIT(60),
|
||||
@@ -35,7 +35,7 @@ static const struct ScriptCommand s_gs173_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs173_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs173_g1_s0_station_sref_script }; /* 0x8229c74 */
|
||||
|
||||
static const struct ScriptCommand s_gs173_g1_s0_eff0_script[] = { /* 0x8229c80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(38),
|
||||
CAMERA_INIT_PAN,
|
||||
WAIT(60),
|
||||
WALK_GRID(179, 0),
|
||||
@@ -43,7 +43,7 @@ static const struct ScriptCommand s_gs173_g1_s0_eff0_script[] = { /* 0x8229c80 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs173_g2_s0_station_sref_script[] = { /* 0x8229cd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(46),
|
||||
SELECT_MAP(173),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_SWITCH(26),
|
||||
@@ -60,7 +60,7 @@ static const struct ScriptCommand s_gs173_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs173_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs173_g2_s0_station_sref_script }; /* 0x8229d90 */
|
||||
|
||||
static const struct ScriptCommand s_gs173_g2_s0_eff0_script[] = { /* 0x8229d9c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
CAMERA_INIT_PAN,
|
||||
@@ -71,7 +71,7 @@ static const struct ScriptCommand s_gs173_g2_s0_eff0_script[] = { /* 0x8229d9c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs173_g3_s0_station_sref_script[] = { /* 0x8229e1c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(74),
|
||||
SELECT_MAP(173),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_SWITCH(26),
|
||||
@@ -95,7 +95,7 @@ static const struct ScriptCommand s_gs173_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs173_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs173_g3_s0_station_sref_script }; /* 0x8229f4c */
|
||||
|
||||
static const struct ScriptCommand s_gs173_g3_s0_eff0_script[] = { /* 0x8229f58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
CAMERA_INIT_PAN,
|
||||
@@ -106,7 +106,7 @@ static const struct ScriptCommand s_gs173_g3_s0_eff0_script[] = { /* 0x8229f58 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs173_g3_s0_eff1_script[] = { /* 0x8229fd8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(109),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000135, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs174_g0_s0_station_sref_script[] = { /* 0x822a124 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(174),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs174_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs174_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs174_g0_s0_station_sref_script }; /* 0x822a190 */
|
||||
|
||||
static const struct ScriptCommand s_gs174_g1_s0_station_sref_script[] = { /* 0x822a19c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
{ 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_MAP(174),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
@@ -32,7 +32,7 @@ static const struct ScriptCommand s_gs174_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs174_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs174_g1_s0_station_sref_script }; /* 0x822a24c */
|
||||
|
||||
static const struct ScriptCommand s_gs174_g1_s0_lives0_dlg0[] = { /* 0x822a258 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(35),
|
||||
SELECT_ANIMATION(52),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -132,7 +132,7 @@ static const struct ScriptCommand s_gs174_g1_s0_lives0_dlg0[] = { /* 0x822a258 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs174_g1_s1_lives0_dlg0[] = { /* 0x822abd8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs175_g0_s0_station_sref_script[] = { /* 0x822af80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(175),
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
};
|
||||
@@ -15,7 +15,7 @@ static const struct ScriptCommand s_gs175_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs175_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs175_g0_s0_station_sref_script }; /* 0x822afdc */
|
||||
|
||||
static const struct ScriptCommand s_gs175_g1_s0_station_sref_script[] = { /* 0x822afe8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(18),
|
||||
BGM_STOP,
|
||||
WAIT(180),
|
||||
SELECT_MAP(175),
|
||||
@@ -36,7 +36,7 @@ static const struct ScriptCommand s_gs175_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs175_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs175_g1_s0_station_sref_script }; /* 0x822b0e8 */
|
||||
|
||||
static const struct ScriptCommand s_gs175_g1_s0_eff1_script[] = { /* 0x822b0f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(39),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
WAIT(40),
|
||||
BGM_SWITCH(44),
|
||||
@@ -61,7 +61,7 @@ static const struct ScriptCommand s_gs175_g1_s0_eff1_script[] = { /* 0x822b0f4 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs175_g2_s0_station_sref_script[] = { /* 0x822b2f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(64),
|
||||
SELECT_MAP(175),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x3b, 0x36, 0x0000, -0x00000002, 0x00000000, NULL },
|
||||
@@ -79,7 +79,7 @@ static const struct ScriptCommand s_gs175_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs175_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs175_g2_s0_station_sref_script }; /* 0x822b3c4 */
|
||||
|
||||
static const struct ScriptCommand s_gs175_g2_s0_eff1_script[] = { /* 0x822b3d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
WAIT(120),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs176_g0_s0_station_sref_script[] = { /* 0x822b66c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
BGM_STOP,
|
||||
SELECT_MAP(176),
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs176_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs176_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs176_g0_s0_station_sref_script }; /* 0x822b6d8 */
|
||||
|
||||
static const struct ScriptCommand s_gs176_g1_s0_station_sref_script[] = { /* 0x822b6e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(176),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x3b, 0x36, 0x0000, -0x00000002, 0x00000000, NULL },
|
||||
@@ -91,7 +91,7 @@ static const struct ScriptCommand s_gs176_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs176_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs176_g1_s0_station_sref_script }; /* 0x822bb44 */
|
||||
|
||||
static const struct ScriptCommand s_gs176_g1_s0_eff1_script[] = { /* 0x822bb50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(94),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs177_g0_s0_station_sref_script[] = { /* 0x822bde8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(177),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs177_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs177_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs177_g0_s0_station_sref_script }; /* 0x822be54 */
|
||||
|
||||
static const struct ScriptCommand s_gs177_g1_s0_station_sref_script[] = { /* 0x822be60 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(177),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
{ 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL },
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -25,7 +25,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs178_g0_s0_station_sref_script[] = { /* 0x822c248 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(28),
|
||||
SELECT_MAP(MAP_TINY_WOODS_ENTRY),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -34,7 +34,7 @@ static const struct ScriptCommand s_gs178_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs178_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs178_g0_s0_station_sref_script }; /* 0x822c2b4 */
|
||||
|
||||
static const struct ScriptCommand s_gs178_g1_s0_station_sref_script[] = { /* 0x822c2c0 - PART 1 0:04:05-0:06:38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(37),
|
||||
{ 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
BGM_STOP,
|
||||
{ 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -73,7 +73,7 @@ static const struct ScriptRef s_gs178_g1_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - PART 1 0:04:23-0:06:38 - Player script - why/how is $n3 set here? */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(76),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -270,7 +270,7 @@ static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 -
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs178_g1_s0_lives1_dlg0[] = { /* 0x822d950 - PART 1 0:04:23-0:06:38 - Partner script */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(273),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x01, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -325,7 +325,7 @@ static const struct ScriptCommand s_gs178_g1_s0_lives1_dlg0[] = { /* 0x822d950 -
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs178_g1_s1_lives0_dlg0[] = { /* 0x822dc90 - PART 1 0:05:55-0:06:38 - Butterfree */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(328),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0003, 0x00000036, 0x00000000, NULL },
|
||||
@@ -356,7 +356,7 @@ static const struct ScriptCommand s_gs178_g1_s1_lives0_dlg0[] = { /* 0x822dc90 -
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs178_g2_s0_station_sref_script[] = { /* 0x822de50 - PART 1 0:11:37-0:12:15 - After Tiny Woods death */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(359),
|
||||
{ 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
BGM_STOP,
|
||||
WAIT(60),
|
||||
@@ -377,7 +377,7 @@ static const struct ScriptRef s_gs178_g2_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs178_g2_s0_lives0_dlg0[] = { /* 0x822df60 - PART 1 0:11:39-0:12:15 - Player */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(380),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0003, 0x00000036, 0x00000000, NULL },
|
||||
@@ -455,7 +455,7 @@ static const struct ScriptCommand s_gs178_g2_s0_lives0_dlg0[] = { /* 0x822df60 -
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs178_g2_s0_lives1_dlg0[] = { /* 0x822e5fc - PART 1 0:11:39-0:12:15 - Partner */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(458),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -500,7 +500,7 @@ static const struct ScriptCommand s_gs178_g2_s0_lives1_dlg0[] = { /* 0x822e5fc -
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs178_g2_s0_lives2_dlg0[] = { /* 0x822e89c - PART 1 0:11:39-0:12:15 - Butterfree */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(503),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -515,7 +515,7 @@ static const struct ScriptCommand s_gs178_g2_s0_lives2_dlg0[] = { /* 0x822e89c -
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs178_g3_s0_station_sref_script[] = { /* 0x822e95c - PART 1 0:17:17-0:18:51 - Post-Tiny Woods cutscene */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(518),
|
||||
{ 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_MAP(MAP_TINY_WOODS_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
@@ -531,7 +531,7 @@ static const struct ScriptCommand s_gs178_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs178_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs178_g3_s0_station_sref_script }; /* 0x822ea0c */
|
||||
|
||||
static const struct ScriptCommand s_gs178_g3_s0_lives0_dlg0[] = { /* 0x822ea18 - PART 1 0:17:17-0:18:51 - Player */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(534),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -660,7 +660,7 @@ static const struct ScriptCommand s_gs178_g3_s0_lives0_dlg0[] = { /* 0x822ea18 -
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs178_g3_s0_lives1_dlg0[] = { /* 0x822f68c - PART 1 0:17:17-0:18:51 - Partner */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(663),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -691,7 +691,7 @@ static const struct ScriptCommand s_gs178_g3_s0_lives1_dlg0[] = { /* 0x822f68c -
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs178_g3_s0_lives2_dlg0[] = { /* 0x822f84c - PART 1 0:17:17-0:18:34 - Butterfree */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(694),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -710,7 +710,7 @@ static const struct ScriptCommand s_gs178_g3_s0_lives2_dlg0[] = { /* 0x822f84c -
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs178_g3_s0_lives3_dlg0[] = { /* 0x822f94c - PART 1 0:17:17-0:18:34 - Caterpie */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(713),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs179_g0_s0_station_sref_script[] = { /* 0x822fcbc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
SELECT_MAP(179),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -18,7 +18,7 @@ static const struct ScriptCommand s_gs179_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs179_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs179_g0_s0_station_sref_script }; /* 0x822fd28 */
|
||||
|
||||
static const struct ScriptCommand s_gs179_g1_s0_station_sref_script[] = { /* 0x822fd34 - PART 1 0:16:37-0:17:16 - Tiny Woods end room */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
SELECT_MAP(179),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -32,7 +32,7 @@ static const struct ScriptCommand s_gs179_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs179_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs179_g1_s0_station_sref_script }; /* 0x822fdc4 */
|
||||
|
||||
static const struct ScriptCommand s_gs179_g1_s0_lives0_dlg0[] = { /* 0x822fdd0 - PART 1 0:16:37-0:17:16 - Player */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(35),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -77,7 +77,7 @@ static const struct ScriptCommand s_gs179_g1_s0_lives0_dlg0[] = { /* 0x822fdd0 -
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs179_g1_s0_lives1_dlg0[] = { /* 0x82300a8 - PART 1 0:16:37-0:17:16 - Partner */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(80),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -86,7 +86,7 @@ static const struct ScriptCommand s_gs179_g1_s0_lives1_dlg0[] = { /* 0x82300a8 -
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs179_g1_s0_lives2_dlg0[] = { /* 0x8230108 - PART 1 0:16:37-0:17:16 - Caterpie */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs180_g0_s0_station_sref_script[] = { /* 0x82302f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(MAP_THUNDERWAVE_CAVE_ENTRY),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -20,7 +20,7 @@ static const struct ScriptCommand s_gs180_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs180_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs180_g0_s0_station_sref_script }; /* 0x8230364 */
|
||||
|
||||
static const struct ScriptCommand s_gs180_g1_s0_station_sref_script[] = { /* 0x8230370 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(23),
|
||||
SELECT_MAP(MAP_THUNDERWAVE_CAVE_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(14),
|
||||
@@ -33,7 +33,7 @@ static const struct ScriptCommand s_gs180_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs180_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs180_g1_s0_station_sref_script }; /* 0x82303f0 */
|
||||
|
||||
static const struct ScriptCommand s_gs180_g1_s0_eff0_script[] = { /* 0x82303fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(36),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -44,7 +44,7 @@ static const struct ScriptCommand s_gs180_g1_s0_eff0_script[] = { /* 0x82303fc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g1_s0_lives0_dlg0[] = { /* 0x823047c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(47),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -85,7 +85,7 @@ static const struct ScriptCommand s_gs180_g1_s0_lives0_dlg0[] = { /* 0x823047c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs180_g1_s0_lives1_dlg0[] = { /* 0x8230758 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(88),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -109,7 +109,7 @@ static const struct ScriptCommand s_gs180_g1_s0_lives1_dlg0[] = { /* 0x8230758 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g1_s0_lives2_dlg0[] = { /* 0x82308a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -122,7 +122,7 @@ static const struct ScriptCommand s_gs180_g1_s0_lives2_dlg0[] = { /* 0x82308a8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g1_s0_lives3_dlg0[] = { /* 0x8230948 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(125),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -134,7 +134,7 @@ static const struct ScriptCommand s_gs180_g1_s0_lives3_dlg0[] = { /* 0x8230948 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g2_s0_station_sref_script[] = { /* 0x82309d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
SELECT_MAP(MAP_THUNDERWAVE_CAVE_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(14),
|
||||
@@ -147,7 +147,7 @@ static const struct ScriptCommand s_gs180_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs180_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs180_g2_s0_station_sref_script }; /* 0x8230a58 */
|
||||
|
||||
static const struct ScriptCommand s_gs180_g2_s0_eff0_script[] = { /* 0x8230a64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(150),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -158,7 +158,7 @@ static const struct ScriptCommand s_gs180_g2_s0_eff0_script[] = { /* 0x8230a64 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g2_s0_lives0_dlg0[] = { /* 0x8230ae4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(161),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x0000003c, 0x00000000, NULL },
|
||||
@@ -194,7 +194,7 @@ static const struct ScriptCommand s_gs180_g2_s0_lives0_dlg0[] = { /* 0x8230ae4 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs180_g2_s0_lives1_dlg0[] = { /* 0x8230d64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(197),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL },
|
||||
@@ -213,7 +213,7 @@ static const struct ScriptCommand s_gs180_g2_s0_lives1_dlg0[] = { /* 0x8230d64 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g2_s0_lives2_dlg0[] = { /* 0x8230e64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(216),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -225,7 +225,7 @@ static const struct ScriptCommand s_gs180_g2_s0_lives2_dlg0[] = { /* 0x8230e64 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g2_s0_lives3_dlg0[] = { /* 0x8230ef4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(228),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -236,7 +236,7 @@ static const struct ScriptCommand s_gs180_g2_s0_lives3_dlg0[] = { /* 0x8230ef4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g3_s0_station_sref_script[] = { /* 0x8230f74 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(239),
|
||||
SELECT_MAP(MAP_THUNDERWAVE_CAVE_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(103),
|
||||
@@ -251,7 +251,7 @@ static const struct ScriptCommand s_gs180_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs180_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs180_g3_s0_station_sref_script }; /* 0x8231014 */
|
||||
|
||||
static const struct ScriptCommand s_gs180_g3_s0_lives0_dlg0[] = { /* 0x8231020 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(254),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -318,7 +318,7 @@ static const struct ScriptCommand s_gs180_g3_s0_lives0_dlg0[] = { /* 0x8231020 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs180_g3_s0_lives1_dlg0[] = { /* 0x8231478 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(321),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -331,7 +331,7 @@ static const struct ScriptCommand s_gs180_g3_s0_lives1_dlg0[] = { /* 0x8231478 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g3_s0_lives2_dlg0[] = { /* 0x8231518 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(334),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -347,7 +347,7 @@ static const struct ScriptCommand s_gs180_g3_s0_lives2_dlg0[] = { /* 0x8231518 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g3_s0_lives3_dlg0[] = { /* 0x82315e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(350),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -369,7 +369,7 @@ static const struct ScriptCommand s_gs180_g3_s0_lives3_dlg0[] = { /* 0x82315e8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g3_s0_lives4_dlg0[] = { /* 0x8231718 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(372),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -400,7 +400,7 @@ static const struct ScriptCommand s_gs180_g3_s0_lives4_dlg0[] = { /* 0x8231718 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs180_g3_s0_lives5_dlg0[] = { /* 0x82318d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(403),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs181_g0_s0_station_sref_script[] = { /* 0x8231c70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(181),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -20,7 +20,7 @@ static const struct ScriptCommand s_gs181_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs181_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs181_g0_s0_station_sref_script }; /* 0x8231cdc */
|
||||
|
||||
static const struct ScriptCommand s_gs181_g1_s0_station_sref_script[] = { /* 0x8231ce8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(23),
|
||||
SELECT_MAP(181),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -34,7 +34,7 @@ static const struct ScriptCommand s_gs181_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs181_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs181_g1_s0_station_sref_script }; /* 0x8231d78 */
|
||||
|
||||
static const struct ScriptCommand s_gs181_g1_s0_lives0_dlg0[] = { /* 0x8231d84 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(37),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -56,7 +56,7 @@ static const struct ScriptCommand s_gs181_g1_s0_lives0_dlg0[] = { /* 0x8231d84 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs181_g1_s0_lives1_dlg0[] = { /* 0x8231f0c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(59),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -68,14 +68,14 @@ static const struct ScriptCommand s_gs181_g1_s0_lives1_dlg0[] = { /* 0x8231f0c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs181_g1_s0_lives2_dlg0[] = { /* 0x8231f9c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs181_g1_s0_lives3_dlg0[] = { /* 0x8231fdc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs182_g0_s0_station_sref_script[] = { /* 0x8232124 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
SELECT_MAP(182),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -18,7 +18,7 @@ static const struct ScriptCommand s_gs182_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs182_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs182_g0_s0_station_sref_script }; /* 0x8232190 */
|
||||
|
||||
static const struct ScriptCommand s_gs182_g1_s0_station_sref_script[] = { /* 0x823219c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
SELECT_MAP(182),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(120),
|
||||
@@ -31,7 +31,7 @@ static const struct ScriptCommand s_gs182_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs182_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs182_g1_s0_station_sref_script }; /* 0x823221c */
|
||||
|
||||
static const struct ScriptCommand s_gs182_g1_s0_lives0_dlg0[] = { /* 0x8232228 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL },
|
||||
@@ -93,7 +93,7 @@ static const struct ScriptCommand s_gs182_g1_s0_lives0_dlg0[] = { /* 0x8232228 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs182_g1_s0_lives1_dlg0[] = { /* 0x82326cc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL },
|
||||
@@ -118,7 +118,7 @@ static const struct ScriptCommand s_gs182_g1_s0_lives1_dlg0[] = { /* 0x82326cc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs182_g1_s1_lives0_dlg0[] = { /* 0x823282c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
{ 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
FANFARE_PLAY2(454),
|
||||
@@ -135,7 +135,7 @@ static const struct ScriptCommand s_gs182_g1_s1_lives0_dlg0[] = { /* 0x823282c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs182_g2_s0_station_sref_script[] = { /* 0x823290c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(138),
|
||||
SELECT_MAP(182),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(120),
|
||||
@@ -147,7 +147,7 @@ static const struct ScriptCommand s_gs182_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs182_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs182_g2_s0_station_sref_script }; /* 0x823297c */
|
||||
|
||||
static const struct ScriptCommand s_gs182_g2_s0_lives0_dlg0[] = { /* 0x8232988 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(150),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL },
|
||||
@@ -212,7 +212,7 @@ static const struct ScriptCommand s_gs182_g2_s0_lives0_dlg0[] = { /* 0x8232988 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs182_g2_s0_lives1_dlg0[] = { /* 0x8232e30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(215),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL },
|
||||
@@ -240,7 +240,7 @@ static const struct ScriptCommand s_gs182_g2_s0_lives1_dlg0[] = { /* 0x8232e30 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs182_g2_s1_lives0_dlg0[] = { /* 0x8232fc0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(243),
|
||||
{ 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
FANFARE_PLAY2(454),
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs183_g0_s0_station_sref_script[] = { /* 0x8233258 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(15),
|
||||
SELECT_MAP(183),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -21,7 +21,7 @@ static const struct ScriptCommand s_gs183_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs183_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs183_g0_s0_station_sref_script }; /* 0x82332c4 */
|
||||
|
||||
static const struct ScriptCommand s_gs183_g1_s0_station_sref_script[] = { /* 0x82332d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(24),
|
||||
SELECT_MAP(183),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -34,7 +34,7 @@ static const struct ScriptCommand s_gs183_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs183_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs183_g1_s0_station_sref_script }; /* 0x8233350 */
|
||||
|
||||
static const struct ScriptCommand s_gs183_g1_s0_eff0_script[] = { /* 0x823335c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(37),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -46,7 +46,7 @@ static const struct ScriptCommand s_gs183_g1_s0_eff0_script[] = { /* 0x823335c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs183_g1_s0_lives0_dlg0[] = { /* 0x82333ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(49),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -134,7 +134,7 @@ static const struct ScriptCommand s_gs183_g1_s0_lives0_dlg0[] = { /* 0x82333ec *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs183_g1_s0_lives1_dlg0[] = { /* 0x8233bec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -163,7 +163,7 @@ static const struct ScriptCommand s_gs183_g1_s0_lives1_dlg0[] = { /* 0x8233bec *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs183_g1_s0_lives2_dlg0[] = { /* 0x8233d8c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(166),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -177,7 +177,7 @@ static const struct ScriptCommand s_gs183_g1_s0_lives2_dlg0[] = { /* 0x8233d8c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs183_g1_s0_lives3_dlg0[] = { /* 0x8233e3c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(180),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -191,7 +191,7 @@ static const struct ScriptCommand s_gs183_g1_s0_lives3_dlg0[] = { /* 0x8233e3c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs183_g1_s1_lives0_dlg0[] = { /* 0x8233eec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(194),
|
||||
WARP_WAYPOINT(0, 2),
|
||||
{ 0x60, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
@@ -217,7 +217,7 @@ static const struct ScriptCommand s_gs183_g1_s1_lives0_dlg0[] = { /* 0x8233eec *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs183_g1_s1_lives1_dlg0[] = { /* 0x823405c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(220),
|
||||
WARP_WAYPOINT(0, 1),
|
||||
{ 0x60, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs184_g0_s0_station_sref_script[] = { /* 0x82342f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
SELECT_MAP(MAP_SINISTER_WOODS_ENTRY),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -18,7 +18,7 @@ static const struct ScriptCommand s_gs184_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs184_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs184_g0_s0_station_sref_script }; /* 0x8234360 */
|
||||
|
||||
static const struct ScriptCommand s_gs184_g1_s0_station_sref_script[] = { /* 0x823436c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
SELECT_MAP(MAP_SINISTER_WOODS_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(15),
|
||||
@@ -31,7 +31,7 @@ static const struct ScriptCommand s_gs184_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs184_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs184_g1_s0_station_sref_script }; /* 0x82343ec */
|
||||
|
||||
static const struct ScriptCommand s_gs184_g1_s0_lives0_dlg0[] = { /* 0x82343f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x0000005e, 0x00000000, NULL },
|
||||
@@ -63,7 +63,7 @@ static const struct ScriptCommand s_gs184_g1_s0_lives0_dlg0[] = { /* 0x82343f8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs184_g1_s0_lives1_dlg0[] = { /* 0x8234714 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(66),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -75,7 +75,7 @@ static const struct ScriptCommand s_gs184_g1_s0_lives1_dlg0[] = { /* 0x8234714 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs184_g2_s0_station_sref_script[] = { /* 0x82347a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
SELECT_MAP(MAP_SINISTER_WOODS_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(15),
|
||||
@@ -88,7 +88,7 @@ static const struct ScriptCommand s_gs184_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs184_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs184_g2_s0_station_sref_script }; /* 0x8234824 */
|
||||
|
||||
static const struct ScriptCommand s_gs184_g2_s0_lives0_dlg0[] = { /* 0x8234830 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(91),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x0000005b, 0x00000000, NULL },
|
||||
@@ -116,7 +116,7 @@ static const struct ScriptCommand s_gs184_g2_s0_lives0_dlg0[] = { /* 0x8234830 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs184_g2_s0_lives1_dlg0[] = { /* 0x8234ae8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(119),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs185_g0_s0_station_sref_script[] = { /* 0x8234c90 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(185),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -20,7 +20,7 @@ static const struct ScriptCommand s_gs185_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs185_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs185_g0_s0_station_sref_script }; /* 0x8234cfc */
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_station_sref_script[] = { /* 0x8234d08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(23),
|
||||
SELECT_MAP(185),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -33,7 +33,7 @@ static const struct ScriptCommand s_gs185_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs185_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs185_g1_s0_station_sref_script }; /* 0x8234d88 */
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives0_dlg0[] = { /* 0x8234d94 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(36),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x0000005e, 0x00000000, NULL },
|
||||
@@ -105,7 +105,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives0_dlg0[] = { /* 0x8234d94 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives1_dlg0[] = { /* 0x823531c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -121,7 +121,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives1_dlg0[] = { /* 0x823531c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives2_dlg0[] = { /* 0x82353ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -142,7 +142,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives2_dlg0[] = { /* 0x82353ec *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives3_dlg0[] = { /* 0x823550c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -159,7 +159,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives3_dlg0[] = { /* 0x823550c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives4_dlg0[] = { /* 0x82355ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(162),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(9),
|
||||
@@ -169,7 +169,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives4_dlg0[] = { /* 0x82355ec *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives5_dlg0[] = { /* 0x823565c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(172),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(10),
|
||||
@@ -179,7 +179,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives5_dlg0[] = { /* 0x823565c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives6_dlg0[] = { /* 0x82356cc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(182),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(11),
|
||||
ROTATE(10, 10, DIRECTION_WEST),
|
||||
@@ -192,7 +192,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives6_dlg0[] = { /* 0x82356cc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives7_dlg0[] = { /* 0x823576c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(195),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(11),
|
||||
ROTATE(8, 10, DIRECTION_WEST),
|
||||
@@ -205,13 +205,13 @@ static const struct ScriptCommand s_gs185_g1_s0_lives7_dlg0[] = { /* 0x823576c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives8_dlg0[] = { /* 0x823580c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(208),
|
||||
SELECT_ANIMATION(2),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs185_g1_s0_lives9_dlg0[] = { /* 0x823583c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(214),
|
||||
SELECT_ANIMATION(2),
|
||||
HALT,
|
||||
};
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs186_g0_s0_station_sref_script[] = { /* 0x8235a04 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(13),
|
||||
SELECT_MAP(MAP_SILENT_CHASM_ENTRY),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -19,7 +19,7 @@ static const struct ScriptCommand s_gs186_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs186_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs186_g0_s0_station_sref_script }; /* 0x8235a70 */
|
||||
|
||||
static const struct ScriptCommand s_gs186_g1_s0_station_sref_script[] = { /* 0x8235a7c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(22),
|
||||
SELECT_MAP(MAP_SILENT_CHASM_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(113),
|
||||
@@ -33,7 +33,7 @@ static const struct ScriptCommand s_gs186_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs186_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs186_g1_s0_station_sref_script }; /* 0x8235b0c */
|
||||
|
||||
static const struct ScriptCommand s_gs186_g1_s0_eff0_script[] = { /* 0x8235b18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(36),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -45,7 +45,7 @@ static const struct ScriptCommand s_gs186_g1_s0_eff0_script[] = { /* 0x8235b18 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(48),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0003, 0x0000005b, 0x00000000, NULL },
|
||||
@@ -308,7 +308,7 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs186_g1_s0_lives1_dlg0[] = { /* 0x8237410 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(311),
|
||||
SELECT_ANIMATION(2),
|
||||
WAIT(30),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -392,7 +392,7 @@ static const struct ScriptCommand s_gs186_g1_s0_lives1_dlg0[] = { /* 0x8237410 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs186_g1_s0_lives2_dlg0[] = { /* 0x8237920 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(395),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs187_g0_s0_station_sref_script[] = { /* 0x8237b78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(187),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs187_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs187_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs187_g0_s0_station_sref_script }; /* 0x8237be4 */
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s0_station_sref_script[] = { /* 0x8237bf0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(187),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -31,7 +31,7 @@ static const struct ScriptCommand s_gs187_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs187_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs187_g1_s0_station_sref_script }; /* 0x8237c90 */
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s0_eff0_script[] = { /* 0x8237c9c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -42,7 +42,7 @@ static const struct ScriptCommand s_gs187_g1_s0_eff0_script[] = { /* 0x8237c9c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s0_lives0_dlg0[] = { /* 0x8237d1c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(45),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
ALERT_CUE(6),
|
||||
@@ -202,7 +202,7 @@ static const struct ScriptCommand s_gs187_g1_s0_lives0_dlg0[] = { /* 0x8237d1c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s0_lives1_dlg0[] = { /* 0x82389a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(205),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -233,7 +233,7 @@ static const struct ScriptCommand s_gs187_g1_s0_lives1_dlg0[] = { /* 0x82389a8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s0_lives2_dlg0[] = { /* 0x8238b68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(236),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(12),
|
||||
@@ -257,7 +257,7 @@ static const struct ScriptCommand s_gs187_g1_s0_lives2_dlg0[] = { /* 0x8238b68 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s0_lives3_dlg0[] = { /* 0x8238cb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(260),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(12),
|
||||
@@ -282,7 +282,7 @@ static const struct ScriptCommand s_gs187_g1_s0_lives3_dlg0[] = { /* 0x8238cb8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s0_lives4_dlg0[] = { /* 0x8238e18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(285),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -298,7 +298,7 @@ static const struct ScriptCommand s_gs187_g1_s0_lives4_dlg0[] = { /* 0x8238e18 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s0_lives5_dlg0[] = { /* 0x8238ee8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(301),
|
||||
SELECT_ANIMATION(22),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -306,7 +306,7 @@ static const struct ScriptCommand s_gs187_g1_s0_lives5_dlg0[] = { /* 0x8238ee8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs187_g1_s1_lives0_dlg0[] = { /* 0x8238f38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(309),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(11),
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs188_g0_s0_station_sref_script[] = { /* 0x8239178 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(13),
|
||||
SELECT_MAP(MAP_MT_THUNDER_ENTRY),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -19,7 +19,7 @@ static const struct ScriptCommand s_gs188_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs188_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs188_g0_s0_station_sref_script }; /* 0x82391e4 */
|
||||
|
||||
static const struct ScriptCommand s_gs188_g1_s0_station_sref_script[] = { /* 0x82391f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(22),
|
||||
SELECT_MAP(MAP_MT_THUNDER_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(111),
|
||||
@@ -33,14 +33,14 @@ static const struct ScriptCommand s_gs188_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs188_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs188_g1_s0_station_sref_script }; /* 0x8239280 */
|
||||
|
||||
static const struct ScriptCommand s_gs188_g1_s0_eff0_script[] = { /* 0x823928c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(36),
|
||||
CAMERA_END_PAN,
|
||||
AWAIT_CUE(4),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs188_g1_s0_lives0_dlg0[] = { /* 0x82392cc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(43),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000060, 0x00000000, NULL },
|
||||
@@ -91,7 +91,7 @@ static const struct ScriptCommand s_gs188_g1_s0_lives0_dlg0[] = { /* 0x82392cc *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs188_g1_s0_lives1_dlg0[] = { /* 0x8239824 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(94),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -113,7 +113,7 @@ static const struct ScriptCommand s_gs188_g1_s0_lives1_dlg0[] = { /* 0x8239824 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs188_g2_s0_station_sref_script[] = { /* 0x8239954 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(116),
|
||||
SELECT_MAP(MAP_MT_THUNDER_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(111),
|
||||
@@ -127,14 +127,14 @@ static const struct ScriptCommand s_gs188_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs188_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs188_g2_s0_station_sref_script }; /* 0x82399e4 */
|
||||
|
||||
static const struct ScriptCommand s_gs188_g2_s0_eff0_script[] = { /* 0x82399f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(130),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
END_DELETE,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs188_g2_s0_lives0_dlg0[] = { /* 0x8239a30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000055, 0x00000000, NULL },
|
||||
@@ -162,7 +162,7 @@ static const struct ScriptCommand s_gs188_g2_s0_lives0_dlg0[] = { /* 0x8239a30 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs188_g2_s0_lives1_dlg0[] = { /* 0x8239c48 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(165),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s0_station_sref_script[] = { /* 0x8239e50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(MAP_MT_THUNDER_MID),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_GT, 17, /* to label */ 0),
|
||||
@@ -43,7 +43,7 @@ static const struct ScriptCommand s_gs189_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs189_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs189_g0_s0_station_sref_script }; /* 0x823a06c */
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s0_evt0_sref_script[] = { /* 0x823a078 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(46),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Would you like to go on?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -60,7 +60,7 @@ static const struct ScriptCommand s_gs189_g0_s0_evt0_sref_script[] = { /* 0x823a
|
||||
static const struct ScriptRef s_gs189_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs189_g0_s0_evt0_sref_script }; /* 0x823a164 */
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s0_evt1_sref_script[] = { /* 0x823a170 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -79,52 +79,52 @@ static const struct ScriptCommand s_gs189_g0_s0_evt1_sref_script[] = { /* 0x823a
|
||||
static const struct ScriptRef s_gs189_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs189_g0_s0_evt1_sref_script }; /* 0x823a270 */
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s0_obj0_dlg2[] = { /* 0x823a27c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s1_lives0_dlg0[] = { /* 0x823a29c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s1_lives1_dlg0[] = { /* 0x823a2dc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(94),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s3_lives0_dlg0[] = { /* 0x823a31c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s3_lives1_dlg0[] = { /* 0x823a35c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s4_lives0_dlg0[] = { /* 0x823a39c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs189_g0_s4_lives1_dlg0[] = { /* 0x823a3cc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs189_g1_s0_station_sref_script[] = { /* 0x823a3fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(127),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_MT_THUNDER_MID),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_MT_THUNDER_MID),
|
||||
@@ -142,7 +142,7 @@ static const struct ScriptCommand s_gs189_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs189_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs189_g1_s0_station_sref_script }; /* 0x823a4cc */
|
||||
|
||||
static const struct ScriptCommand s_gs189_g1_s0_lives0_dlg0[] = { /* 0x823a4d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -168,7 +168,7 @@ static const struct ScriptCommand s_gs189_g1_s0_lives0_dlg0[] = { /* 0x823a4d8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs189_g1_s0_lives1_dlg0[] = { /* 0x823a72c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(171),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs190_g0_s0_station_sref_script[] = { /* 0x823aa14 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(17),
|
||||
SELECT_MAP(190),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -23,7 +23,7 @@ static const struct ScriptCommand s_gs190_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs190_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs190_g0_s0_station_sref_script }; /* 0x823aa80 */
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_station_sref_script[] = { /* 0x823aa8c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(26),
|
||||
SELECT_MAP(190),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -37,7 +37,7 @@ static const struct ScriptCommand s_gs190_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs190_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs190_g1_s0_station_sref_script }; /* 0x823ab1c */
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_eff0_script[] = { /* 0x823ab28 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(40),
|
||||
CAMERA_END_PAN,
|
||||
CAMERA_INIT_PAN,
|
||||
{ 0x89, 0x48, 0x0100, 0x00000000, 0x00000000, NULL },
|
||||
@@ -55,7 +55,7 @@ static const struct ScriptCommand s_gs190_g1_s0_eff0_script[] = { /* 0x823ab28 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(58),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0006, 0x00000055, 0x00000000, NULL },
|
||||
@@ -343,7 +343,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_lives1_dlg0[] = { /* 0x823c670 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(346),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -391,7 +391,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives1_dlg0[] = { /* 0x823c670 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_lives2_dlg0[] = { /* 0x823c940 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(394),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(13),
|
||||
@@ -418,7 +418,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives2_dlg0[] = { /* 0x823c940 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_lives3_dlg0[] = { /* 0x823cac0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(421),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(13),
|
||||
@@ -445,7 +445,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives3_dlg0[] = { /* 0x823cac0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_lives4_dlg0[] = { /* 0x823cc40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(448),
|
||||
{ 0x54, 0x00, 0x001e, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -483,7 +483,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives4_dlg0[] = { /* 0x823cc40 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_lives5_dlg0[] = { /* 0x823ce70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(486),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -516,7 +516,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives5_dlg0[] = { /* 0x823ce70 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_lives6_dlg0[] = { /* 0x823d050 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(519),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(9),
|
||||
@@ -554,7 +554,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives6_dlg0[] = { /* 0x823d050 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_lives7_dlg0[] = { /* 0x823d280 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(557),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(10),
|
||||
@@ -587,7 +587,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives7_dlg0[] = { /* 0x823d280 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s0_eff1_script[] = { /* 0x823d460 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(590),
|
||||
AWAIT_CUE(12),
|
||||
{ 0x56, 0x00, 0x0000, 0x0000001b, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -596,7 +596,7 @@ static const struct ScriptCommand s_gs190_g1_s0_eff1_script[] = { /* 0x823d460 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs190_g1_s1_lives0_dlg0[] = { /* 0x823d4c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(599),
|
||||
SELECT_ANIMATION(22),
|
||||
{ 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
WAIT(60),
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs191_g0_s0_station_sref_script[] = { /* 0x823d7dc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(15),
|
||||
SELECT_MAP(MAP_GREAT_CANYON_ENTRY),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -21,7 +21,7 @@ static const struct ScriptCommand s_gs191_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs191_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs191_g0_s0_station_sref_script }; /* 0x823d848 */
|
||||
|
||||
static const struct ScriptCommand s_gs191_g1_s0_station_sref_script[] = { /* 0x823d854 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(24),
|
||||
SELECT_MAP(MAP_GREAT_CANYON_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(20),
|
||||
@@ -34,7 +34,7 @@ static const struct ScriptCommand s_gs191_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs191_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs191_g1_s0_station_sref_script }; /* 0x823d8d4 */
|
||||
|
||||
static const struct ScriptCommand s_gs191_g1_s0_lives0_dlg0[] = { /* 0x823d8e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(37),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL },
|
||||
@@ -68,7 +68,7 @@ static const struct ScriptCommand s_gs191_g1_s0_lives0_dlg0[] = { /* 0x823d8e0 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs191_g1_s0_lives1_dlg0[] = { /* 0x823dc10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -88,7 +88,7 @@ static const struct ScriptCommand s_gs191_g1_s0_lives1_dlg0[] = { /* 0x823dc10 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs191_g2_s0_station_sref_script[] = { /* 0x823dd20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(91),
|
||||
SELECT_MAP(MAP_GREAT_CANYON_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(20),
|
||||
@@ -101,7 +101,7 @@ static const struct ScriptCommand s_gs191_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs191_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs191_g2_s0_station_sref_script }; /* 0x823dda0 */
|
||||
|
||||
static const struct ScriptCommand s_gs191_g2_s0_lives0_dlg0[] = { /* 0x823ddac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL },
|
||||
@@ -128,7 +128,7 @@ static const struct ScriptCommand s_gs191_g2_s0_lives0_dlg0[] = { /* 0x823ddac *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs191_g2_s0_lives1_dlg0[] = { /* 0x823e038 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs192_g0_s0_station_sref_script[] = { /* 0x823e248 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(24),
|
||||
SELECT_MAP(192),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -30,7 +30,7 @@ static const struct ScriptCommand s_gs192_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs192_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs192_g0_s0_station_sref_script }; /* 0x823e2b4 */
|
||||
|
||||
static const struct ScriptCommand s_gs192_g1_s0_station_sref_script[] = { /* 0x823e2c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(33),
|
||||
SELECT_MAP(192),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -45,7 +45,7 @@ static const struct ScriptCommand s_gs192_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs192_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs192_g1_s0_station_sref_script }; /* 0x823e360 */
|
||||
|
||||
static const struct ScriptCommand s_gs192_g1_s0_lives0_dlg0[] = { /* 0x823e36c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(48),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -128,7 +128,7 @@ static const struct ScriptCommand s_gs192_g1_s0_lives0_dlg0[] = { /* 0x823e36c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs192_g1_s0_lives1_dlg0[] = { /* 0x823ec7c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -155,7 +155,7 @@ static const struct ScriptCommand s_gs192_g1_s0_lives1_dlg0[] = { /* 0x823ec7c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs192_g2_s0_station_sref_script[] = { /* 0x823edfc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(158),
|
||||
SELECT_MAP(192),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -169,7 +169,7 @@ static const struct ScriptCommand s_gs192_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs192_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs192_g2_s0_station_sref_script }; /* 0x823ee8c */
|
||||
|
||||
static const struct ScriptCommand s_gs192_g2_s0_eff0_script[] = { /* 0x823ee98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(172),
|
||||
WAIT(1),
|
||||
CAMERA_INIT_PAN,
|
||||
AWAIT_CUE(4),
|
||||
@@ -185,7 +185,7 @@ static const struct ScriptCommand s_gs192_g2_s0_eff0_script[] = { /* 0x823ee98 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(188),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -600,7 +600,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs192_g2_s0_lives1_dlg0[] = { /* 0x8241890 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(603),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -766,7 +766,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives1_dlg0[] = { /* 0x8241890 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs192_g2_s0_lives2_dlg0[] = { /* 0x82422c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(769),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(9),
|
||||
WALK_DIRECT(60, 3),
|
||||
@@ -788,7 +788,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives2_dlg0[] = { /* 0x82422c0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs192_g2_s0_lives3_dlg0[] = { /* 0x82423f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(791),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(9),
|
||||
WALK_DIRECT(60, 4),
|
||||
@@ -810,7 +810,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives3_dlg0[] = { /* 0x82423f0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs192_g2_s0_lives4_dlg0[] = { /* 0x8242520 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(813),
|
||||
{ 0x52, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
@@ -865,7 +865,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives4_dlg0[] = { /* 0x8242520 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs192_g2_s1_lives0_dlg0[] = { /* 0x8242850 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(868),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s0_station_sref_script[] = { /* 0x8242bb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(13),
|
||||
JUMPIF_SCENARIOCHECK(5, /* to label */ 0),
|
||||
EXECUTE_STATION(12, 0, 0),
|
||||
LABEL(0), /* = 0x00 */
|
||||
@@ -54,76 +54,76 @@ static const struct ScriptCommand s_gs193_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs193_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs193_g0_s0_station_sref_script }; /* 0x8242e54 */
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s0_obj0_dlg2[] = { /* 0x8242e60 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(57),
|
||||
JUMP_SCRIPT(SAVE_AND_WAREHOUSE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s1_lives0_dlg0[] = { /* 0x8242e80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(62),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s1_lives1_dlg0[] = { /* 0x8242ec0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(69),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s2_lives0_dlg0[] = { /* 0x8242f00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(76),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s2_lives1_dlg0[] = { /* 0x8242f40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(83),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s3_lives0_dlg0[] = { /* 0x8242f80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s3_lives1_dlg0[] = { /* 0x8242fc0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(97),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s4_lives0_dlg0[] = { /* 0x8243000 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s4_lives1_dlg0[] = { /* 0x8243030 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s5_obj0_dlg2[] = { /* 0x8243060 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(116),
|
||||
JUMP_SCRIPT(WAREHOUSE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g0_s5_obj1_dlg2[] = { /* 0x8243080 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g1_s0_station_sref_script[] = { /* 0x82430a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
SELECT_MAP(MAP_LAPIS_CAVE_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(24),
|
||||
@@ -137,7 +137,7 @@ static const struct ScriptCommand s_gs193_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs193_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs193_g1_s0_station_sref_script }; /* 0x8243130 */
|
||||
|
||||
static const struct ScriptCommand s_gs193_g1_s0_lives0_dlg0[] = { /* 0x824313c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(140),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
BGM_FADEOUT(30),
|
||||
@@ -205,7 +205,7 @@ static const struct ScriptCommand s_gs193_g1_s0_lives0_dlg0[] = { /* 0x824313c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs193_g1_s0_lives1_dlg0[] = { /* 0x824389c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(208),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -232,7 +232,7 @@ static const struct ScriptCommand s_gs193_g1_s0_lives1_dlg0[] = { /* 0x824389c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g2_s0_station_sref_script[] = { /* 0x8243a1c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(235),
|
||||
SELECT_MAP(MAP_LAPIS_CAVE_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(102),
|
||||
@@ -246,7 +246,7 @@ static const struct ScriptCommand s_gs193_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs193_g2_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs193_g2_s0_station_sref_script }; /* 0x8243aac */
|
||||
|
||||
static const struct ScriptCommand s_gs193_g2_s0_lives0_dlg0[] = { /* 0x8243ab8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(249),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -278,7 +278,7 @@ static const struct ScriptCommand s_gs193_g2_s0_lives0_dlg0[] = { /* 0x8243ab8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs193_g2_s0_lives1_dlg0[] = { /* 0x8243e64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(281),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -294,7 +294,7 @@ static const struct ScriptCommand s_gs193_g2_s0_lives1_dlg0[] = { /* 0x8243e64 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g3_s0_station_sref_script[] = { /* 0x8243f34 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(297),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
RET_DIRECT,
|
||||
};
|
||||
@@ -302,20 +302,20 @@ static const struct ScriptCommand s_gs193_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs193_g3_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs193_g3_s0_station_sref_script }; /* 0x8243f64 */
|
||||
|
||||
static const struct ScriptCommand s_gs193_g3_s0_lives0_dlg1[] = { /* 0x8243f70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(305),
|
||||
{ 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(LIVES_MOVE_NORMAL),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g3_s0_lives0_dlg2[] = { /* 0x8243fb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(312),
|
||||
EXECUTE_STATION(-1, 3, 1),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g3_s0_evt0_sref_script[] = { /* 0x8243fe0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(318),
|
||||
EXECUTE_STATION(-1, 3, 1),
|
||||
HALT,
|
||||
};
|
||||
@@ -323,7 +323,7 @@ static const struct ScriptCommand s_gs193_g3_s0_evt0_sref_script[] = { /* 0x8243
|
||||
static const struct ScriptRef s_gs193_g3_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs193_g3_s0_evt0_sref_script }; /* 0x8244010 */
|
||||
|
||||
static const struct ScriptCommand s_gs193_g3_s1_station_sref_script[] = { /* 0x824401c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(326),
|
||||
SELECT_ENTITIES(-1, 1),
|
||||
CANCEL_ENTITIES(-1, 0),
|
||||
AWAIT_CUE(3),
|
||||
@@ -333,7 +333,7 @@ static const struct ScriptCommand s_gs193_g3_s1_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs193_g3_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs193_g3_s1_station_sref_script }; /* 0x824406c */
|
||||
|
||||
static const struct ScriptCommand s_gs193_g3_s1_lives0_dlg0[] = { /* 0x8244078 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(336),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
WAIT(1),
|
||||
@@ -412,7 +412,7 @@ static const struct ScriptCommand s_gs193_g3_s1_lives0_dlg0[] = { /* 0x8244078 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g3_s1_lives1_dlg0[] = { /* 0x8244648 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(415),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -433,7 +433,7 @@ static const struct ScriptCommand s_gs193_g3_s1_lives1_dlg0[] = { /* 0x8244648 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g4_s0_station_sref_script[] = { /* 0x8244768 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(436),
|
||||
SELECT_MAP(MAP_LAPIS_CAVE_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(102),
|
||||
@@ -447,7 +447,7 @@ static const struct ScriptCommand s_gs193_g4_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs193_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs193_g4_s0_station_sref_script }; /* 0x82447f8 */
|
||||
|
||||
static const struct ScriptCommand s_gs193_g4_s0_lives0_dlg0[] = { /* 0x8244804 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(450),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -483,7 +483,7 @@ static const struct ScriptCommand s_gs193_g4_s0_lives0_dlg0[] = { /* 0x8244804 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g4_s0_lives1_dlg0[] = { /* 0x8244bb4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(486),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x30, 0x0100, 0x00000007, 0x00000000, NULL },
|
||||
@@ -500,7 +500,7 @@ static const struct ScriptCommand s_gs193_g4_s0_lives1_dlg0[] = { /* 0x8244bb4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g5_s0_station_sref_script[] = { /* 0x8244c94 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(503),
|
||||
SELECT_MAP(MAP_LAPIS_CAVE_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(102),
|
||||
@@ -514,7 +514,7 @@ static const struct ScriptCommand s_gs193_g5_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs193_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs193_g5_s0_station_sref_script }; /* 0x8244d24 */
|
||||
|
||||
static const struct ScriptCommand s_gs193_g5_s0_lives0_dlg0[] = { /* 0x8244d30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(517),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -543,7 +543,7 @@ static const struct ScriptCommand s_gs193_g5_s0_lives0_dlg0[] = { /* 0x8244d30 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs193_g5_s0_lives1_dlg0[] = { /* 0x8244f58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(546),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs194_g0_s0_station_sref_script[] = { /* 0x8245514 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
SELECT_MAP(194),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -18,7 +18,7 @@ static const struct ScriptCommand s_gs194_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs194_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs194_g0_s0_station_sref_script }; /* 0x8245580 */
|
||||
|
||||
static const struct ScriptCommand s_gs194_g1_s0_station_sref_script[] = { /* 0x824558c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
SELECT_MAP(194),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(10),
|
||||
@@ -41,7 +41,7 @@ static const struct ScriptRef s_gs194_g1_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs194_g1_s0_lives0_dlg0[] = { /* 0x8245734 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(44),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -86,7 +86,7 @@ static const struct ScriptCommand s_gs194_g1_s0_lives0_dlg0[] = { /* 0x8245734 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs194_g1_s0_lives1_dlg0[] = { /* 0x8245ab0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s0_station_sref_script[] = { /* 0x8245cc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
JUMPIF_SCENARIOCHECK(5, /* to label */ 0),
|
||||
EXECUTE_STATION(12, 0, 0),
|
||||
LABEL(0), /* = 0x00 */
|
||||
@@ -64,76 +64,76 @@ static const struct ScriptCommand s_gs195_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs195_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs195_g0_s0_station_sref_script }; /* 0x8245f84 */
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s0_obj0_dlg2[] = { /* 0x8245f90 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
JUMP_SCRIPT(SAVE_AND_WAREHOUSE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s1_lives0_dlg0[] = { /* 0x8245fb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s1_lives1_dlg0[] = { /* 0x8245ff0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(79),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s2_lives0_dlg0[] = { /* 0x8246030 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(86),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s2_lives1_dlg0[] = { /* 0x8246070 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s3_lives0_dlg0[] = { /* 0x82460b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(100),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s3_lives1_dlg0[] = { /* 0x82460f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s4_lives0_dlg0[] = { /* 0x8246130 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(114),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s4_lives1_dlg0[] = { /* 0x8246160 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(120),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s5_obj0_dlg2[] = { /* 0x8246190 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
JUMP_SCRIPT(WAREHOUSE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g0_s5_obj1_dlg2[] = { /* 0x82461b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g1_s0_station_sref_script[] = { /* 0x82461d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(136),
|
||||
BGM_STOP,
|
||||
{ 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_MAP(195),
|
||||
@@ -175,14 +175,14 @@ static const struct ScriptRef s_gs195_g1_s0_station_sref = { 402, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs195_g1_s0_eff0_script[] = { /* 0x8246504 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(178),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
END_DELETE,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g1_s0_lives0_dlg0[] = { /* 0x8246544 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(185),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -232,7 +232,7 @@ static const struct ScriptCommand s_gs195_g1_s0_lives0_dlg0[] = { /* 0x8246544 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs195_g1_s0_lives1_dlg0[] = { /* 0x824696c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(235),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -257,7 +257,7 @@ static const struct ScriptCommand s_gs195_g1_s0_lives1_dlg0[] = { /* 0x824696c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g2_s0_station_sref_script[] = { /* 0x8246acc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(260),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
RET_DIRECT,
|
||||
};
|
||||
@@ -265,13 +265,13 @@ static const struct ScriptCommand s_gs195_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs195_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs195_g2_s0_station_sref_script }; /* 0x8246afc */
|
||||
|
||||
static const struct ScriptCommand s_gs195_g2_s0_lives0_dlg2[] = { /* 0x8246b08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(268),
|
||||
EXECUTE_STATION(-1, 2, 1),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g2_s0_evt0_sref_script[] = { /* 0x8246b38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(274),
|
||||
EXECUTE_STATION(-1, 2, 1),
|
||||
HALT,
|
||||
};
|
||||
@@ -279,7 +279,7 @@ static const struct ScriptCommand s_gs195_g2_s0_evt0_sref_script[] = { /* 0x8246
|
||||
static const struct ScriptRef s_gs195_g2_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs195_g2_s0_evt0_sref_script }; /* 0x8246b68 */
|
||||
|
||||
static const struct ScriptCommand s_gs195_g2_s1_station_sref_script[] = { /* 0x8246b74 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(282),
|
||||
SELECT_ENTITIES(-1, 1),
|
||||
CANCEL_ENTITIES(-1, 0),
|
||||
AWAIT_CUE(3),
|
||||
@@ -289,7 +289,7 @@ static const struct ScriptCommand s_gs195_g2_s1_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs195_g2_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs195_g2_s1_station_sref_script }; /* 0x8246bc4 */
|
||||
|
||||
static const struct ScriptCommand s_gs195_g2_s1_lives0_dlg0[] = { /* 0x8246bd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(292),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
WAIT(1),
|
||||
@@ -377,7 +377,7 @@ static const struct ScriptCommand s_gs195_g2_s1_lives0_dlg0[] = { /* 0x8246bd0 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs195_g2_s1_lives1_dlg0[] = { /* 0x8247300 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(380),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -401,7 +401,7 @@ static const struct ScriptCommand s_gs195_g2_s1_lives1_dlg0[] = { /* 0x8247300 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g3_s0_station_sref_script[] = { /* 0x8247450 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(404),
|
||||
SELECT_MAP(195),
|
||||
SELECT_WEATHER(13),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
@@ -415,7 +415,7 @@ static const struct ScriptCommand s_gs195_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs195_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs195_g3_s0_station_sref_script }; /* 0x82474e0 */
|
||||
|
||||
static const struct ScriptCommand s_gs195_g3_s0_lives0_dlg0[] = { /* 0x82474ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(418),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -489,7 +489,7 @@ static const struct ScriptCommand s_gs195_g3_s0_lives0_dlg0[] = { /* 0x82474ec *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs195_g3_s0_lives1_dlg0[] = { /* 0x8247b14 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(492),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -516,7 +516,7 @@ static const struct ScriptCommand s_gs195_g3_s0_lives1_dlg0[] = { /* 0x8247b14 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g4_s0_station_sref_script[] = { /* 0x8247c94 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(519),
|
||||
SELECT_MAP(195),
|
||||
SELECT_WEATHER(13),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
@@ -530,7 +530,7 @@ static const struct ScriptCommand s_gs195_g4_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs195_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs195_g4_s0_station_sref_script }; /* 0x8247d24 */
|
||||
|
||||
static const struct ScriptCommand s_gs195_g4_s0_lives0_dlg0[] = { /* 0x8247d30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(533),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x20, 0x0080, 0x00000000, 0x00000000, NULL },
|
||||
@@ -564,7 +564,7 @@ static const struct ScriptCommand s_gs195_g4_s0_lives0_dlg0[] = { /* 0x8247d30 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g4_s0_lives1_dlg0[] = { /* 0x82480b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(567),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x40, 0x0080, 0x00000000, 0x00000000, NULL },
|
||||
@@ -581,7 +581,7 @@ static const struct ScriptCommand s_gs195_g4_s0_lives1_dlg0[] = { /* 0x82480b4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g5_s0_station_sref_script[] = { /* 0x8248194 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(584),
|
||||
SELECT_MAP(195),
|
||||
SELECT_WEATHER(13),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
@@ -595,7 +595,7 @@ static const struct ScriptCommand s_gs195_g5_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs195_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs195_g5_s0_station_sref_script }; /* 0x8248224 */
|
||||
|
||||
static const struct ScriptCommand s_gs195_g5_s0_lives0_dlg0[] = { /* 0x8248230 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(598),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -624,7 +624,7 @@ static const struct ScriptCommand s_gs195_g5_s0_lives0_dlg0[] = { /* 0x8248230 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs195_g5_s0_lives1_dlg0[] = { /* 0x8248458 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(627),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s0_station_sref_script[] = { /* 0x8248a54 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(MAP_MT_BLAZE_MID),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 12, /* to label */ 0),
|
||||
@@ -48,7 +48,7 @@ static const struct ScriptCommand s_gs196_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs196_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs196_g0_s0_station_sref_script }; /* 0x8248cc0 */
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s0_evt0_sref_script[] = { /* 0x8248ccc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(51),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -65,7 +65,7 @@ static const struct ScriptCommand s_gs196_g0_s0_evt0_sref_script[] = { /* 0x8248
|
||||
static const struct ScriptRef s_gs196_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs196_g0_s0_evt0_sref_script }; /* 0x8248da8 */
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s0_evt1_sref_script[] = { /* 0x8248db4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(68),
|
||||
JUMPIF_SCENARIOCHECK(5, /* to label */ 0),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")),
|
||||
CHOICE(/* label */ 1, _("Yes.")),
|
||||
@@ -95,52 +95,52 @@ static const struct ScriptCommand s_gs196_g0_s0_evt1_sref_script[] = { /* 0x8248
|
||||
static const struct ScriptRef s_gs196_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs196_g0_s0_evt1_sref_script }; /* 0x8248f7c */
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s0_obj0_dlg2[] = { /* 0x8248f88 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s1_lives0_dlg0[] = { /* 0x8248fa8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(103),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s1_lives1_dlg0[] = { /* 0x8248fe8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s3_lives0_dlg0[] = { /* 0x8249028 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(117),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s3_lives1_dlg0[] = { /* 0x8249068 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s4_lives0_dlg0[] = { /* 0x82490a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs196_g0_s4_lives1_dlg0[] = { /* 0x82490d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs196_g1_s0_station_sref_script[] = { /* 0x8249108 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(143),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_MT_BLAZE_MID),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_MT_BLAZE_MID),
|
||||
@@ -158,7 +158,7 @@ static const struct ScriptCommand s_gs196_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs196_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs196_g1_s0_station_sref_script }; /* 0x82491d8 */
|
||||
|
||||
static const struct ScriptCommand s_gs196_g1_s0_lives0_dlg0[] = { /* 0x82491e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(161),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -183,7 +183,7 @@ static const struct ScriptCommand s_gs196_g1_s0_lives0_dlg0[] = { /* 0x82491e4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs196_g1_s0_lives1_dlg0[] = { /* 0x8249404 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(186),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs197_g0_s0_station_sref_script[] = { /* 0x82496fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
SELECT_MAP(MAP_MT_BLAZE_END),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -17,7 +17,7 @@ static const struct ScriptCommand s_gs197_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs197_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs197_g0_s0_station_sref_script }; /* 0x8249768 */
|
||||
|
||||
static const struct ScriptCommand s_gs197_g1_s0_station_sref_script[] = { /* 0x8249774 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(20),
|
||||
SELECT_MAP(MAP_MT_BLAZE_END),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -30,7 +30,7 @@ static const struct ScriptCommand s_gs197_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs197_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs197_g1_s0_station_sref_script }; /* 0x82497f4 */
|
||||
|
||||
static const struct ScriptCommand s_gs197_g1_s0_eff0_script[] = { /* 0x8249800 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(33),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -44,7 +44,7 @@ static const struct ScriptCommand s_gs197_g1_s0_eff0_script[] = { /* 0x8249800 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs197_g1_s0_lives0_dlg0[] = { /* 0x82498b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(47),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -304,7 +304,7 @@ static const struct ScriptCommand s_gs197_g1_s0_lives0_dlg0[] = { /* 0x82498b0 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs197_g1_s0_lives1_dlg0[] = { /* 0x824b53c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(307),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -341,7 +341,7 @@ static const struct ScriptCommand s_gs197_g1_s0_lives1_dlg0[] = { /* 0x824b53c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs197_g1_s0_lives2_dlg0[] = { /* 0x824b75c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(344),
|
||||
SELECT_ANIMATION(22),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -385,7 +385,7 @@ static const struct ScriptCommand s_gs197_g1_s0_lives2_dlg0[] = { /* 0x824b75c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs197_g1_s0_eff1_script[] = { /* 0x824b9ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(388),
|
||||
AWAIT_CUE(8),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000172, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -397,7 +397,7 @@ static const struct ScriptCommand s_gs197_g1_s0_eff1_script[] = { /* 0x824b9ec *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs197_g1_s0_eff2_script[] = { /* 0x824ba7c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(400),
|
||||
AWAIT_CUE(9),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000172, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s0_station_sref_script[] = { /* 0x824bbfc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
JUMPIF_SCENARIOCHECK(5, /* to label */ 0),
|
||||
EXECUTE_STATION(12, 0, 0),
|
||||
LABEL(0), /* = 0x00 */
|
||||
@@ -54,47 +54,47 @@ static const struct ScriptCommand s_gs198_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs198_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs198_g0_s0_station_sref_script }; /* 0x824beb8 */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s0_obj0_dlg2[] = { /* 0x824bec4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(57),
|
||||
JUMP_SCRIPT(SAVE_AND_WAREHOUSE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s1_lives0_dlg0[] = { /* 0x824bee4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(62),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s1_lives1_dlg0[] = { /* 0x824bf24 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(69),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s2_lives0_dlg0[] = { /* 0x824bf64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(76),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s2_lives1_dlg0[] = { /* 0x824bfa4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(83),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s3_lives0_dlg0[] = { /* 0x824bfe4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s3_lives1_dlg0[] = { /* 0x824c024 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(97),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -104,29 +104,29 @@ static const struct ScriptCommand s_gs198_g0_s3_lives1_dlg0[] = { /* 0x824c024 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s4_lives0_dlg0[] = { /* 0x824c094 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s4_lives1_dlg0[] = { /* 0x824c0c4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s5_obj0_dlg2[] = { /* 0x824c0f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(119),
|
||||
JUMP_SCRIPT(WAREHOUSE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g0_s5_obj1_dlg2[] = { /* 0x824c114 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g1_s0_station_sref_script[] = { /* 0x824c134 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_FROSTY_FOREST_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_FROSTY_FOREST_ENTRY),
|
||||
@@ -144,7 +144,7 @@ static const struct ScriptCommand s_gs198_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs198_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g1_s0_station_sref_script }; /* 0x824c204 */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g1_s0_eff0_script[] = { /* 0x824c210 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(147),
|
||||
CAMERA_END_PAN,
|
||||
CAMERA_INIT_PAN,
|
||||
{ 0x89, 0xc8, 0x0100, 0x00000000, 0x00000000, NULL },
|
||||
@@ -155,7 +155,7 @@ static const struct ScriptCommand s_gs198_g1_s0_eff0_script[] = { /* 0x824c210 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g1_s0_lives0_dlg0[] = { /* 0x824c290 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(158),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(5),
|
||||
@@ -185,7 +185,7 @@ static const struct ScriptCommand s_gs198_g1_s0_lives0_dlg0[] = { /* 0x824c290 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs198_g1_s0_lives1_dlg0[] = { /* 0x824c670 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(188),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -194,7 +194,7 @@ static const struct ScriptCommand s_gs198_g1_s0_lives1_dlg0[] = { /* 0x824c670 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g2_s0_station_sref_script[] = { /* 0x824c6d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(197),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
RET_DIRECT,
|
||||
};
|
||||
@@ -202,13 +202,13 @@ static const struct ScriptCommand s_gs198_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs198_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs198_g2_s0_station_sref_script }; /* 0x824c700 */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g2_s0_lives0_dlg2[] = { /* 0x824c70c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(205),
|
||||
EXECUTE_STATION(-1, 2, 1),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g2_s0_evt0_sref_script[] = { /* 0x824c73c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(211),
|
||||
EXECUTE_STATION(-1, 2, 1),
|
||||
HALT,
|
||||
};
|
||||
@@ -216,7 +216,7 @@ static const struct ScriptCommand s_gs198_g2_s0_evt0_sref_script[] = { /* 0x824c
|
||||
static const struct ScriptRef s_gs198_g2_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs198_g2_s0_evt0_sref_script }; /* 0x824c76c */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g2_s1_station_sref_script[] = { /* 0x824c778 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(219),
|
||||
SELECT_ENTITIES(-1, 1),
|
||||
CANCEL_ENTITIES(-1, 0),
|
||||
AWAIT_CUE(3),
|
||||
@@ -226,7 +226,7 @@ static const struct ScriptCommand s_gs198_g2_s1_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs198_g2_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs198_g2_s1_station_sref_script }; /* 0x824c7c8 */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g2_s1_lives0_dlg0[] = { /* 0x824c7d4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(229),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
WAIT(1),
|
||||
@@ -312,7 +312,7 @@ static const struct ScriptCommand s_gs198_g2_s1_lives0_dlg0[] = { /* 0x824c7d4 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs198_g2_s1_lives1_dlg0[] = { /* 0x824cea4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(315),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -335,7 +335,7 @@ static const struct ScriptCommand s_gs198_g2_s1_lives1_dlg0[] = { /* 0x824cea4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g3_s0_station_sref_script[] = { /* 0x824cfe4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(338),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_FROSTY_FOREST_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_FROSTY_FOREST_ENTRY),
|
||||
@@ -353,7 +353,7 @@ static const struct ScriptCommand s_gs198_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs198_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g3_s0_station_sref_script }; /* 0x824d0b4 */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g3_s0_lives0_dlg0[] = { /* 0x824d0c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(356),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -382,7 +382,7 @@ static const struct ScriptCommand s_gs198_g3_s0_lives0_dlg0[] = { /* 0x824d0c0 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs198_g3_s0_lives1_dlg0[] = { /* 0x824d364 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(385),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -397,7 +397,7 @@ static const struct ScriptCommand s_gs198_g3_s0_lives1_dlg0[] = { /* 0x824d364 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g4_s0_station_sref_script[] = { /* 0x824d424 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(400),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_FROSTY_FOREST_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_FROSTY_FOREST_ENTRY),
|
||||
@@ -415,7 +415,7 @@ static const struct ScriptCommand s_gs198_g4_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs198_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g4_s0_station_sref_script }; /* 0x824d4f4 */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g4_s0_lives0_dlg0[] = { /* 0x824d500 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(418),
|
||||
SELECT_ANIMATION(8),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -445,7 +445,7 @@ static const struct ScriptCommand s_gs198_g4_s0_lives0_dlg0[] = { /* 0x824d500 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs198_g4_s0_lives1_dlg0[] = { /* 0x824d834 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(448),
|
||||
SELECT_ANIMATION(8),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
CALL_SCRIPT(WAKEUP_FUNC),
|
||||
@@ -455,7 +455,7 @@ static const struct ScriptCommand s_gs198_g4_s0_lives1_dlg0[] = { /* 0x824d834 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g5_s0_station_sref_script[] = { /* 0x824d8a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(458),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_FROSTY_FOREST_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_FROSTY_FOREST_ENTRY),
|
||||
@@ -473,7 +473,7 @@ static const struct ScriptCommand s_gs198_g5_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs198_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g5_s0_station_sref_script }; /* 0x824d974 */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g5_s0_lives0_dlg0[] = { /* 0x824d980 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(476),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x10, 0x0080, 0x00000000, 0x00000000, NULL },
|
||||
@@ -507,7 +507,7 @@ static const struct ScriptCommand s_gs198_g5_s0_lives0_dlg0[] = { /* 0x824d980 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g5_s0_lives1_dlg0[] = { /* 0x824dd18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(510),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x20, 0x0080, 0x00000000, 0x00000000, NULL },
|
||||
@@ -524,7 +524,7 @@ static const struct ScriptCommand s_gs198_g5_s0_lives1_dlg0[] = { /* 0x824dd18 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g6_s0_station_sref_script[] = { /* 0x824ddf8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(527),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_FROSTY_FOREST_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_FROSTY_FOREST_ENTRY),
|
||||
@@ -542,7 +542,7 @@ static const struct ScriptCommand s_gs198_g6_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs198_g6_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g6_s0_station_sref_script }; /* 0x824dec8 */
|
||||
|
||||
static const struct ScriptCommand s_gs198_g6_s0_lives0_dlg0[] = { /* 0x824ded4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(545),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -570,7 +570,7 @@ static const struct ScriptCommand s_gs198_g6_s0_lives0_dlg0[] = { /* 0x824ded4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs198_g6_s0_lives1_dlg0[] = { /* 0x824e0f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(573),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s0_station_sref_script[] = { /* 0x824e714 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(MAP_FROSTY_FOREST_MID),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 13, /* to label */ 0),
|
||||
@@ -48,7 +48,7 @@ static const struct ScriptCommand s_gs199_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs199_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs199_g0_s0_station_sref_script }; /* 0x824e980 */
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s0_evt0_sref_script[] = { /* 0x824e98c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(51),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -65,7 +65,7 @@ static const struct ScriptCommand s_gs199_g0_s0_evt0_sref_script[] = { /* 0x824e
|
||||
static const struct ScriptRef s_gs199_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs199_g0_s0_evt0_sref_script }; /* 0x824ea68 */
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s0_evt1_sref_script[] = { /* 0x824ea74 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(68),
|
||||
JUMPIF_SCENARIOCHECK(5, /* to label */ 0),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")),
|
||||
CHOICE(/* label */ 1, _("Yes.")),
|
||||
@@ -95,52 +95,52 @@ static const struct ScriptCommand s_gs199_g0_s0_evt1_sref_script[] = { /* 0x824e
|
||||
static const struct ScriptRef s_gs199_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs199_g0_s0_evt1_sref_script }; /* 0x824ec3c */
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s0_obj0_dlg2[] = { /* 0x824ec48 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s1_lives0_dlg0[] = { /* 0x824ec68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(103),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s1_lives1_dlg0[] = { /* 0x824eca8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s3_lives0_dlg0[] = { /* 0x824ece8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(117),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s3_lives1_dlg0[] = { /* 0x824ed28 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s4_lives0_dlg0[] = { /* 0x824ed68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs199_g0_s4_lives1_dlg0[] = { /* 0x824ed98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs199_g1_s0_station_sref_script[] = { /* 0x824edc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(143),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_FROSTY_FOREST_MID),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_FROSTY_FOREST_MID),
|
||||
@@ -158,7 +158,7 @@ static const struct ScriptCommand s_gs199_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs199_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs199_g1_s0_station_sref_script }; /* 0x824ee98 */
|
||||
|
||||
static const struct ScriptCommand s_gs199_g1_s0_lives0_dlg0[] = { /* 0x824eea4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(161),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -192,7 +192,7 @@ static const struct ScriptCommand s_gs199_g1_s0_lives0_dlg0[] = { /* 0x824eea4 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs199_g1_s0_lives1_dlg0[] = { /* 0x824f190 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(195),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -208,7 +208,7 @@ static const struct ScriptCommand s_gs199_g1_s0_lives1_dlg0[] = { /* 0x824f190 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs199_g2_s0_station_sref_script[] = { /* 0x824f260 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(211),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_FROSTY_FOREST_MID),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_FROSTY_FOREST_MID),
|
||||
@@ -226,7 +226,7 @@ static const struct ScriptCommand s_gs199_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs199_g2_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs199_g2_s0_station_sref_script }; /* 0x824f330 */
|
||||
|
||||
static const struct ScriptCommand s_gs199_g2_s0_lives0_dlg0[] = { /* 0x824f33c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(229),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -260,7 +260,7 @@ static const struct ScriptCommand s_gs199_g2_s0_lives0_dlg0[] = { /* 0x824f33c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs199_g2_s0_lives1_dlg0[] = { /* 0x824f6ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(263),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs200_g0_s0_station_sref_script[] = { /* 0x824fa24 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(MAP_FROSTY_FOREST_END),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs200_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs200_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs200_g0_s0_station_sref_script }; /* 0x824fa90 */
|
||||
|
||||
static const struct ScriptCommand s_gs200_g1_s0_station_sref_script[] = { /* 0x824fa9c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(MAP_FROSTY_FOREST_END),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -44,7 +44,7 @@ static const struct ScriptRef s_gs200_g1_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(47),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -330,7 +330,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs200_g1_s0_lives1_dlg0[] = { /* 0x825174c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(333),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -361,7 +361,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives1_dlg0[] = { /* 0x825174c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs200_g1_s0_lives2_dlg0[] = { /* 0x825190c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(364),
|
||||
{ 0x54, 0x00, 0x001e, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -422,7 +422,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives2_dlg0[] = { /* 0x825190c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs200_g1_s1_lives0_dlg0[] = { /* 0x8251cac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(425),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x60, 0x01, 0x0000, 0x000000a0, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(22),
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s0_station_sref_script[] = { /* 0x8251f44 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
JUMPIF_SCENARIOCHECK(5, /* to label */ 0),
|
||||
EXECUTE_STATION(12, 0, 0),
|
||||
LABEL(0), /* = 0x00 */
|
||||
@@ -56,76 +56,76 @@ static const struct ScriptCommand s_gs201_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs201_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs201_g0_s0_station_sref_script }; /* 0x8252210 */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s0_obj0_dlg2[] = { /* 0x825221c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(59),
|
||||
JUMP_SCRIPT(SAVE_AND_WAREHOUSE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s1_lives0_dlg0[] = { /* 0x825223c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(64),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s1_lives1_dlg0[] = { /* 0x825227c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s2_lives0_dlg0[] = { /* 0x82522bc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s2_lives1_dlg0[] = { /* 0x82522fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(85),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s3_lives0_dlg0[] = { /* 0x825233c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(92),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s3_lives1_dlg0[] = { /* 0x825237c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(99),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s4_lives0_dlg0[] = { /* 0x82523bc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(106),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s4_lives1_dlg0[] = { /* 0x82523ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s5_obj0_dlg2[] = { /* 0x825241c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
JUMP_SCRIPT(WAREHOUSE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g0_s5_obj1_dlg2[] = { /* 0x825243c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(123),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g1_s0_station_sref_script[] = { /* 0x825245c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(128),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_MT_FREEZE_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_MT_FREEZE_ENTRY),
|
||||
@@ -144,7 +144,7 @@ static const struct ScriptCommand s_gs201_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs201_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs201_g1_s0_station_sref_script }; /* 0x825253c */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g1_s0_lives0_dlg0[] = { /* 0x8252548 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(147),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL },
|
||||
@@ -261,7 +261,7 @@ static const struct ScriptCommand s_gs201_g1_s0_lives0_dlg0[] = { /* 0x8252548 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs201_g1_s0_lives1_dlg0[] = { /* 0x825366c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(264),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -290,7 +290,7 @@ static const struct ScriptCommand s_gs201_g1_s0_lives1_dlg0[] = { /* 0x825366c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g2_s0_station_sref_script[] = { /* 0x825380c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(293),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
RET_DIRECT,
|
||||
};
|
||||
@@ -298,13 +298,13 @@ static const struct ScriptCommand s_gs201_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs201_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs201_g2_s0_station_sref_script }; /* 0x825383c */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g2_s0_lives0_dlg2[] = { /* 0x8253848 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(301),
|
||||
EXECUTE_STATION(-1, 2, 1),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g2_s0_evt0_sref_script[] = { /* 0x8253878 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(307),
|
||||
EXECUTE_STATION(-1, 2, 1),
|
||||
HALT,
|
||||
};
|
||||
@@ -312,7 +312,7 @@ static const struct ScriptCommand s_gs201_g2_s0_evt0_sref_script[] = { /* 0x8253
|
||||
static const struct ScriptRef s_gs201_g2_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs201_g2_s0_evt0_sref_script }; /* 0x82538a8 */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g2_s1_station_sref_script[] = { /* 0x82538b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(315),
|
||||
SELECT_ENTITIES(-1, 1),
|
||||
CANCEL_ENTITIES(-1, 0),
|
||||
AWAIT_CUE(3),
|
||||
@@ -322,7 +322,7 @@ static const struct ScriptCommand s_gs201_g2_s1_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs201_g2_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs201_g2_s1_station_sref_script }; /* 0x8253904 */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g2_s1_lives0_dlg0[] = { /* 0x8253910 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(325),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
WAIT(1),
|
||||
@@ -407,7 +407,7 @@ static const struct ScriptCommand s_gs201_g2_s1_lives0_dlg0[] = { /* 0x8253910 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs201_g2_s1_lives1_dlg0[] = { /* 0x8253f50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(410),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -433,7 +433,7 @@ static const struct ScriptCommand s_gs201_g2_s1_lives1_dlg0[] = { /* 0x8253f50 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g3_s0_station_sref_script[] = { /* 0x82540c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(436),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_MT_FREEZE_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_MT_FREEZE_ENTRY),
|
||||
@@ -452,7 +452,7 @@ static const struct ScriptCommand s_gs201_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs201_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs201_g3_s0_station_sref_script }; /* 0x82541a0 */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g3_s0_lives0_dlg0[] = { /* 0x82541ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(455),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -480,7 +480,7 @@ static const struct ScriptCommand s_gs201_g3_s0_lives0_dlg0[] = { /* 0x82541ac *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs201_g3_s0_lives1_dlg0[] = { /* 0x8254430 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(483),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -496,7 +496,7 @@ static const struct ScriptCommand s_gs201_g3_s0_lives1_dlg0[] = { /* 0x8254430 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g4_s0_station_sref_script[] = { /* 0x8254500 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(499),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_MT_FREEZE_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_MT_FREEZE_ENTRY),
|
||||
@@ -515,7 +515,7 @@ static const struct ScriptCommand s_gs201_g4_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs201_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs201_g4_s0_station_sref_script }; /* 0x82545e0 */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g4_s0_lives0_dlg0[] = { /* 0x82545ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(518),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x30, 0x0080, 0x00000007, 0x00000000, NULL },
|
||||
@@ -549,7 +549,7 @@ static const struct ScriptCommand s_gs201_g4_s0_lives0_dlg0[] = { /* 0x82545ec *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g4_s0_lives1_dlg0[] = { /* 0x825492c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(552),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x20, 0x0080, 0x00000007, 0x00000000, NULL },
|
||||
@@ -566,7 +566,7 @@ static const struct ScriptCommand s_gs201_g4_s0_lives1_dlg0[] = { /* 0x825492c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g5_s0_station_sref_script[] = { /* 0x8254a0c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(569),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_MT_FREEZE_ENTRY),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_MT_FREEZE_ENTRY),
|
||||
@@ -585,7 +585,7 @@ static const struct ScriptCommand s_gs201_g5_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs201_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs201_g5_s0_station_sref_script }; /* 0x8254aec */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g5_s0_lives0_dlg0[] = { /* 0x8254af8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(588),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -612,7 +612,7 @@ static const struct ScriptCommand s_gs201_g5_s0_lives0_dlg0[] = { /* 0x8254af8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g5_s0_lives1_dlg0[] = { /* 0x8254d64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(615),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -628,7 +628,7 @@ static const struct ScriptCommand s_gs201_g5_s0_lives1_dlg0[] = { /* 0x8254d64 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g6_s0_station_sref_script[] = { /* 0x8254e34 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(631),
|
||||
SELECT_MAP(MAP_MT_FREEZE_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(115),
|
||||
@@ -640,7 +640,7 @@ static const struct ScriptCommand s_gs201_g6_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs201_g6_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs201_g6_s0_station_sref_script }; /* 0x8254ea4 */
|
||||
|
||||
static const struct ScriptCommand s_gs201_g6_s0_eff0_script[] = { /* 0x8254eb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(643),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -651,7 +651,7 @@ static const struct ScriptCommand s_gs201_g6_s0_eff0_script[] = { /* 0x8254eb0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g6_s0_lives0_dlg0[] = { /* 0x8254f30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(654),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -671,7 +671,7 @@ static const struct ScriptCommand s_gs201_g6_s0_lives0_dlg0[] = { /* 0x8254f30 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs201_g6_s0_lives1_dlg0[] = { /* 0x825508c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(674),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s0_station_sref_script[] = { /* 0x82556a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(MAP_MT_FREEZE_MID),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 14, /* to label */ 0),
|
||||
@@ -50,7 +50,7 @@ static const struct ScriptCommand s_gs202_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs202_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs202_g0_s0_station_sref_script }; /* 0x825592c */
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s0_evt0_sref_script[] = { /* 0x8255938 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(53),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -72,7 +72,7 @@ static const struct ScriptCommand s_gs202_g0_s0_evt0_sref_script[] = { /* 0x8255
|
||||
static const struct ScriptRef s_gs202_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs202_g0_s0_evt0_sref_script }; /* 0x8255a64 */
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s0_evt1_sref_script[] = { /* 0x8255a70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(75),
|
||||
JUMPIF_SCENARIOCHECK(5, /* to label */ 0),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")),
|
||||
CHOICE(/* label */ 1, _("Yes.")),
|
||||
@@ -102,52 +102,52 @@ static const struct ScriptCommand s_gs202_g0_s0_evt1_sref_script[] = { /* 0x8255
|
||||
static const struct ScriptRef s_gs202_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs202_g0_s0_evt1_sref_script }; /* 0x8255c38 */
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s0_obj0_dlg2[] = { /* 0x8255c44 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(105),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s1_lives0_dlg0[] = { /* 0x8255c64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s1_lives1_dlg0[] = { /* 0x8255ca4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(117),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s3_lives0_dlg0[] = { /* 0x8255ce4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s3_lives1_dlg0[] = { /* 0x8255d24 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s4_lives0_dlg0[] = { /* 0x8255d64 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(138),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs202_g0_s4_lives1_dlg0[] = { /* 0x8255d94 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(144),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs202_g1_s0_station_sref_script[] = { /* 0x8255dc4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(150),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_MT_FREEZE_MID),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_MT_FREEZE_MID),
|
||||
@@ -171,7 +171,7 @@ static const struct ScriptCommand s_gs202_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs202_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs202_g1_s0_station_sref_script }; /* 0x8255ef4 */
|
||||
|
||||
static const struct ScriptCommand s_gs202_g1_s0_lives0_dlg0[] = { /* 0x8255f00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(174),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -202,7 +202,7 @@ static const struct ScriptCommand s_gs202_g1_s0_lives0_dlg0[] = { /* 0x8255f00 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs202_g1_s0_lives1_dlg0[] = { /* 0x82561ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(205),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -219,7 +219,7 @@ static const struct ScriptCommand s_gs202_g1_s0_lives1_dlg0[] = { /* 0x82561ac *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs202_g2_s0_station_sref_script[] = { /* 0x825628c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(222),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
RET_DIRECT,
|
||||
};
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs203_g0_s0_station_sref_script[] = { /* 0x8256534 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(24),
|
||||
SELECT_MAP(203),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -30,7 +30,7 @@ static const struct ScriptCommand s_gs203_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs203_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs203_g0_s0_station_sref_script }; /* 0x82565a0 */
|
||||
|
||||
static const struct ScriptCommand s_gs203_g1_s0_station_sref_script[] = { /* 0x82565ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(33),
|
||||
SELECT_MAP(203),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_STOP,
|
||||
@@ -44,7 +44,7 @@ static const struct ScriptCommand s_gs203_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs203_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs203_g1_s0_station_sref_script }; /* 0x825663c */
|
||||
|
||||
static const struct ScriptCommand s_gs203_g1_s0_eff0_script[] = { /* 0x8256648 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(47),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -58,7 +58,7 @@ static const struct ScriptCommand s_gs203_g1_s0_eff0_script[] = { /* 0x8256648 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(61),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0004, 0x00000052, 0x00000000, NULL },
|
||||
@@ -236,7 +236,7 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs203_g1_s0_lives1_dlg0[] = { /* 0x8257a0c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(239),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
WALK_GRID(256, 1),
|
||||
@@ -279,7 +279,7 @@ static const struct ScriptCommand s_gs203_g1_s0_lives1_dlg0[] = { /* 0x8257a0c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g1_s1_lives0_dlg0[] = { /* 0x8257c8c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(282),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -308,7 +308,7 @@ static const struct ScriptCommand s_gs203_g1_s1_lives0_dlg0[] = { /* 0x8257c8c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g2_s0_station_sref_script[] = { /* 0x8257e2c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(311),
|
||||
BGM_STOP,
|
||||
SELECT_MAP(203),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
@@ -320,14 +320,14 @@ static const struct ScriptCommand s_gs203_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs203_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs203_g2_s0_station_sref_script }; /* 0x8257e9c */
|
||||
|
||||
static const struct ScriptCommand s_gs203_g2_s0_eff0_script[] = { /* 0x8257ea8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(323),
|
||||
CAMERA_INIT_PAN,
|
||||
AWAIT_CUE(4),
|
||||
END_DELETE,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g2_s0_lives0_dlg0[] = { /* 0x8257ee8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(330),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -466,7 +466,7 @@ static const struct ScriptCommand s_gs203_g2_s0_lives0_dlg0[] = { /* 0x8257ee8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs203_g2_s0_lives1_dlg0[] = { /* 0x8258a00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(469),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -504,7 +504,7 @@ static const struct ScriptCommand s_gs203_g2_s0_lives1_dlg0[] = { /* 0x8258a00 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g2_s0_lives2_dlg0[] = { /* 0x8258c30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(507),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -538,7 +538,7 @@ static const struct ScriptCommand s_gs203_g2_s0_lives2_dlg0[] = { /* 0x8258c30 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g2_s1_lives0_dlg0[] = { /* 0x8258e20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(541),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
@@ -579,7 +579,7 @@ static const struct ScriptCommand s_gs203_g2_s1_lives0_dlg0[] = { /* 0x8258e20 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g2_s1_lives1_dlg0[] = { /* 0x8259080 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(582),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x50, 0x0100, 0x00000004, 0x00000000, NULL },
|
||||
@@ -611,7 +611,7 @@ static const struct ScriptCommand s_gs203_g2_s1_lives1_dlg0[] = { /* 0x8259080 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g2_s1_lives2_dlg0[] = { /* 0x8259250 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(614),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x50, 0x0100, 0x00000004, 0x00000000, NULL },
|
||||
@@ -637,7 +637,7 @@ static const struct ScriptCommand s_gs203_g2_s1_lives2_dlg0[] = { /* 0x8259250 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g3_s0_station_sref_script[] = { /* 0x82593c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(640),
|
||||
SELECT_MAP(203),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
AWAIT_CUE(3),
|
||||
@@ -667,7 +667,7 @@ static const struct ScriptRef s_gs203_g3_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(670),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0006, 0x00000052, 0x00000000, NULL },
|
||||
@@ -1041,7 +1041,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs203_g3_s0_lives1_dlg0[] = { /* 0x825bcb4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1044),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -1144,7 +1144,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives1_dlg0[] = { /* 0x825bcb4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g3_s0_lives2_dlg0[] = { /* 0x825c2f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1147),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -1181,7 +1181,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives2_dlg0[] = { /* 0x825c2f4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g3_s0_lives3_dlg0[] = { /* 0x825c514 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1184),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -1205,7 +1205,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives3_dlg0[] = { /* 0x825c514 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g3_s0_lives4_dlg0[] = { /* 0x825c664 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1208),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(9),
|
||||
@@ -1228,7 +1228,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives4_dlg0[] = { /* 0x825c664 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g3_s0_lives5_dlg0[] = { /* 0x825c7a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1231),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(12),
|
||||
ROTATE(4, 10, DIRECTION_NORTH),
|
||||
@@ -1242,7 +1242,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives5_dlg0[] = { /* 0x825c7a4 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs203_g3_s1_lives0_dlg0[] = { /* 0x825c854 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(1245),
|
||||
{ 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x60, 0x01, 0x0000, 0x000000a0, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(22),
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs204_g0_s0_station_sref_script[] = { /* 0x825ce34 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(MAP_MAGMA_CAVERN_ENTRY),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 15, /* to label */ 0),
|
||||
@@ -45,47 +45,47 @@ static const struct ScriptCommand s_gs204_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs204_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs204_g0_s0_station_sref_script }; /* 0x825d030 */
|
||||
|
||||
static const struct ScriptCommand s_gs204_g0_s1_lives0_dlg0[] = { /* 0x825d03c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(48),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs204_g0_s1_lives1_dlg0[] = { /* 0x825d07c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(55),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs204_g0_s3_lives0_dlg0[] = { /* 0x825d0bc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(62),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs204_g0_s3_lives1_dlg0[] = { /* 0x825d0fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(69),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs204_g0_s4_lives0_dlg0[] = { /* 0x825d13c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(76),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs204_g0_s4_lives1_dlg0[] = { /* 0x825d16c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs204_g1_s0_station_sref_script[] = { /* 0x825d19c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(88),
|
||||
SELECT_MAP(MAP_MAGMA_CAVERN_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(108),
|
||||
@@ -98,7 +98,7 @@ static const struct ScriptCommand s_gs204_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs204_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs204_g1_s0_station_sref_script }; /* 0x825d21c */
|
||||
|
||||
static const struct ScriptCommand s_gs204_g1_s0_lives0_dlg0[] = { /* 0x825d228 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000067, 0x00000000, NULL },
|
||||
@@ -139,7 +139,7 @@ static const struct ScriptCommand s_gs204_g1_s0_lives0_dlg0[] = { /* 0x825d228 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs204_g1_s0_lives1_dlg0[] = { /* 0x825d6dc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(142),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -153,7 +153,7 @@ static const struct ScriptCommand s_gs204_g1_s0_lives1_dlg0[] = { /* 0x825d6dc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs204_g2_s0_station_sref_script[] = { /* 0x825d78c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(156),
|
||||
SELECT_MAP(MAP_MAGMA_CAVERN_ENTRY),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(108),
|
||||
@@ -166,7 +166,7 @@ static const struct ScriptCommand s_gs204_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs204_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs204_g2_s0_station_sref_script }; /* 0x825d80c */
|
||||
|
||||
static const struct ScriptCommand s_gs204_g2_s0_lives0_dlg0[] = { /* 0x825d818 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(169),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL },
|
||||
@@ -188,7 +188,7 @@ static const struct ScriptCommand s_gs204_g2_s0_lives0_dlg0[] = { /* 0x825d818 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs204_g2_s0_lives1_dlg0[] = { /* 0x825d9bc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(191),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s0_station_sref_script[] = { /* 0x825dccc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(MAP_MAGMA_CAVERN_MID),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_GT, 17, /* to label */ 0),
|
||||
@@ -43,7 +43,7 @@ static const struct ScriptCommand s_gs205_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs205_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs205_g0_s0_station_sref_script }; /* 0x825dee8 */
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s0_evt0_sref_script[] = { /* 0x825def4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(46),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -60,7 +60,7 @@ static const struct ScriptCommand s_gs205_g0_s0_evt0_sref_script[] = { /* 0x825d
|
||||
static const struct ScriptRef s_gs205_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs205_g0_s0_evt0_sref_script }; /* 0x825dfd0 */
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s0_evt1_sref_script[] = { /* 0x825dfdc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -79,52 +79,52 @@ static const struct ScriptCommand s_gs205_g0_s0_evt1_sref_script[] = { /* 0x825d
|
||||
static const struct ScriptRef s_gs205_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs205_g0_s0_evt1_sref_script }; /* 0x825e0dc */
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s0_obj0_dlg2[] = { /* 0x825e0e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s1_lives0_dlg0[] = { /* 0x825e108 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s1_lives1_dlg0[] = { /* 0x825e148 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(94),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s3_lives0_dlg0[] = { /* 0x825e188 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s3_lives1_dlg0[] = { /* 0x825e1c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s4_lives0_dlg0[] = { /* 0x825e208 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs205_g0_s4_lives1_dlg0[] = { /* 0x825e238 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs205_g1_s0_station_sref_script[] = { /* 0x825e268 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(127),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_MAGMA_CAVERN_MID),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_MAGMA_CAVERN_MID),
|
||||
@@ -142,7 +142,7 @@ static const struct ScriptCommand s_gs205_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs205_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs205_g1_s0_station_sref_script }; /* 0x825e338 */
|
||||
|
||||
static const struct ScriptCommand s_gs205_g1_s0_lives0_dlg0[] = { /* 0x825e344 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -167,7 +167,7 @@ static const struct ScriptCommand s_gs205_g1_s0_lives0_dlg0[] = { /* 0x825e344 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs205_g1_s0_lives1_dlg0[] = { /* 0x825e570 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(170),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs206_g0_s0_station_sref_script[] = { /* 0x825e858 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(206),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs206_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs206_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs206_g0_s0_station_sref_script }; /* 0x825e8c4 */
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_station_sref_script[] = { /* 0x825e8d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(206),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -45,14 +45,14 @@ static const struct ScriptCommand s_gs206_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs206_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs206_g1_s0_station_sref_script }; /* 0x825eacc */
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_eff0_script[] = { /* 0x825ead8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(48),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
END_DELETE,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_lives0_dlg0[] = { /* 0x825eb18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(55),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -154,7 +154,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives0_dlg0[] = { /* 0x825eb18 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_lives1_dlg0[] = { /* 0x825f2ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(157),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -176,7 +176,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives1_dlg0[] = { /* 0x825f2ec *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_lives2_dlg0[] = { /* 0x825f41c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(179),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(14),
|
||||
CALL_SCRIPT(JUMP_SURPRISE_FUNC),
|
||||
@@ -187,7 +187,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives2_dlg0[] = { /* 0x825f41c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_lives3_dlg0[] = { /* 0x825f49c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(190),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(14),
|
||||
CALL_SCRIPT(JUMP_SURPRISE_FUNC),
|
||||
@@ -198,7 +198,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives3_dlg0[] = { /* 0x825f49c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_lives4_dlg0[] = { /* 0x825f51c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(201),
|
||||
SELECT_ANIMATION(22),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -215,7 +215,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives4_dlg0[] = { /* 0x825f51c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_eff1_script[] = { /* 0x825f5fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(218),
|
||||
AWAIT_CUE(11),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000067, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -224,7 +224,7 @@ static const struct ScriptCommand s_gs206_g1_s0_eff1_script[] = { /* 0x825f5fc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_eff2_script[] = { /* 0x825f65c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(227),
|
||||
AWAIT_CUE(12),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000067, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -233,7 +233,7 @@ static const struct ScriptCommand s_gs206_g1_s0_eff2_script[] = { /* 0x825f65c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s0_eff3_script[] = { /* 0x825f6bc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(236),
|
||||
AWAIT_CUE(13),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000067, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -242,7 +242,7 @@ static const struct ScriptCommand s_gs206_g1_s0_eff3_script[] = { /* 0x825f6bc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s1_lives0_dlg0[] = { /* 0x825f71c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(245),
|
||||
{ 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
@@ -277,7 +277,7 @@ static const struct ScriptCommand s_gs206_g1_s1_lives0_dlg0[] = { /* 0x825f71c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s1_lives1_dlg0[] = { /* 0x825f91c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(280),
|
||||
SELECT_ANIMATION(25),
|
||||
{ 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(9),
|
||||
@@ -312,7 +312,7 @@ static const struct ScriptCommand s_gs206_g1_s1_lives1_dlg0[] = { /* 0x825f91c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs206_g1_s1_lives2_dlg0[] = { /* 0x825fb1c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(315),
|
||||
SELECT_ANIMATION(23),
|
||||
{ 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(10),
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs207_g0_s0_station_sref_script[] = { /* 0x825ff68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
SELECT_MAP(MAP_SKY_TOWER_ENTRY),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -17,7 +17,7 @@ static const struct ScriptCommand s_gs207_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs207_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs207_g0_s0_station_sref_script }; /* 0x825ffd4 */
|
||||
|
||||
static const struct ScriptCommand s_gs207_g1_s0_station_sref_script[] = { /* 0x825ffe0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(20),
|
||||
BGM_FADEOUT(30),
|
||||
WAIT(60),
|
||||
SELECT_MAP(MAP_SKY_TOWER_ENTRY),
|
||||
@@ -32,7 +32,7 @@ static const struct ScriptCommand s_gs207_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs207_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs207_g1_s0_station_sref_script }; /* 0x8260080 */
|
||||
|
||||
static const struct ScriptCommand s_gs207_g1_s0_lives0_dlg0[] = { /* 0x826008c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(35),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(48),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
@@ -88,7 +88,7 @@ static const struct ScriptCommand s_gs207_g1_s0_lives0_dlg0[] = { /* 0x826008c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs207_g1_s0_lives1_dlg0[] = { /* 0x8260458 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(91),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(48),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
@@ -137,7 +137,7 @@ static const struct ScriptCommand s_gs207_g1_s0_lives1_dlg0[] = { /* 0x8260458 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs207_g1_s0_lives2_dlg0[] = { /* 0x8260738 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(140),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
{ 0x60, 0x00, 0x0000, 0x000000c8, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -163,7 +163,7 @@ static const struct ScriptCommand s_gs207_g1_s0_lives2_dlg0[] = { /* 0x8260738 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs207_g2_s0_station_sref_script[] = { /* 0x82608a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(166),
|
||||
SELECT_MAP(MAP_SKY_TOWER_ENTRY),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_SWITCH(22),
|
||||
@@ -176,7 +176,7 @@ static const struct ScriptCommand s_gs207_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs207_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs207_g2_s0_station_sref_script }; /* 0x8260928 */
|
||||
|
||||
static const struct ScriptCommand s_gs207_g2_s0_lives0_dlg0[] = { /* 0x8260934 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(179),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0002, 0x0000006c, 0x00000000, NULL },
|
||||
@@ -205,7 +205,7 @@ static const struct ScriptCommand s_gs207_g2_s0_lives0_dlg0[] = { /* 0x8260934 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs207_g2_s0_lives1_dlg0[] = { /* 0x8260b8c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(208),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -219,7 +219,7 @@ static const struct ScriptCommand s_gs207_g2_s0_lives1_dlg0[] = { /* 0x8260b8c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs207_g2_s0_lives2_dlg0[] = { /* 0x8260c3c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(222),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(7),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
@@ -229,7 +229,7 @@ static const struct ScriptCommand s_gs207_g2_s0_lives2_dlg0[] = { /* 0x8260c3c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs207_g3_s0_station_sref_script[] = { /* 0x8260cac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(232),
|
||||
SELECT_MAP(MAP_SKY_TOWER_ENTRY),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_SWITCH(22),
|
||||
@@ -242,7 +242,7 @@ static const struct ScriptCommand s_gs207_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs207_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs207_g3_s0_station_sref_script }; /* 0x8260d2c */
|
||||
|
||||
static const struct ScriptCommand s_gs207_g3_s0_lives0_dlg0[] = { /* 0x8260d38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(245),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(48),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
@@ -285,7 +285,7 @@ static const struct ScriptCommand s_gs207_g3_s0_lives0_dlg0[] = { /* 0x8260d38 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs207_g3_s0_lives1_dlg0[] = { /* 0x826104c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(288),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(48),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
@@ -313,7 +313,7 @@ static const struct ScriptCommand s_gs207_g3_s0_lives1_dlg0[] = { /* 0x826104c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs207_g3_s0_lives2_dlg0[] = { /* 0x82611dc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(316),
|
||||
{ 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL },
|
||||
{ 0x60, 0x00, 0x0000, 0x000000c8, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s0_station_sref_script[] = { /* 0x826150c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(MAP_SKY_TOWER_MID),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_GT, 17, /* to label */ 0),
|
||||
@@ -43,7 +43,7 @@ static const struct ScriptCommand s_gs208_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs208_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs208_g0_s0_station_sref_script }; /* 0x8261728 */
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s0_evt0_sref_script[] = { /* 0x8261734 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(46),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -60,7 +60,7 @@ static const struct ScriptCommand s_gs208_g0_s0_evt0_sref_script[] = { /* 0x8261
|
||||
static const struct ScriptRef s_gs208_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs208_g0_s0_evt0_sref_script }; /* 0x8261810 */
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s0_evt1_sref_script[] = { /* 0x826181c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")),
|
||||
CHOICE(/* label */ 0, _("Yes.")),
|
||||
CHOICE(/* label */ 1, _("*No.")),
|
||||
@@ -79,52 +79,52 @@ static const struct ScriptCommand s_gs208_g0_s0_evt1_sref_script[] = { /* 0x8261
|
||||
static const struct ScriptRef s_gs208_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs208_g0_s0_evt1_sref_script }; /* 0x826191c */
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s0_obj0_dlg2[] = { /* 0x8261928 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
JUMP_SCRIPT(SAVE_POINT),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s1_lives0_dlg0[] = { /* 0x8261948 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s1_lives1_dlg0[] = { /* 0x8261988 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(94),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s3_lives0_dlg0[] = { /* 0x82619c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s3_lives1_dlg0[] = { /* 0x8261a08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s4_lives0_dlg0[] = { /* 0x8261a48 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs208_g0_s4_lives1_dlg0[] = { /* 0x8261a78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs208_g1_s0_station_sref_script[] = { /* 0x8261aa8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(127),
|
||||
SET_DUNGEON_RES(/* result */ 0, /* enter */ -1),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_ENTER, MAP_SKY_TOWER_MID),
|
||||
UPDATE_VARINT(CALC_SET, GROUND_GETOUT, MAP_SKY_TOWER_MID),
|
||||
@@ -142,7 +142,7 @@ static const struct ScriptCommand s_gs208_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs208_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs208_g1_s0_station_sref_script }; /* 0x8261b78 */
|
||||
|
||||
static const struct ScriptCommand s_gs208_g1_s0_lives0_dlg0[] = { /* 0x8261b84 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -168,7 +168,7 @@ static const struct ScriptCommand s_gs208_g1_s0_lives0_dlg0[] = { /* 0x8261b84 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs208_g1_s0_lives1_dlg0[] = { /* 0x8261dc0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(171),
|
||||
CALL_SCRIPT(INIT_SLEEP_FUNC),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs209_g0_s0_station_sref_script[] = { /* 0x82620a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(209),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs209_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs209_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs209_g0_s0_station_sref_script }; /* 0x8262114 */
|
||||
|
||||
static const struct ScriptCommand s_gs209_g1_s0_station_sref_script[] = { /* 0x8262120 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(209),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_SWITCH(26),
|
||||
@@ -30,7 +30,7 @@ static const struct ScriptCommand s_gs209_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs209_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs209_g1_s0_station_sref_script }; /* 0x82621b0 */
|
||||
|
||||
static const struct ScriptCommand s_gs209_g1_s0_eff0_script[] = { /* 0x82621bc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(33),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -41,7 +41,7 @@ static const struct ScriptCommand s_gs209_g1_s0_eff0_script[] = { /* 0x82621bc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g1_s0_lives0_dlg0[] = { /* 0x826223c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(44),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
WAIT(5),
|
||||
@@ -121,7 +121,7 @@ static const struct ScriptCommand s_gs209_g1_s0_lives0_dlg0[] = { /* 0x826223c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs209_g1_s0_lives1_dlg0[] = { /* 0x826282c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -138,7 +138,7 @@ static const struct ScriptCommand s_gs209_g1_s0_lives1_dlg0[] = { /* 0x826282c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g1_s0_lives2_dlg0[] = { /* 0x826290c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(141),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(10),
|
||||
CALL_SCRIPT(JUMP_SURPRISE_FUNC),
|
||||
@@ -151,7 +151,7 @@ static const struct ScriptCommand s_gs209_g1_s0_lives2_dlg0[] = { /* 0x826290c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g1_s0_lives3_dlg0[] = { /* 0x82629ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(154),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(10),
|
||||
CALL_SCRIPT(JUMP_SURPRISE_FUNC),
|
||||
@@ -164,7 +164,7 @@ static const struct ScriptCommand s_gs209_g1_s0_lives3_dlg0[] = { /* 0x82629ac *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g1_s0_lives4_dlg0[] = { /* 0x8262a4c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(167),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(9),
|
||||
AWAIT_CUE(7),
|
||||
@@ -226,7 +226,7 @@ static const struct ScriptCommand s_gs209_g1_s0_lives4_dlg0[] = { /* 0x8262a4c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g2_s0_station_sref_script[] = { /* 0x8262e10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(229),
|
||||
SELECT_MAP(209),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_SWITCH(26),
|
||||
@@ -241,7 +241,7 @@ static const struct ScriptCommand s_gs209_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs209_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs209_g2_s0_station_sref_script }; /* 0x8262eb0 */
|
||||
|
||||
static const struct ScriptCommand s_gs209_g2_s0_eff0_script[] = { /* 0x8262ebc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(244),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -253,7 +253,7 @@ static const struct ScriptCommand s_gs209_g2_s0_eff0_script[] = { /* 0x8262ebc *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g2_s0_lives0_dlg0[] = { /* 0x8262f4c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(256),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -328,28 +328,28 @@ static const struct ScriptCommand s_gs209_g2_s0_lives0_dlg0[] = { /* 0x8262f4c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs209_g2_s0_lives1_dlg0[] = { /* 0x8263660 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(331),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g2_s0_lives2_dlg0[] = { /* 0x82636a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(338),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(10),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g2_s0_lives3_dlg0[] = { /* 0x82636e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(345),
|
||||
SELECT_ANIMATION(2),
|
||||
AWAIT_CUE(10),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g2_s0_lives4_dlg0[] = { /* 0x8263720 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(352),
|
||||
{ 0x54, 0x00, 0x001b, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -372,7 +372,7 @@ static const struct ScriptCommand s_gs209_g2_s0_lives4_dlg0[] = { /* 0x8263720 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g2_s0_eff1_script[] = { /* 0x8263860 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(375),
|
||||
AWAIT_CUE(8),
|
||||
{ 0x56, 0x00, 0x0000, 0x0000006f, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -393,7 +393,7 @@ static const struct ScriptCommand s_gs209_g2_s0_eff1_script[] = { /* 0x8263860 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g3_s0_station_sref_script[] = { /* 0x8263980 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(396),
|
||||
SELECT_MAP(209),
|
||||
SELECT_ENTITIES(-1, -1),
|
||||
BGM_SWITCH(26),
|
||||
@@ -413,7 +413,7 @@ static const struct ScriptCommand s_gs209_g3_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs209_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs209_g3_s0_station_sref_script }; /* 0x8263a70 */
|
||||
|
||||
static const struct ScriptCommand s_gs209_g3_s0_lives0_dlg0[] = { /* 0x8263a7c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(416),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -428,33 +428,33 @@ static const struct ScriptCommand s_gs209_g3_s0_lives0_dlg0[] = { /* 0x8263a7c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs209_g3_s0_lives1_dlg0[] = { /* 0x8263b44 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(431),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g3_s0_lives2_dlg0[] = { /* 0x8263b84 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(438),
|
||||
SELECT_ANIMATION(2),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g3_s0_lives3_dlg0[] = { /* 0x8263bb4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(444),
|
||||
SELECT_ANIMATION(2),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g3_s0_lives4_dlg0[] = { /* 0x8263be4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(450),
|
||||
{ 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs209_g3_s0_eff1_script[] = { /* 0x8263c24 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(457),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000134, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs210_g0_s0_station_sref_script[] = { /* 0x8263ee4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(210),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs210_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs210_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs210_g0_s0_station_sref_script }; /* 0x8263f50 */
|
||||
|
||||
static const struct ScriptCommand s_gs210_g1_s0_station_sref_script[] = { /* 0x8263f5c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(210),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(10),
|
||||
@@ -29,7 +29,7 @@ static const struct ScriptCommand s_gs210_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs210_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs210_g1_s0_station_sref_script }; /* 0x8263fdc */
|
||||
|
||||
static const struct ScriptCommand s_gs210_g1_s0_lives0_dlg0[] = { /* 0x8263fe8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(32),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -39,7 +39,7 @@ static const struct ScriptCommand s_gs210_g1_s0_lives0_dlg0[] = { /* 0x8263fe8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs210_g1_s0_lives1_dlg0[] = { /* 0x8264058 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(42),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs211_g0_s0_station_sref_script[] = { /* 0x8264158 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(211),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs211_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs211_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs211_g0_s0_station_sref_script }; /* 0x82641c4 */
|
||||
|
||||
static const struct ScriptCommand s_gs211_g1_s0_station_sref_script[] = { /* 0x82641d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(211),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(10),
|
||||
@@ -29,7 +29,7 @@ static const struct ScriptCommand s_gs211_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs211_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs211_g1_s0_station_sref_script }; /* 0x8264250 */
|
||||
|
||||
static const struct ScriptCommand s_gs211_g1_s0_lives0_dlg0[] = { /* 0x826425c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(32),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -70,7 +70,7 @@ static const struct ScriptCommand s_gs211_g1_s0_lives0_dlg0[] = { /* 0x826425c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs211_g1_s0_lives1_dlg0[] = { /* 0x8264734 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(73),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs212_g0_s0_station_sref_script[] = { /* 0x8264834 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(212),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs212_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs212_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs212_g0_s0_station_sref_script }; /* 0x82648a0 */
|
||||
|
||||
static const struct ScriptCommand s_gs212_g1_s0_station_sref_script[] = { /* 0x82648ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(212),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -31,20 +31,20 @@ static const struct ScriptCommand s_gs212_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs212_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs212_g1_s0_station_sref_script }; /* 0x826494c */
|
||||
|
||||
static const struct ScriptCommand s_gs212_g1_s0_eff0_script[] = { /* 0x8264958 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
AWAIT_CUE(6),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000ab, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs212_g1_s0_obj0_dlg0[] = { /* 0x8264998 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(41),
|
||||
CAMERA_END_PAN,
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs212_g1_s0_lives0_dlg0[] = { /* 0x82649c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(47),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -141,7 +141,7 @@ static const struct ScriptCommand s_gs212_g1_s0_lives0_dlg0[] = { /* 0x82649c8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs212_g1_s0_lives1_dlg0[] = { /* 0x826518c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(144),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -177,13 +177,13 @@ static const struct ScriptCommand s_gs212_g1_s0_lives1_dlg0[] = { /* 0x826518c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs212_g1_s1_eff0_script[] = { /* 0x826539c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(180),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000ac, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs212_g1_s1_obj0_dlg0[] = { /* 0x82653cc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(186),
|
||||
{ 0x56, 0x00, 0x0000, 0x0000004c, 0x00000000, NULL },
|
||||
WAIT(10),
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs213_g0_s0_station_sref_script[] = { /* 0x8265640 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(213),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs213_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs213_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs213_g0_s0_station_sref_script }; /* 0x82656ac */
|
||||
|
||||
static const struct ScriptCommand s_gs213_g1_s0_station_sref_script[] = { /* 0x82656b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(213),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -31,20 +31,20 @@ static const struct ScriptCommand s_gs213_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs213_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs213_g1_s0_station_sref_script }; /* 0x8265758 */
|
||||
|
||||
static const struct ScriptCommand s_gs213_g1_s0_eff0_script[] = { /* 0x8265764 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
AWAIT_CUE(6),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000ac, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs213_g1_s0_obj0_dlg0[] = { /* 0x82657a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(41),
|
||||
CAMERA_END_PAN,
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs213_g1_s0_lives0_dlg0[] = { /* 0x82657d4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(47),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -143,7 +143,7 @@ static const struct ScriptCommand s_gs213_g1_s0_lives0_dlg0[] = { /* 0x82657d4 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs213_g1_s0_lives1_dlg0[] = { /* 0x826604c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(146),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -180,13 +180,13 @@ static const struct ScriptCommand s_gs213_g1_s0_lives1_dlg0[] = { /* 0x826604c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs213_g1_s1_eff0_script[] = { /* 0x826626c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(183),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000ad, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs213_g1_s1_obj0_dlg0[] = { /* 0x826629c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(189),
|
||||
FANFARE_PLAY2(662),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000b1, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs214_g0_s0_station_sref_script[] = { /* 0x82664d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(214),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs214_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs214_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs214_g0_s0_station_sref_script }; /* 0x826653c */
|
||||
|
||||
static const struct ScriptCommand s_gs214_g1_s0_station_sref_script[] = { /* 0x8266548 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(214),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -31,20 +31,20 @@ static const struct ScriptCommand s_gs214_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs214_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs214_g1_s0_station_sref_script }; /* 0x82665e8 */
|
||||
|
||||
static const struct ScriptCommand s_gs214_g1_s0_eff0_script[] = { /* 0x82665f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
CAMERA_END_PAN,
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs214_g1_s0_eff1_script[] = { /* 0x8266624 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(40),
|
||||
AWAIT_CUE(6),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000ad, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs214_g1_s0_lives0_dlg0[] = { /* 0x8266664 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(47),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -146,7 +146,7 @@ static const struct ScriptCommand s_gs214_g1_s0_lives0_dlg0[] = { /* 0x8266664 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs214_g1_s0_lives1_dlg0[] = { /* 0x8266f30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(149),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -183,7 +183,7 @@ static const struct ScriptCommand s_gs214_g1_s0_lives1_dlg0[] = { /* 0x8266f30 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs214_g1_s1_obj0_dlg0[] = { /* 0x8267150 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(186),
|
||||
FANFARE_PLAY2(631),
|
||||
{ 0x56, 0x00, 0x0000, 0x00000170, 0x00000000, NULL },
|
||||
WAIT(10),
|
||||
@@ -205,7 +205,7 @@ static const struct ScriptCommand s_gs214_g1_s1_obj0_dlg0[] = { /* 0x8267150 */
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs214_g1_s1_eff0_script[] = { /* 0x8267280 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(208),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000ae, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs215_g0_s0_station_sref_script[] = { /* 0x82673c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(215),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs215_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs215_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs215_g0_s0_station_sref_script }; /* 0x8267434 */
|
||||
|
||||
static const struct ScriptCommand s_gs215_g1_s0_station_sref_script[] = { /* 0x8267440 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(215),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(10),
|
||||
@@ -29,7 +29,7 @@ static const struct ScriptCommand s_gs215_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs215_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs215_g1_s0_station_sref_script }; /* 0x82674c0 */
|
||||
|
||||
static const struct ScriptCommand s_gs215_g1_s0_lives0_dlg0[] = { /* 0x82674cc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(32),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -70,7 +70,7 @@ static const struct ScriptCommand s_gs215_g1_s0_lives0_dlg0[] = { /* 0x82674cc *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs215_g1_s0_lives1_dlg0[] = { /* 0x82679c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(73),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs216_g0_s0_station_sref_script[] = { /* 0x8267ac8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(13),
|
||||
SELECT_MAP(216),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -19,7 +19,7 @@ static const struct ScriptCommand s_gs216_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs216_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs216_g0_s0_station_sref_script }; /* 0x8267b34 */
|
||||
|
||||
static const struct ScriptCommand s_gs216_g1_s0_station_sref_script[] = { /* 0x8267b40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(22),
|
||||
BGM_STOP,
|
||||
{ 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -45,7 +45,7 @@ static const struct ScriptRef s_gs216_g1_s0_station_sref = { 400, 7, NULL /* EVE
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(48),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -231,7 +231,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs216_g1_s0_lives1_dlg0[] = { /* 0x8268c90 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(234),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
@@ -318,7 +318,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives1_dlg0[] = { /* 0x8268c90 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs216_g1_s0_eff1_script[] = { /* 0x82691d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(321),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
{ 0x59, 0x00, 0x0004, -0x00000018, 0x00000000, NULL },
|
||||
@@ -349,7 +349,7 @@ static const struct ScriptCommand s_gs216_g1_s0_eff1_script[] = { /* 0x82691d0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs216_g1_s0_eff2_script[] = { /* 0x8269390 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(352),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
FANFARE_PLAY2(786),
|
||||
@@ -376,7 +376,7 @@ static const struct ScriptCommand s_gs216_g1_s0_eff2_script[] = { /* 0x8269390 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs216_g1_s0_eff3_script[] = { /* 0x8269510 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(379),
|
||||
{ 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL },
|
||||
AWAIT_CUE(8),
|
||||
WAIT(15),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs217_g0_s0_station_sref_script[] = { /* 0x8269754 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(217),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs217_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs217_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs217_g0_s0_station_sref_script }; /* 0x82697c0 */
|
||||
|
||||
static const struct ScriptCommand s_gs217_g1_s0_station_sref_script[] = { /* 0x82697cc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(217),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -31,7 +31,7 @@ static const struct ScriptCommand s_gs217_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs217_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs217_g1_s0_station_sref_script }; /* 0x826986c */
|
||||
|
||||
static const struct ScriptCommand s_gs217_g1_s0_lives0_dlg0[] = { /* 0x8269878 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -65,7 +65,7 @@ static const struct ScriptCommand s_gs217_g1_s0_lives0_dlg0[] = { /* 0x8269878 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs217_g1_s0_lives1_dlg0[] = { /* 0x8269b04 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(68),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs218_g0_s0_station_sref_script[] = { /* 0x8269d74 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(12),
|
||||
SELECT_MAP(218),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -18,7 +18,7 @@ static const struct ScriptCommand s_gs218_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs218_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs218_g0_s0_station_sref_script }; /* 0x8269de0 */
|
||||
|
||||
static const struct ScriptCommand s_gs218_g1_s0_station_sref_script[] = { /* 0x8269dec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
BGM_STOP,
|
||||
SELECT_MAP(218),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
@@ -31,7 +31,7 @@ static const struct ScriptCommand s_gs218_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs218_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs218_g1_s0_station_sref_script }; /* 0x8269e6c */
|
||||
|
||||
static const struct ScriptCommand s_gs218_g1_s0_eff1_script[] = { /* 0x8269e78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(34),
|
||||
AWAIT_CUE(8),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000a5, 0x00000000, NULL },
|
||||
WAIT(180),
|
||||
@@ -46,7 +46,7 @@ static const struct ScriptCommand s_gs218_g1_s0_eff1_script[] = { /* 0x8269e78 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs218_g1_s0_eff2_script[] = { /* 0x8269f38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(49),
|
||||
{ 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL },
|
||||
AWAIT_CUE(9),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL },
|
||||
@@ -64,7 +64,7 @@ static const struct ScriptCommand s_gs218_g1_s0_eff2_script[] = { /* 0x8269f38 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs218_g1_s0_eff3_script[] = { /* 0x826a028 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
{ 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL },
|
||||
AWAIT_CUE(10),
|
||||
{ 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL },
|
||||
@@ -81,7 +81,7 @@ static const struct ScriptCommand s_gs218_g1_s0_eff3_script[] = { /* 0x826a028 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs218_g1_s0_lives0_dlg0[] = { /* 0x826a108 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(84),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -122,7 +122,7 @@ static const struct ScriptCommand s_gs218_g1_s0_lives0_dlg0[] = { /* 0x826a108 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs218_g1_s0_lives1_dlg0[] = { /* 0x826a408 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(125),
|
||||
SELECT_ANIMATION(4),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs219_g0_s0_station_sref_script[] = { /* 0x826a5a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(219),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -20,7 +20,7 @@ static const struct ScriptCommand s_gs219_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs219_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs219_g0_s0_station_sref_script }; /* 0x826a610 */
|
||||
|
||||
static const struct ScriptCommand s_gs219_g1_s0_station_sref_script[] = { /* 0x826a61c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(23),
|
||||
SELECT_MAP(219),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -34,7 +34,7 @@ static const struct ScriptCommand s_gs219_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs219_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs219_g1_s0_station_sref_script }; /* 0x826a6ac */
|
||||
|
||||
static const struct ScriptCommand s_gs219_g1_s0_lives0_dlg0[] = { /* 0x826a6b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(37),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -56,7 +56,7 @@ static const struct ScriptCommand s_gs219_g1_s0_lives0_dlg0[] = { /* 0x826a6b8 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs219_g1_s0_lives1_dlg0[] = { /* 0x826a84c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(59),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -68,7 +68,7 @@ static const struct ScriptCommand s_gs219_g1_s0_lives1_dlg0[] = { /* 0x826a84c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs219_g1_s0_lives2_dlg0[] = { /* 0x826a8dc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs220_g0_s0_station_sref_script[] = { /* 0x826aa0c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(13),
|
||||
SELECT_MAP(220),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -19,7 +19,7 @@ static const struct ScriptCommand s_gs220_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs220_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs220_g0_s0_station_sref_script }; /* 0x826aa78 */
|
||||
|
||||
static const struct ScriptCommand s_gs220_g1_s0_station_sref_script[] = { /* 0x826aa84 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(22),
|
||||
SELECT_MAP(220),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -34,7 +34,7 @@ static const struct ScriptCommand s_gs220_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs220_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs220_g1_s0_station_sref_script }; /* 0x826ab24 */
|
||||
|
||||
static const struct ScriptCommand s_gs220_g1_s0_eff0_script[] = { /* 0x826ab30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(37),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -45,7 +45,7 @@ static const struct ScriptCommand s_gs220_g1_s0_eff0_script[] = { /* 0x826ab30 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(48),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0003, 0x00000052, 0x00000000, NULL },
|
||||
@@ -251,7 +251,7 @@ static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs220_g1_s0_lives1_dlg0[] = { /* 0x826be2c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(254),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x89, 0x70, 0x0100, 0x00000004, 0x00000000, NULL },
|
||||
@@ -310,7 +310,7 @@ static const struct ScriptCommand s_gs220_g1_s0_lives1_dlg0[] = { /* 0x826be2c *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs220_g2_s0_station_sref_script[] = { /* 0x826c1ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(313),
|
||||
SELECT_MAP(220),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
{ 0x27, 0x01, 0x0005, 0x0000005a, 0x00ffffff, NULL },
|
||||
@@ -323,14 +323,14 @@ static const struct ScriptCommand s_gs220_g2_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs220_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs220_g2_s0_station_sref_script }; /* 0x826c22c */
|
||||
|
||||
static const struct ScriptCommand s_gs220_g2_s0_eff0_script[] = { /* 0x826c238 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(326),
|
||||
CAMERA_INIT_PAN,
|
||||
AWAIT_CUE(4),
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(333),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0x2d, 0x09, 0x0004, 0x00000021, 0x00000000, NULL },
|
||||
@@ -484,7 +484,7 @@ static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs220_g2_s0_lives1_dlg0[] = { /* 0x826d210 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(487),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(7),
|
||||
@@ -525,7 +525,7 @@ static const struct ScriptCommand s_gs220_g2_s0_lives1_dlg0[] = { /* 0x826d210 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs220_g2_s0_eff1_script[] = { /* 0x826d470 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(528),
|
||||
AWAIT_CUE(11),
|
||||
{ 0x56, 0x00, 0x0000, 0x000001a4, 0x00000000, NULL },
|
||||
{ 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -534,14 +534,14 @@ static const struct ScriptCommand s_gs220_g2_s0_eff1_script[] = { /* 0x826d470 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs220_g2_s1_lives0_dlg0[] = { /* 0x826d4d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(537),
|
||||
SELECT_ANIMATION(22),
|
||||
{ 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs220_g2_s1_lives1_dlg0[] = { /* 0x826d510 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(544),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(10),
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs221_g0_s0_station_sref_script[] = { /* 0x826d734 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(10),
|
||||
SELECT_MAP(221),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -16,7 +16,7 @@ static const struct ScriptCommand s_gs221_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs221_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs221_g0_s0_station_sref_script }; /* 0x826d7a0 */
|
||||
|
||||
static const struct ScriptCommand s_gs221_g1_s0_station_sref_script[] = { /* 0x826d7ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(221),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(21),
|
||||
@@ -28,7 +28,7 @@ static const struct ScriptCommand s_gs221_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs221_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs221_g1_s0_station_sref_script }; /* 0x826d81c */
|
||||
|
||||
static const struct ScriptCommand s_gs221_g1_s0_eff0_script[] = { /* 0x826d828 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(31),
|
||||
CAMERA_END_PAN,
|
||||
WAIT(1),
|
||||
AWAIT_CUE(4),
|
||||
@@ -38,7 +38,7 @@ static const struct ScriptCommand s_gs221_g1_s0_eff0_script[] = { /* 0x826d828 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs221_g1_s0_lives0_dlg0[] = { /* 0x826d898 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(41),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
ALERT_CUE(7),
|
||||
@@ -56,7 +56,7 @@ static const struct ScriptCommand s_gs221_g1_s0_lives0_dlg0[] = { /* 0x826d898 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs221_g1_s0_lives1_dlg0[] = { /* 0x826d9d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(59),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x89, 0x58, 0x0100, 0x00000004, 0x00000000, NULL },
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs222_g0_s0_station_sref_script[] = { /* 0x826db18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(222),
|
||||
BGM_STOP,
|
||||
JUMP_SCRIPT(COMMON_ENTER),
|
||||
@@ -20,7 +20,7 @@ static const struct ScriptCommand s_gs222_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs222_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs222_g0_s0_station_sref_script }; /* 0x826db84 */
|
||||
|
||||
static const struct ScriptCommand s_gs222_g1_s0_station_sref_script[] = { /* 0x826db90 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(23),
|
||||
SELECT_MAP(222),
|
||||
SELECT_ENTITIES(-1, 0),
|
||||
BGM_SWITCH(114),
|
||||
@@ -34,7 +34,7 @@ static const struct ScriptCommand s_gs222_g1_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs222_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs222_g1_s0_station_sref_script }; /* 0x826dc20 */
|
||||
|
||||
static const struct ScriptCommand s_gs222_g1_s0_lives0_dlg0[] = { /* 0x826dc2c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(37),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
{ 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
@@ -56,7 +56,7 @@ static const struct ScriptCommand s_gs222_g1_s0_lives0_dlg0[] = { /* 0x826dc2c *
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs222_g1_s0_lives1_dlg0[] = { /* 0x826ddc0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(59),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
AWAIT_CUE(6),
|
||||
@@ -68,7 +68,7 @@ static const struct ScriptCommand s_gs222_g1_s0_lives1_dlg0[] = { /* 0x826ddc0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs222_g1_s0_lives2_dlg0[] = { /* 0x826de50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
{ 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
HALT,
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs105_g0_s0_station_sref_script[] = { /* 0x81ee228 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(105),
|
||||
SELECT_ENTITIES(1, 0),
|
||||
JUMP_LABEL(1),
|
||||
@@ -48,141 +48,141 @@ static const struct ScriptRef s_gs105_g0_s0_station_sref = { 404, 1, NULL /* ENT
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs105_g0_s1_lives0_dlg0[] = { /* 0x81ee400 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(51),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g0_s1_lives1_dlg0[] = { /* 0x81ee440 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(58),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g0_s3_lives0_dlg0[] = { /* 0x81ee480 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(65),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g0_s3_lives1_dlg0[] = { /* 0x81ee4c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g0_s4_lives0_dlg0[] = { /* 0x81ee500 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(79),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g0_s4_lives1_dlg0[] = { /* 0x81ee530 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(85),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives0_dlg1[] = { /* 0x81ee560 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(91),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives0_dlg2[] = { /* 0x81ee590 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(97),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives1_dlg1[] = { /* 0x81ee5b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives1_dlg2[] = { /* 0x81ee5e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives2_dlg1[] = { /* 0x81ee600 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives2_dlg2[] = { /* 0x81ee630 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(119),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives3_dlg1[] = { /* 0x81ee650 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives3_dlg2[] = { /* 0x81ee680 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(130),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives4_dlg1[] = { /* 0x81ee6a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives4_dlg2[] = { /* 0x81ee6d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(141),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives5_dlg1[] = { /* 0x81ee6f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(146),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives5_dlg2[] = { /* 0x81ee720 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(152),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives6_dlg1[] = { /* 0x81ee740 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(157),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives6_dlg2[] = { /* 0x81ee770 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(163),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives7_dlg1[] = { /* 0x81ee790 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(168),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives7_dlg2[] = { /* 0x81ee7c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(174),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives8_dlg1[] = { /* 0x81ee7e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(179),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs105_g1_s0_lives8_dlg2[] = { /* 0x81ee810 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(185),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs106_g0_s0_station_sref_script[] = { /* 0x81eeb10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(20),
|
||||
SELECT_MAP(106),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -59,152 +59,152 @@ static const struct ScriptCommand s_gs106_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs106_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs106_g0_s0_station_sref_script }; /* 0x81eed8c */
|
||||
|
||||
static const struct ScriptCommand s_gs106_g0_s1_lives0_dlg0[] = { /* 0x81eed98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(62),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g0_s1_lives1_dlg0[] = { /* 0x81eedd8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(69),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g0_s3_lives0_dlg0[] = { /* 0x81eee18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(76),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g0_s3_lives1_dlg0[] = { /* 0x81eee58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(83),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g0_s4_lives0_dlg0[] = { /* 0x81eee98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g0_s4_lives1_dlg0[] = { /* 0x81eeec8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives0_dlg1[] = { /* 0x81eeef8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives0_dlg2[] = { /* 0x81eef28 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives1_dlg1[] = { /* 0x81eef48 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives1_dlg2[] = { /* 0x81eef78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(119),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives2_dlg1[] = { /* 0x81eef98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives2_dlg2[] = { /* 0x81eefc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(130),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives3_dlg1[] = { /* 0x81eefe8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives3_dlg2[] = { /* 0x81ef018 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(141),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives4_dlg1[] = { /* 0x81ef038 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(146),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives4_dlg2[] = { /* 0x81ef068 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(152),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives5_dlg1[] = { /* 0x81ef088 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(157),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives5_dlg2[] = { /* 0x81ef0b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(163),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives6_dlg1[] = { /* 0x81ef0d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(168),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives6_dlg2[] = { /* 0x81ef108 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(174),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives7_dlg1[] = { /* 0x81ef128 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(179),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives7_dlg2[] = { /* 0x81ef158 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(185),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives8_dlg1[] = { /* 0x81ef178 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(190),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives8_dlg2[] = { /* 0x81ef1a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(196),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives9_dlg1[] = { /* 0x81ef1c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(201),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs106_g1_s0_lives9_dlg2[] = { /* 0x81ef1f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(207),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs107_g0_s0_station_sref_script[] = { /* 0x81ef538 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(107),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -53,86 +53,86 @@ static const struct ScriptCommand s_gs107_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs107_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs107_g0_s0_station_sref_script }; /* 0x81ef7b4 */
|
||||
|
||||
static const struct ScriptCommand s_gs107_g0_s1_lives0_dlg0[] = { /* 0x81ef7c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(56),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g0_s1_lives1_dlg0[] = { /* 0x81ef800 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g0_s3_lives0_dlg0[] = { /* 0x81ef840 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(70),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g0_s3_lives1_dlg0[] = { /* 0x81ef880 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(77),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g0_s4_lives0_dlg0[] = { /* 0x81ef8c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(84),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g0_s4_lives1_dlg0[] = { /* 0x81ef8f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g1_s0_lives0_dlg1[] = { /* 0x81ef920 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g1_s0_lives0_dlg2[] = { /* 0x81ef950 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g1_s0_lives1_dlg1[] = { /* 0x81ef970 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g1_s0_lives1_dlg2[] = { /* 0x81ef9a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g1_s0_lives2_dlg1[] = { /* 0x81ef9c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g1_s0_lives2_dlg2[] = { /* 0x81ef9f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g1_s0_lives3_dlg1[] = { /* 0x81efa10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs107_g1_s0_lives3_dlg2[] = { /* 0x81efa40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs108_g0_s0_station_sref_script[] = { /* 0x81efcc0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(22),
|
||||
SELECT_MAP(108),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -61,174 +61,174 @@ static const struct ScriptCommand s_gs108_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs108_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs108_g0_s0_station_sref_script }; /* 0x81eff3c */
|
||||
|
||||
static const struct ScriptCommand s_gs108_g0_s1_lives0_dlg0[] = { /* 0x81eff48 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(64),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g0_s1_lives1_dlg0[] = { /* 0x81eff88 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g0_s3_lives0_dlg0[] = { /* 0x81effc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g0_s3_lives1_dlg0[] = { /* 0x81f0008 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(85),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g0_s4_lives0_dlg0[] = { /* 0x81f0048 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(92),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g0_s4_lives1_dlg0[] = { /* 0x81f0078 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives0_dlg1[] = { /* 0x81f00a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives0_dlg2[] = { /* 0x81f00d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives1_dlg1[] = { /* 0x81f00f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives1_dlg2[] = { /* 0x81f0128 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives2_dlg1[] = { /* 0x81f0148 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives2_dlg2[] = { /* 0x81f0178 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(132),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives3_dlg1[] = { /* 0x81f0198 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives3_dlg2[] = { /* 0x81f01c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(143),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives4_dlg1[] = { /* 0x81f01e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(148),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives4_dlg2[] = { /* 0x81f0218 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(154),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives5_dlg1[] = { /* 0x81f0238 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(159),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives5_dlg2[] = { /* 0x81f0268 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(165),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives6_dlg1[] = { /* 0x81f0288 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(170),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives6_dlg2[] = { /* 0x81f02b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(176),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives7_dlg1[] = { /* 0x81f02d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(181),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives7_dlg2[] = { /* 0x81f0308 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(187),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives8_dlg1[] = { /* 0x81f0328 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(192),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives8_dlg2[] = { /* 0x81f0358 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(198),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives9_dlg1[] = { /* 0x81f0378 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(203),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives9_dlg2[] = { /* 0x81f03a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(209),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives10_dlg1[] = { /* 0x81f03c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(214),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives10_dlg2[] = { /* 0x81f03f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(220),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives11_dlg1[] = { /* 0x81f0418 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(225),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs108_g1_s0_lives11_dlg2[] = { /* 0x81f0448 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(231),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs109_g0_s0_station_sref_script[] = { /* 0x81f07c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
SELECT_MAP(109),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -50,53 +50,53 @@ static const struct ScriptCommand s_gs109_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs109_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs109_g0_s0_station_sref_script }; /* 0x81f0a44 */
|
||||
|
||||
static const struct ScriptCommand s_gs109_g0_s1_lives0_dlg0[] = { /* 0x81f0a50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(53),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs109_g0_s1_lives1_dlg0[] = { /* 0x81f0a90 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(60),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs109_g0_s3_lives0_dlg0[] = { /* 0x81f0ad0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs109_g0_s3_lives1_dlg0[] = { /* 0x81f0b10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(74),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs109_g0_s4_lives0_dlg0[] = { /* 0x81f0b50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(81),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs109_g0_s4_lives1_dlg0[] = { /* 0x81f0b80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs109_g1_s0_lives0_dlg1[] = { /* 0x81f0bb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs109_g1_s0_lives0_dlg2[] = { /* 0x81f0be0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(99),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs110_g0_s0_station_sref_script[] = { /* 0x81f0e00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
SELECT_MAP(110),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -50,53 +50,53 @@ static const struct ScriptCommand s_gs110_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs110_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs110_g0_s0_station_sref_script }; /* 0x81f107c */
|
||||
|
||||
static const struct ScriptCommand s_gs110_g0_s1_lives0_dlg0[] = { /* 0x81f1088 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(53),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs110_g0_s1_lives1_dlg0[] = { /* 0x81f10c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(60),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs110_g0_s3_lives0_dlg0[] = { /* 0x81f1108 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs110_g0_s3_lives1_dlg0[] = { /* 0x81f1148 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(74),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs110_g0_s4_lives0_dlg0[] = { /* 0x81f1188 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(81),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs110_g0_s4_lives1_dlg0[] = { /* 0x81f11b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs110_g1_s0_lives0_dlg1[] = { /* 0x81f11e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs110_g1_s0_lives0_dlg2[] = { /* 0x81f1218 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(99),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs111_g0_s0_station_sref_script[] = { /* 0x81f1438 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(16),
|
||||
SELECT_MAP(111),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -55,108 +55,108 @@ static const struct ScriptCommand s_gs111_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs111_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs111_g0_s0_station_sref_script }; /* 0x81f16b4 */
|
||||
|
||||
static const struct ScriptCommand s_gs111_g0_s1_lives0_dlg0[] = { /* 0x81f16c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(58),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g0_s1_lives1_dlg0[] = { /* 0x81f1700 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(65),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g0_s3_lives0_dlg0[] = { /* 0x81f1740 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g0_s3_lives1_dlg0[] = { /* 0x81f1780 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(79),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g0_s4_lives0_dlg0[] = { /* 0x81f17c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(86),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g0_s4_lives1_dlg0[] = { /* 0x81f17f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(92),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives0_dlg1[] = { /* 0x81f1820 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives0_dlg2[] = { /* 0x81f1850 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives1_dlg1[] = { /* 0x81f1870 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(109),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives1_dlg2[] = { /* 0x81f18a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives2_dlg1[] = { /* 0x81f18c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(120),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives2_dlg2[] = { /* 0x81f18f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives3_dlg1[] = { /* 0x81f1910 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives3_dlg2[] = { /* 0x81f1940 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives4_dlg1[] = { /* 0x81f1960 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(142),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives4_dlg2[] = { /* 0x81f1990 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(148),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives5_dlg1[] = { /* 0x81f19b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(153),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs111_g1_s0_lives5_dlg2[] = { /* 0x81f19e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(159),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs112_g0_s0_station_sref_script[] = { /* 0x81f1ca0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(22),
|
||||
SELECT_MAP(112),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -61,174 +61,174 @@ static const struct ScriptCommand s_gs112_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs112_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs112_g0_s0_station_sref_script }; /* 0x81f1f1c */
|
||||
|
||||
static const struct ScriptCommand s_gs112_g0_s1_lives0_dlg0[] = { /* 0x81f1f28 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(64),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g0_s1_lives1_dlg0[] = { /* 0x81f1f68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g0_s3_lives0_dlg0[] = { /* 0x81f1fa8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g0_s3_lives1_dlg0[] = { /* 0x81f1fe8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(85),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g0_s4_lives0_dlg0[] = { /* 0x81f2028 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(92),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g0_s4_lives1_dlg0[] = { /* 0x81f2058 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives0_dlg1[] = { /* 0x81f2088 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives0_dlg2[] = { /* 0x81f20b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives1_dlg1[] = { /* 0x81f20d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives1_dlg2[] = { /* 0x81f2108 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives2_dlg1[] = { /* 0x81f2128 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives2_dlg2[] = { /* 0x81f2158 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(132),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives3_dlg1[] = { /* 0x81f2178 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives3_dlg2[] = { /* 0x81f21a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(143),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives4_dlg1[] = { /* 0x81f21c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(148),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives4_dlg2[] = { /* 0x81f21f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(154),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives5_dlg1[] = { /* 0x81f2218 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(159),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives5_dlg2[] = { /* 0x81f2248 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(165),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives6_dlg1[] = { /* 0x81f2268 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(170),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives6_dlg2[] = { /* 0x81f2298 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(176),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives7_dlg1[] = { /* 0x81f22b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(181),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives7_dlg2[] = { /* 0x81f22e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(187),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives8_dlg1[] = { /* 0x81f2308 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(192),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives8_dlg2[] = { /* 0x81f2338 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(198),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives9_dlg1[] = { /* 0x81f2358 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(203),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives9_dlg2[] = { /* 0x81f2388 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(209),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives10_dlg1[] = { /* 0x81f23a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(214),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives10_dlg2[] = { /* 0x81f23d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(220),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives11_dlg1[] = { /* 0x81f23f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(225),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs112_g1_s0_lives11_dlg2[] = { /* 0x81f2428 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(231),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs113_g0_s0_station_sref_script[] = { /* 0x81f2784 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(113),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -58,141 +58,141 @@ static const struct ScriptCommand s_gs113_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs113_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs113_g0_s0_station_sref_script }; /* 0x81f2a00 */
|
||||
|
||||
static const struct ScriptCommand s_gs113_g0_s1_lives0_dlg0[] = { /* 0x81f2a0c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(61),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g0_s1_lives1_dlg0[] = { /* 0x81f2a4c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(68),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g0_s3_lives0_dlg0[] = { /* 0x81f2a8c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(75),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g0_s3_lives1_dlg0[] = { /* 0x81f2acc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g0_s4_lives0_dlg0[] = { /* 0x81f2b0c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g0_s4_lives1_dlg0[] = { /* 0x81f2b3c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(95),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives0_dlg1[] = { /* 0x81f2b6c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives0_dlg2[] = { /* 0x81f2b9c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives1_dlg1[] = { /* 0x81f2bbc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives1_dlg2[] = { /* 0x81f2bec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives2_dlg1[] = { /* 0x81f2c0c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(123),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives2_dlg2[] = { /* 0x81f2c3c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives3_dlg1[] = { /* 0x81f2c5c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(134),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives3_dlg2[] = { /* 0x81f2c8c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(140),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives4_dlg1[] = { /* 0x81f2cac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives4_dlg2[] = { /* 0x81f2cdc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(151),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives5_dlg1[] = { /* 0x81f2cfc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(156),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives5_dlg2[] = { /* 0x81f2d2c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(162),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives6_dlg1[] = { /* 0x81f2d4c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(167),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives6_dlg2[] = { /* 0x81f2d7c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(173),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives7_dlg1[] = { /* 0x81f2d9c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(178),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives7_dlg2[] = { /* 0x81f2dcc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(184),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives8_dlg1[] = { /* 0x81f2dec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(189),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs113_g1_s0_lives8_dlg2[] = { /* 0x81f2e1c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(195),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs114_g0_s0_station_sref_script[] = { /* 0x81f3124 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(16),
|
||||
SELECT_MAP(114),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -55,108 +55,108 @@ static const struct ScriptCommand s_gs114_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs114_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs114_g0_s0_station_sref_script }; /* 0x81f33a0 */
|
||||
|
||||
static const struct ScriptCommand s_gs114_g0_s1_lives0_dlg0[] = { /* 0x81f33ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(58),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g0_s1_lives1_dlg0[] = { /* 0x81f33ec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(65),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g0_s3_lives0_dlg0[] = { /* 0x81f342c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g0_s3_lives1_dlg0[] = { /* 0x81f346c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(79),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g0_s4_lives0_dlg0[] = { /* 0x81f34ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(86),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g0_s4_lives1_dlg0[] = { /* 0x81f34dc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(92),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives0_dlg1[] = { /* 0x81f350c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives0_dlg2[] = { /* 0x81f353c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives1_dlg1[] = { /* 0x81f355c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(109),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives1_dlg2[] = { /* 0x81f358c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives2_dlg1[] = { /* 0x81f35ac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(120),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives2_dlg2[] = { /* 0x81f35dc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives3_dlg1[] = { /* 0x81f35fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives3_dlg2[] = { /* 0x81f362c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives4_dlg1[] = { /* 0x81f364c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(142),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives4_dlg2[] = { /* 0x81f367c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(148),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives5_dlg1[] = { /* 0x81f369c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(153),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs114_g1_s0_lives5_dlg2[] = { /* 0x81f36cc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(159),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs115_g0_s0_station_sref_script[] = { /* 0x81f3968 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
SELECT_MAP(115),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -50,53 +50,53 @@ static const struct ScriptCommand s_gs115_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs115_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs115_g0_s0_station_sref_script }; /* 0x81f3be4 */
|
||||
|
||||
static const struct ScriptCommand s_gs115_g0_s1_lives0_dlg0[] = { /* 0x81f3bf0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(53),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs115_g0_s1_lives1_dlg0[] = { /* 0x81f3c30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(60),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs115_g0_s3_lives0_dlg0[] = { /* 0x81f3c70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs115_g0_s3_lives1_dlg0[] = { /* 0x81f3cb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(74),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs115_g0_s4_lives0_dlg0[] = { /* 0x81f3cf0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(81),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs115_g0_s4_lives1_dlg0[] = { /* 0x81f3d20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs115_g1_s0_lives0_dlg1[] = { /* 0x81f3d50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs115_g1_s0_lives0_dlg2[] = { /* 0x81f3d80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(99),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs116_g0_s0_station_sref_script[] = { /* 0x81f3fa0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(23),
|
||||
SELECT_MAP(116),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -62,185 +62,185 @@ static const struct ScriptCommand s_gs116_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs116_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs116_g0_s0_station_sref_script }; /* 0x81f421c */
|
||||
|
||||
static const struct ScriptCommand s_gs116_g0_s1_lives0_dlg0[] = { /* 0x81f4228 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(65),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g0_s1_lives1_dlg0[] = { /* 0x81f4268 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g0_s3_lives0_dlg0[] = { /* 0x81f42a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(79),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g0_s3_lives1_dlg0[] = { /* 0x81f42e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(86),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g0_s4_lives0_dlg0[] = { /* 0x81f4328 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g0_s4_lives1_dlg0[] = { /* 0x81f4358 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(99),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives0_dlg1[] = { /* 0x81f4388 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(105),
|
||||
{ 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives0_dlg2[] = { /* 0x81f43b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(111),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives1_dlg1[] = { /* 0x81f43d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(116),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives1_dlg2[] = { /* 0x81f4408 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(122),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives2_dlg1[] = { /* 0x81f4428 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(127),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives2_dlg2[] = { /* 0x81f4458 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(133),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives3_dlg1[] = { /* 0x81f4478 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(138),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives3_dlg2[] = { /* 0x81f44a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(144),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives4_dlg1[] = { /* 0x81f44c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(149),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives4_dlg2[] = { /* 0x81f44f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(155),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives5_dlg1[] = { /* 0x81f4518 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(160),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives5_dlg2[] = { /* 0x81f4548 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(166),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives6_dlg1[] = { /* 0x81f4568 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(171),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives6_dlg2[] = { /* 0x81f4598 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(177),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives7_dlg1[] = { /* 0x81f45b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(182),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives7_dlg2[] = { /* 0x81f45e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(188),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives8_dlg1[] = { /* 0x81f4608 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(193),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives8_dlg2[] = { /* 0x81f4638 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(199),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives9_dlg1[] = { /* 0x81f4658 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(204),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives9_dlg2[] = { /* 0x81f4688 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(210),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives10_dlg1[] = { /* 0x81f46a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(215),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives10_dlg2[] = { /* 0x81f46d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(221),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives11_dlg1[] = { /* 0x81f46f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(226),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives11_dlg2[] = { /* 0x81f4728 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(232),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives12_dlg1[] = { /* 0x81f4748 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(237),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs116_g1_s0_lives12_dlg2[] = { /* 0x81f4778 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(243),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs117_g0_s0_station_sref_script[] = { /* 0x81f4b18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(22),
|
||||
SELECT_MAP(117),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -61,174 +61,174 @@ static const struct ScriptCommand s_gs117_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs117_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs117_g0_s0_station_sref_script }; /* 0x81f4d94 */
|
||||
|
||||
static const struct ScriptCommand s_gs117_g0_s1_lives0_dlg0[] = { /* 0x81f4da0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(64),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g0_s1_lives1_dlg0[] = { /* 0x81f4de0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g0_s3_lives0_dlg0[] = { /* 0x81f4e20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g0_s3_lives1_dlg0[] = { /* 0x81f4e60 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(85),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g0_s4_lives0_dlg0[] = { /* 0x81f4ea0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(92),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g0_s4_lives1_dlg0[] = { /* 0x81f4ed0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives0_dlg1[] = { /* 0x81f4f00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives0_dlg2[] = { /* 0x81f4f30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives1_dlg1[] = { /* 0x81f4f50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives1_dlg2[] = { /* 0x81f4f80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives2_dlg1[] = { /* 0x81f4fa0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives2_dlg2[] = { /* 0x81f4fd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(132),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives3_dlg1[] = { /* 0x81f4ff0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives3_dlg2[] = { /* 0x81f5020 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(143),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives4_dlg1[] = { /* 0x81f5040 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(148),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives4_dlg2[] = { /* 0x81f5070 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(154),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives5_dlg1[] = { /* 0x81f5090 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(159),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives5_dlg2[] = { /* 0x81f50c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(165),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives6_dlg1[] = { /* 0x81f50e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(170),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives6_dlg2[] = { /* 0x81f5110 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(176),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives7_dlg1[] = { /* 0x81f5130 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(181),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives7_dlg2[] = { /* 0x81f5160 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(187),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives8_dlg1[] = { /* 0x81f5180 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(192),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives8_dlg2[] = { /* 0x81f51b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(198),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives9_dlg1[] = { /* 0x81f51d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(203),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives9_dlg2[] = { /* 0x81f5200 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(209),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives10_dlg1[] = { /* 0x81f5220 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(214),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives10_dlg2[] = { /* 0x81f5250 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(220),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives11_dlg1[] = { /* 0x81f5270 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(225),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs117_g1_s0_lives11_dlg2[] = { /* 0x81f52a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(231),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs118_g0_s0_station_sref_script[] = { /* 0x81f5620 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(23),
|
||||
SELECT_MAP(118),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -62,185 +62,185 @@ static const struct ScriptCommand s_gs118_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs118_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs118_g0_s0_station_sref_script }; /* 0x81f589c */
|
||||
|
||||
static const struct ScriptCommand s_gs118_g0_s1_lives0_dlg0[] = { /* 0x81f58a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(65),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g0_s1_lives1_dlg0[] = { /* 0x81f58e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g0_s3_lives0_dlg0[] = { /* 0x81f5928 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(79),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g0_s3_lives1_dlg0[] = { /* 0x81f5968 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(86),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g0_s4_lives0_dlg0[] = { /* 0x81f59a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g0_s4_lives1_dlg0[] = { /* 0x81f59d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(99),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives0_dlg1[] = { /* 0x81f5a08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(105),
|
||||
{ 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives0_dlg2[] = { /* 0x81f5a38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(111),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives1_dlg1[] = { /* 0x81f5a58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(116),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives1_dlg2[] = { /* 0x81f5a88 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(122),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives2_dlg1[] = { /* 0x81f5aa8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(127),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives2_dlg2[] = { /* 0x81f5ad8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(133),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives3_dlg1[] = { /* 0x81f5af8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(138),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives3_dlg2[] = { /* 0x81f5b28 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(144),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives4_dlg1[] = { /* 0x81f5b48 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(149),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives4_dlg2[] = { /* 0x81f5b78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(155),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives5_dlg1[] = { /* 0x81f5b98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(160),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives5_dlg2[] = { /* 0x81f5bc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(166),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives6_dlg1[] = { /* 0x81f5be8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(171),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives6_dlg2[] = { /* 0x81f5c18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(177),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives7_dlg1[] = { /* 0x81f5c38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(182),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives7_dlg2[] = { /* 0x81f5c68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(188),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives8_dlg1[] = { /* 0x81f5c88 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(193),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives8_dlg2[] = { /* 0x81f5cb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(199),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives9_dlg1[] = { /* 0x81f5cd8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(204),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives9_dlg2[] = { /* 0x81f5d08 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(210),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives10_dlg1[] = { /* 0x81f5d28 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(215),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives10_dlg2[] = { /* 0x81f5d58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(221),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives11_dlg1[] = { /* 0x81f5d78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(226),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives11_dlg2[] = { /* 0x81f5da8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(232),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives12_dlg1[] = { /* 0x81f5dc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(237),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs118_g1_s0_lives12_dlg2[] = { /* 0x81f5df8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(243),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs119_g0_s0_station_sref_script[] = { /* 0x81f6198 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(25),
|
||||
SELECT_MAP(119),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -64,207 +64,207 @@ static const struct ScriptCommand s_gs119_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs119_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs119_g0_s0_station_sref_script }; /* 0x81f6414 */
|
||||
|
||||
static const struct ScriptCommand s_gs119_g0_s1_lives0_dlg0[] = { /* 0x81f6420 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g0_s1_lives1_dlg0[] = { /* 0x81f6460 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(74),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g0_s3_lives0_dlg0[] = { /* 0x81f64a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(81),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g0_s3_lives1_dlg0[] = { /* 0x81f64e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(88),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g0_s4_lives0_dlg0[] = { /* 0x81f6520 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(95),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g0_s4_lives1_dlg0[] = { /* 0x81f6550 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives0_dlg1[] = { /* 0x81f6580 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
{ 0x51, 0x00, 0x000e, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives0_dlg2[] = { /* 0x81f65b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives1_dlg1[] = { /* 0x81f65d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
{ 0x51, 0x00, 0x000d, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives1_dlg2[] = { /* 0x81f6600 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives2_dlg1[] = { /* 0x81f6620 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
{ 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives2_dlg2[] = { /* 0x81f6650 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives3_dlg1[] = { /* 0x81f6670 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(140),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives3_dlg2[] = { /* 0x81f66a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(146),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives4_dlg1[] = { /* 0x81f66c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(151),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives4_dlg2[] = { /* 0x81f66f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(157),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives5_dlg1[] = { /* 0x81f6710 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(162),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives5_dlg2[] = { /* 0x81f6740 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(168),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives6_dlg1[] = { /* 0x81f6760 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(173),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives6_dlg2[] = { /* 0x81f6790 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(179),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives7_dlg1[] = { /* 0x81f67b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(184),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives7_dlg2[] = { /* 0x81f67e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(190),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives8_dlg1[] = { /* 0x81f6800 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(195),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives8_dlg2[] = { /* 0x81f6830 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(201),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives9_dlg1[] = { /* 0x81f6850 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(206),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives9_dlg2[] = { /* 0x81f6880 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(212),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives10_dlg1[] = { /* 0x81f68a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(217),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives10_dlg2[] = { /* 0x81f68d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(223),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives11_dlg1[] = { /* 0x81f68f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(228),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives11_dlg2[] = { /* 0x81f6920 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(234),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives12_dlg1[] = { /* 0x81f6940 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(239),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives12_dlg2[] = { /* 0x81f6970 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(245),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives13_dlg1[] = { /* 0x81f6990 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(250),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives13_dlg2[] = { /* 0x81f69c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(256),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives14_dlg1[] = { /* 0x81f69e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(261),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs119_g1_s0_lives14_dlg2[] = { /* 0x81f6a10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(267),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs120_g0_s0_station_sref_script[] = { /* 0x81f6df0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(20),
|
||||
SELECT_MAP(120),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -59,152 +59,152 @@ static const struct ScriptCommand s_gs120_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs120_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs120_g0_s0_station_sref_script }; /* 0x81f706c */
|
||||
|
||||
static const struct ScriptCommand s_gs120_g0_s1_lives0_dlg0[] = { /* 0x81f7078 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(62),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g0_s1_lives1_dlg0[] = { /* 0x81f70b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(69),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g0_s3_lives0_dlg0[] = { /* 0x81f70f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(76),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g0_s3_lives1_dlg0[] = { /* 0x81f7138 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(83),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g0_s4_lives0_dlg0[] = { /* 0x81f7178 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g0_s4_lives1_dlg0[] = { /* 0x81f71a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives0_dlg1[] = { /* 0x81f71d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives0_dlg2[] = { /* 0x81f7208 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives1_dlg1[] = { /* 0x81f7228 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives1_dlg2[] = { /* 0x81f7258 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(119),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives2_dlg1[] = { /* 0x81f7278 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives2_dlg2[] = { /* 0x81f72a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(130),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives3_dlg1[] = { /* 0x81f72c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives3_dlg2[] = { /* 0x81f72f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(141),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives4_dlg1[] = { /* 0x81f7318 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(146),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives4_dlg2[] = { /* 0x81f7348 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(152),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives5_dlg1[] = { /* 0x81f7368 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(157),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives5_dlg2[] = { /* 0x81f7398 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(163),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives6_dlg1[] = { /* 0x81f73b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(168),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives6_dlg2[] = { /* 0x81f73e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(174),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives7_dlg1[] = { /* 0x81f7408 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(179),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives7_dlg2[] = { /* 0x81f7438 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(185),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives8_dlg1[] = { /* 0x81f7458 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(190),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives8_dlg2[] = { /* 0x81f7488 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(196),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives9_dlg1[] = { /* 0x81f74a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(201),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs120_g1_s0_lives9_dlg2[] = { /* 0x81f74d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(207),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs121_g0_s0_station_sref_script[] = { /* 0x81f7818 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(13),
|
||||
SELECT_MAP(121),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -52,75 +52,75 @@ static const struct ScriptCommand s_gs121_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs121_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs121_g0_s0_station_sref_script }; /* 0x81f7a94 */
|
||||
|
||||
static const struct ScriptCommand s_gs121_g0_s1_lives0_dlg0[] = { /* 0x81f7aa0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(55),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g0_s1_lives1_dlg0[] = { /* 0x81f7ae0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(62),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g0_s3_lives0_dlg0[] = { /* 0x81f7b20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(69),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g0_s3_lives1_dlg0[] = { /* 0x81f7b60 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(76),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g0_s4_lives0_dlg0[] = { /* 0x81f7ba0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(83),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g0_s4_lives1_dlg0[] = { /* 0x81f7bd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g1_s0_lives0_dlg1[] = { /* 0x81f7c00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(95),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g1_s0_lives0_dlg2[] = { /* 0x81f7c30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g1_s0_lives1_dlg1[] = { /* 0x81f7c50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(106),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g1_s0_lives1_dlg2[] = { /* 0x81f7c80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g1_s0_lives2_dlg1[] = { /* 0x81f7ca0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(117),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs121_g1_s0_lives2_dlg2[] = { /* 0x81f7cd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(123),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs122_g0_s0_station_sref_script[] = { /* 0x81f7f30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(24),
|
||||
SELECT_MAP(122),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -63,196 +63,196 @@ static const struct ScriptCommand s_gs122_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs122_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs122_g0_s0_station_sref_script }; /* 0x81f81ac */
|
||||
|
||||
static const struct ScriptCommand s_gs122_g0_s1_lives0_dlg0[] = { /* 0x81f81b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(66),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g0_s1_lives1_dlg0[] = { /* 0x81f81f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(73),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g0_s3_lives0_dlg0[] = { /* 0x81f8238 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(80),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g0_s3_lives1_dlg0[] = { /* 0x81f8278 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g0_s4_lives0_dlg0[] = { /* 0x81f82b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(94),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g0_s4_lives1_dlg0[] = { /* 0x81f82e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(100),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives0_dlg1[] = { /* 0x81f8318 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(106),
|
||||
{ 0x51, 0x00, 0x000d, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives0_dlg2[] = { /* 0x81f8348 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives1_dlg1[] = { /* 0x81f8368 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(117),
|
||||
{ 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives1_dlg2[] = { /* 0x81f8398 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(123),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives2_dlg1[] = { /* 0x81f83b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(128),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives2_dlg2[] = { /* 0x81f83e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(134),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives3_dlg1[] = { /* 0x81f8408 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(139),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives3_dlg2[] = { /* 0x81f8438 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives4_dlg1[] = { /* 0x81f8458 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(150),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives4_dlg2[] = { /* 0x81f8488 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(156),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives5_dlg1[] = { /* 0x81f84a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(161),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives5_dlg2[] = { /* 0x81f84d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(167),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives6_dlg1[] = { /* 0x81f84f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(172),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives6_dlg2[] = { /* 0x81f8528 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(178),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives7_dlg1[] = { /* 0x81f8548 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(183),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives7_dlg2[] = { /* 0x81f8578 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(189),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives8_dlg1[] = { /* 0x81f8598 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(194),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives8_dlg2[] = { /* 0x81f85c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(200),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives9_dlg1[] = { /* 0x81f85e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(205),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives9_dlg2[] = { /* 0x81f8618 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(211),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives10_dlg1[] = { /* 0x81f8638 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(216),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives10_dlg2[] = { /* 0x81f8668 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(222),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives11_dlg1[] = { /* 0x81f8688 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(227),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives11_dlg2[] = { /* 0x81f86b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(233),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives12_dlg1[] = { /* 0x81f86d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(238),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives12_dlg2[] = { /* 0x81f8708 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(244),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives13_dlg1[] = { /* 0x81f8728 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(249),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs122_g1_s0_lives13_dlg2[] = { /* 0x81f8758 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(255),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs123_g0_s0_station_sref_script[] = { /* 0x81f8b18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(22),
|
||||
SELECT_MAP(123),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -61,174 +61,174 @@ static const struct ScriptCommand s_gs123_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs123_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs123_g0_s0_station_sref_script }; /* 0x81f8d94 */
|
||||
|
||||
static const struct ScriptCommand s_gs123_g0_s1_lives0_dlg0[] = { /* 0x81f8da0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(64),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g0_s1_lives1_dlg0[] = { /* 0x81f8de0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g0_s3_lives0_dlg0[] = { /* 0x81f8e20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g0_s3_lives1_dlg0[] = { /* 0x81f8e60 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(85),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g0_s4_lives0_dlg0[] = { /* 0x81f8ea0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(92),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g0_s4_lives1_dlg0[] = { /* 0x81f8ed0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives0_dlg1[] = { /* 0x81f8f00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives0_dlg2[] = { /* 0x81f8f30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives1_dlg1[] = { /* 0x81f8f50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives1_dlg2[] = { /* 0x81f8f80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives2_dlg1[] = { /* 0x81f8fa0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives2_dlg2[] = { /* 0x81f8fd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(132),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives3_dlg1[] = { /* 0x81f8ff0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives3_dlg2[] = { /* 0x81f9020 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(143),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives4_dlg1[] = { /* 0x81f9040 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(148),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives4_dlg2[] = { /* 0x81f9070 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(154),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives5_dlg1[] = { /* 0x81f9090 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(159),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives5_dlg2[] = { /* 0x81f90c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(165),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives6_dlg1[] = { /* 0x81f90e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(170),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives6_dlg2[] = { /* 0x81f9110 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(176),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives7_dlg1[] = { /* 0x81f9130 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(181),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives7_dlg2[] = { /* 0x81f9160 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(187),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives8_dlg1[] = { /* 0x81f9180 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(192),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives8_dlg2[] = { /* 0x81f91b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(198),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives9_dlg1[] = { /* 0x81f91d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(203),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives9_dlg2[] = { /* 0x81f9200 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(209),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives10_dlg1[] = { /* 0x81f9220 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(214),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives10_dlg2[] = { /* 0x81f9250 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(220),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives11_dlg1[] = { /* 0x81f9270 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(225),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs123_g1_s0_lives11_dlg2[] = { /* 0x81f92a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(231),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs124_g0_s0_station_sref_script[] = { /* 0x81f9608 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(124),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -58,141 +58,141 @@ static const struct ScriptCommand s_gs124_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs124_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs124_g0_s0_station_sref_script }; /* 0x81f9884 */
|
||||
|
||||
static const struct ScriptCommand s_gs124_g0_s1_lives0_dlg0[] = { /* 0x81f9890 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(61),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g0_s1_lives1_dlg0[] = { /* 0x81f98d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(68),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g0_s3_lives0_dlg0[] = { /* 0x81f9910 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(75),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g0_s3_lives1_dlg0[] = { /* 0x81f9950 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g0_s4_lives0_dlg0[] = { /* 0x81f9990 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g0_s4_lives1_dlg0[] = { /* 0x81f99c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(95),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives0_dlg1[] = { /* 0x81f99f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives0_dlg2[] = { /* 0x81f9a20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives1_dlg1[] = { /* 0x81f9a40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives1_dlg2[] = { /* 0x81f9a70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives2_dlg1[] = { /* 0x81f9a90 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(123),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives2_dlg2[] = { /* 0x81f9ac0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives3_dlg1[] = { /* 0x81f9ae0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(134),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives3_dlg2[] = { /* 0x81f9b10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(140),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives4_dlg1[] = { /* 0x81f9b30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives4_dlg2[] = { /* 0x81f9b60 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(151),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives5_dlg1[] = { /* 0x81f9b80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(156),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives5_dlg2[] = { /* 0x81f9bb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(162),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives6_dlg1[] = { /* 0x81f9bd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(167),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives6_dlg2[] = { /* 0x81f9c00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(173),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives7_dlg1[] = { /* 0x81f9c20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(178),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives7_dlg2[] = { /* 0x81f9c50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(184),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives8_dlg1[] = { /* 0x81f9c70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(189),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs124_g1_s0_lives8_dlg2[] = { /* 0x81f9ca0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(195),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs125_g0_s0_station_sref_script[] = { /* 0x81f9f9c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(26),
|
||||
SELECT_MAP(125),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -65,218 +65,218 @@ static const struct ScriptCommand s_gs125_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs125_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs125_g0_s0_station_sref_script }; /* 0x81fa218 */
|
||||
|
||||
static const struct ScriptCommand s_gs125_g0_s1_lives0_dlg0[] = { /* 0x81fa224 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(68),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g0_s1_lives1_dlg0[] = { /* 0x81fa264 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(75),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g0_s3_lives0_dlg0[] = { /* 0x81fa2a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g0_s3_lives1_dlg0[] = { /* 0x81fa2e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g0_s4_lives0_dlg0[] = { /* 0x81fa324 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g0_s4_lives1_dlg0[] = { /* 0x81fa354 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives0_dlg1[] = { /* 0x81fa384 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
{ 0x51, 0x00, 0x000f, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives0_dlg2[] = { /* 0x81fa3b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(114),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives1_dlg1[] = { /* 0x81fa3d4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(119),
|
||||
{ 0x51, 0x00, 0x000e, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives1_dlg2[] = { /* 0x81fa404 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(125),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives2_dlg1[] = { /* 0x81fa424 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(130),
|
||||
{ 0x51, 0x00, 0x000d, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives2_dlg2[] = { /* 0x81fa454 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(136),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives3_dlg1[] = { /* 0x81fa474 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(141),
|
||||
{ 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives3_dlg2[] = { /* 0x81fa4a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(147),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives4_dlg1[] = { /* 0x81fa4c4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(152),
|
||||
{ 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives4_dlg2[] = { /* 0x81fa4f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(158),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives5_dlg1[] = { /* 0x81fa514 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(163),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives5_dlg2[] = { /* 0x81fa544 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(169),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives6_dlg1[] = { /* 0x81fa564 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(174),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives6_dlg2[] = { /* 0x81fa594 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(180),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives7_dlg1[] = { /* 0x81fa5b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(185),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives7_dlg2[] = { /* 0x81fa5e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(191),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives8_dlg1[] = { /* 0x81fa604 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(196),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives8_dlg2[] = { /* 0x81fa634 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(202),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives9_dlg1[] = { /* 0x81fa654 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(207),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives9_dlg2[] = { /* 0x81fa684 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(213),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives10_dlg1[] = { /* 0x81fa6a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(218),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives10_dlg2[] = { /* 0x81fa6d4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(224),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives11_dlg1[] = { /* 0x81fa6f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(229),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives11_dlg2[] = { /* 0x81fa724 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(235),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives12_dlg1[] = { /* 0x81fa744 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(240),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives12_dlg2[] = { /* 0x81fa774 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(246),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives13_dlg1[] = { /* 0x81fa794 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(251),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives13_dlg2[] = { /* 0x81fa7c4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(257),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives14_dlg1[] = { /* 0x81fa7e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(262),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives14_dlg2[] = { /* 0x81fa814 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(268),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives15_dlg1[] = { /* 0x81fa834 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(273),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs125_g1_s0_lives15_dlg2[] = { /* 0x81fa864 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(279),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs126_g0_s0_station_sref_script[] = { /* 0x81fac40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(17),
|
||||
SELECT_MAP(126),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
JUMP_LABEL(0),
|
||||
@@ -54,119 +54,119 @@ static const struct ScriptRef s_gs126_g0_s0_station_sref = { 404, 1, NULL /* ENT
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs126_g0_s1_lives0_dlg0[] = { /* 0x81fae98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(57),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g0_s1_lives1_dlg0[] = { /* 0x81faed8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(64),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g0_s3_lives0_dlg0[] = { /* 0x81faf18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(71),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g0_s3_lives1_dlg0[] = { /* 0x81faf58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(78),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g0_s4_lives0_dlg0[] = { /* 0x81faf98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(85),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g0_s4_lives1_dlg0[] = { /* 0x81fafc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(91),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives0_dlg1[] = { /* 0x81faff8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(97),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives0_dlg2[] = { /* 0x81fb028 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(103),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives1_dlg1[] = { /* 0x81fb048 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives1_dlg2[] = { /* 0x81fb078 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(114),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives2_dlg1[] = { /* 0x81fb098 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(119),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives2_dlg2[] = { /* 0x81fb0c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(125),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives3_dlg1[] = { /* 0x81fb0e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(130),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives3_dlg2[] = { /* 0x81fb118 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(136),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives4_dlg1[] = { /* 0x81fb138 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(141),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives4_dlg2[] = { /* 0x81fb168 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(147),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives5_dlg1[] = { /* 0x81fb188 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(152),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives5_dlg2[] = { /* 0x81fb1b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(158),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives6_dlg1[] = { /* 0x81fb1d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(163),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs126_g1_s0_lives6_dlg2[] = { /* 0x81fb208 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(169),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s0_station_sref_script[] = { /* 0x81fb4e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
SELECT_MAP(127),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -50,67 +50,67 @@ static const struct ScriptCommand s_gs127_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs127_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs127_g0_s0_station_sref_script }; /* 0x81fb764 */
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s0_evt1_sref_script[] = { /* 0x81fb770 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(53),
|
||||
JUMP_SCRIPT(GETOUT_HABITAT),
|
||||
};
|
||||
|
||||
static const struct ScriptRef s_gs127_g0_s0_evt1_sref = { 358, 2, NULL /* GETOUT_HABITAT */, s_gs127_g0_s0_evt1_sref_script }; /* 0x81fb790 */
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s0_evt2_sref_script[] = { /* 0x81fb79c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(60),
|
||||
JUMP_SCRIPT(GETOUT_HABITAT),
|
||||
};
|
||||
|
||||
static const struct ScriptRef s_gs127_g0_s0_evt2_sref = { 358, 2, NULL /* GETOUT_HABITAT */, s_gs127_g0_s0_evt2_sref_script }; /* 0x81fb7bc */
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s1_lives0_dlg0[] = { /* 0x81fb7c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s1_lives1_dlg0[] = { /* 0x81fb808 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(74),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s3_lives0_dlg0[] = { /* 0x81fb848 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(81),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s3_lives1_dlg0[] = { /* 0x81fb888 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(88),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s4_lives0_dlg0[] = { /* 0x81fb8c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(95),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs127_g0_s4_lives1_dlg0[] = { /* 0x81fb8f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs127_g1_s0_lives0_dlg1[] = { /* 0x81fb928 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs127_g1_s0_lives0_dlg2[] = { /* 0x81fb958 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s0_station_sref_script[] = { /* 0x81fbb78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(16),
|
||||
SELECT_MAP(128),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -55,116 +55,116 @@ static const struct ScriptCommand s_gs128_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs128_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs128_g0_s0_station_sref_script }; /* 0x81fbdf4 */
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s0_evt2_sref_script[] = { /* 0x81fbe00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(58),
|
||||
JUMP_SCRIPT(GETOUT_HABITAT),
|
||||
};
|
||||
|
||||
static const struct ScriptRef s_gs128_g0_s0_evt2_sref = { 358, 2, NULL /* GETOUT_HABITAT */, s_gs128_g0_s0_evt2_sref_script }; /* 0x81fbe20 */
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s0_evt3_sref_script[] = { /* 0x81fbe2c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(65),
|
||||
JUMP_SCRIPT(GETOUT_HABITAT),
|
||||
};
|
||||
|
||||
static const struct ScriptRef s_gs128_g0_s0_evt3_sref = { 358, 2, NULL /* GETOUT_HABITAT */, s_gs128_g0_s0_evt3_sref_script }; /* 0x81fbe4c */
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s1_lives0_dlg0[] = { /* 0x81fbe58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s1_lives1_dlg0[] = { /* 0x81fbe98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(79),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s3_lives0_dlg0[] = { /* 0x81fbed8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(86),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s3_lives1_dlg0[] = { /* 0x81fbf18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s4_lives0_dlg0[] = { /* 0x81fbf58 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(100),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g0_s4_lives1_dlg0[] = { /* 0x81fbf88 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(106),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives0_dlg1[] = { /* 0x81fbfb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives0_dlg2[] = { /* 0x81fbfe8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives1_dlg1[] = { /* 0x81fc008 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(123),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives1_dlg2[] = { /* 0x81fc038 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives2_dlg1[] = { /* 0x81fc058 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(134),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives2_dlg2[] = { /* 0x81fc088 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(140),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives3_dlg2[] = { /* 0x81fc0a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives4_dlg1[] = { /* 0x81fc0c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(150),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives4_dlg2[] = { /* 0x81fc0f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(156),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives5_dlg1[] = { /* 0x81fc118 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(161),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs128_g1_s0_lives5_dlg2[] = { /* 0x81fc148 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(167),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs129_g0_s0_station_sref_script[] = { /* 0x81fc408 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(129),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -58,141 +58,141 @@ static const struct ScriptCommand s_gs129_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs129_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs129_g0_s0_station_sref_script }; /* 0x81fc684 */
|
||||
|
||||
static const struct ScriptCommand s_gs129_g0_s1_lives0_dlg0[] = { /* 0x81fc690 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(61),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g0_s1_lives1_dlg0[] = { /* 0x81fc6d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(68),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g0_s3_lives0_dlg0[] = { /* 0x81fc710 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(75),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g0_s3_lives1_dlg0[] = { /* 0x81fc750 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g0_s4_lives0_dlg0[] = { /* 0x81fc790 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g0_s4_lives1_dlg0[] = { /* 0x81fc7c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(95),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives0_dlg1[] = { /* 0x81fc7f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives0_dlg2[] = { /* 0x81fc820 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives1_dlg1[] = { /* 0x81fc840 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives1_dlg2[] = { /* 0x81fc870 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives2_dlg1[] = { /* 0x81fc890 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(123),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives2_dlg2[] = { /* 0x81fc8c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives3_dlg1[] = { /* 0x81fc8e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(134),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives3_dlg2[] = { /* 0x81fc910 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(140),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives4_dlg1[] = { /* 0x81fc930 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives4_dlg2[] = { /* 0x81fc960 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(151),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives5_dlg1[] = { /* 0x81fc980 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(156),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives5_dlg2[] = { /* 0x81fc9b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(162),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives6_dlg1[] = { /* 0x81fc9d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(167),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives6_dlg2[] = { /* 0x81fca00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(173),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives7_dlg1[] = { /* 0x81fca20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(178),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives7_dlg2[] = { /* 0x81fca50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(184),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives8_dlg1[] = { /* 0x81fca70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(189),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs129_g1_s0_lives8_dlg2[] = { /* 0x81fcaa0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(195),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs130_g0_s0_station_sref_script[] = { /* 0x81fcdc0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(17),
|
||||
SELECT_MAP(130),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -56,7 +56,7 @@ static const struct ScriptCommand s_gs130_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs130_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs130_g0_s0_station_sref_script }; /* 0x81fd03c */
|
||||
|
||||
static const struct ScriptCommand s_gs130_g0_s1_lives0_dlg0[] = { /* 0x81fd048 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(59),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
@@ -64,7 +64,7 @@ static const struct ScriptCommand s_gs130_g0_s1_lives0_dlg0[] = { /* 0x81fd048 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g0_s1_lives1_dlg0[] = { /* 0x81fd098 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
@@ -72,7 +72,7 @@ static const struct ScriptCommand s_gs130_g0_s1_lives1_dlg0[] = { /* 0x81fd098 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g0_s3_lives0_dlg0[] = { /* 0x81fd0e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(75),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
@@ -80,7 +80,7 @@ static const struct ScriptCommand s_gs130_g0_s3_lives0_dlg0[] = { /* 0x81fd0e8 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g0_s3_lives1_dlg0[] = { /* 0x81fd138 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(83),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
@@ -88,100 +88,100 @@ static const struct ScriptCommand s_gs130_g0_s3_lives1_dlg0[] = { /* 0x81fd138 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g0_s4_lives0_dlg0[] = { /* 0x81fd188 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(91),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g0_s4_lives1_dlg0[] = { /* 0x81fd1c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives0_dlg1[] = { /* 0x81fd208 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(105),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives0_dlg2[] = { /* 0x81fd248 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives1_dlg1[] = { /* 0x81fd268 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(117),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives1_dlg2[] = { /* 0x81fd2a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives2_dlg1[] = { /* 0x81fd2c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives2_dlg2[] = { /* 0x81fd308 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(136),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives3_dlg1[] = { /* 0x81fd328 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(141),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives3_dlg2[] = { /* 0x81fd368 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(148),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives4_dlg1[] = { /* 0x81fd388 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(153),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives4_dlg2[] = { /* 0x81fd3c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(160),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives5_dlg1[] = { /* 0x81fd3e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(165),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives5_dlg2[] = { /* 0x81fd428 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(172),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives6_dlg1[] = { /* 0x81fd448 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(177),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs130_g1_s0_lives6_dlg2[] = { /* 0x81fd488 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(184),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs131_g0_s0_station_sref_script[] = { /* 0x81fd768 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(19),
|
||||
SELECT_MAP(131),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -58,141 +58,141 @@ static const struct ScriptCommand s_gs131_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs131_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs131_g0_s0_station_sref_script }; /* 0x81fd9e4 */
|
||||
|
||||
static const struct ScriptCommand s_gs131_g0_s1_lives0_dlg0[] = { /* 0x81fd9f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(61),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g0_s1_lives1_dlg0[] = { /* 0x81fda30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(68),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g0_s3_lives0_dlg0[] = { /* 0x81fda70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(75),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g0_s3_lives1_dlg0[] = { /* 0x81fdab0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(82),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g0_s4_lives0_dlg0[] = { /* 0x81fdaf0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(89),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g0_s4_lives1_dlg0[] = { /* 0x81fdb20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(95),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives0_dlg1[] = { /* 0x81fdb50 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(101),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives0_dlg2[] = { /* 0x81fdb80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives1_dlg1[] = { /* 0x81fdba0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(112),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives1_dlg2[] = { /* 0x81fdbd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives2_dlg1[] = { /* 0x81fdbf0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(123),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives2_dlg2[] = { /* 0x81fdc20 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives3_dlg1[] = { /* 0x81fdc40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(134),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives3_dlg2[] = { /* 0x81fdc70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(140),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives4_dlg1[] = { /* 0x81fdc90 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives4_dlg2[] = { /* 0x81fdcc0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(151),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives5_dlg1[] = { /* 0x81fdce0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(156),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives5_dlg2[] = { /* 0x81fdd10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(162),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives6_dlg1[] = { /* 0x81fdd30 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(167),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives6_dlg2[] = { /* 0x81fdd60 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(173),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives7_dlg1[] = { /* 0x81fdd80 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(178),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives7_dlg2[] = { /* 0x81fddb0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(184),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives8_dlg1[] = { /* 0x81fddd0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(189),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs131_g1_s0_lives8_dlg2[] = { /* 0x81fde00 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(195),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs132_g0_s0_station_sref_script[] = { /* 0x81fe0fc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(20),
|
||||
SELECT_MAP(132),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -59,152 +59,152 @@ static const struct ScriptCommand s_gs132_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs132_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs132_g0_s0_station_sref_script }; /* 0x81fe378 */
|
||||
|
||||
static const struct ScriptCommand s_gs132_g0_s1_lives0_dlg0[] = { /* 0x81fe384 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(62),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g0_s1_lives1_dlg0[] = { /* 0x81fe3c4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(69),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g0_s3_lives0_dlg0[] = { /* 0x81fe404 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(76),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g0_s3_lives1_dlg0[] = { /* 0x81fe444 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(83),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g0_s4_lives0_dlg0[] = { /* 0x81fe484 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g0_s4_lives1_dlg0[] = { /* 0x81fe4b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives0_dlg1[] = { /* 0x81fe4e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives0_dlg2[] = { /* 0x81fe514 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(108),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives1_dlg1[] = { /* 0x81fe534 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives1_dlg2[] = { /* 0x81fe564 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(119),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives2_dlg1[] = { /* 0x81fe584 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives2_dlg2[] = { /* 0x81fe5b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(130),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives3_dlg1[] = { /* 0x81fe5d4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives3_dlg2[] = { /* 0x81fe604 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(141),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives4_dlg1[] = { /* 0x81fe624 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(146),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives4_dlg2[] = { /* 0x81fe654 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(152),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives5_dlg1[] = { /* 0x81fe674 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(157),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives5_dlg2[] = { /* 0x81fe6a4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(163),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives6_dlg1[] = { /* 0x81fe6c4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(168),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives6_dlg2[] = { /* 0x81fe6f4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(174),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives7_dlg1[] = { /* 0x81fe714 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(179),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives7_dlg2[] = { /* 0x81fe744 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(185),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives8_dlg1[] = { /* 0x81fe764 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(190),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives8_dlg2[] = { /* 0x81fe794 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(196),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives9_dlg1[] = { /* 0x81fe7b4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(201),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs132_g1_s0_lives9_dlg2[] = { /* 0x81fe7e4 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(207),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs133_g0_s0_station_sref_script[] = { /* 0x81feb24 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(133),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -53,86 +53,86 @@ static const struct ScriptCommand s_gs133_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs133_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs133_g0_s0_station_sref_script }; /* 0x81feda0 */
|
||||
|
||||
static const struct ScriptCommand s_gs133_g0_s1_lives0_dlg0[] = { /* 0x81fedac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(56),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g0_s1_lives1_dlg0[] = { /* 0x81fedec */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g0_s3_lives0_dlg0[] = { /* 0x81fee2c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(70),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g0_s3_lives1_dlg0[] = { /* 0x81fee6c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(77),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g0_s4_lives0_dlg0[] = { /* 0x81feeac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(84),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g0_s4_lives1_dlg0[] = { /* 0x81feedc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g1_s0_lives0_dlg1[] = { /* 0x81fef0c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g1_s0_lives0_dlg2[] = { /* 0x81fef3c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g1_s0_lives1_dlg1[] = { /* 0x81fef5c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g1_s0_lives1_dlg2[] = { /* 0x81fef8c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g1_s0_lives2_dlg1[] = { /* 0x81fefac */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g1_s0_lives2_dlg2[] = { /* 0x81fefdc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g1_s0_lives3_dlg1[] = { /* 0x81feffc */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs133_g1_s0_lives3_dlg2[] = { /* 0x81ff02c */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs134_g0_s0_station_sref_script[] = { /* 0x81ff288 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(134),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -53,7 +53,7 @@ static const struct ScriptCommand s_gs134_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs134_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs134_g0_s0_station_sref_script }; /* 0x81ff504 */
|
||||
|
||||
static const struct ScriptCommand s_gs134_g0_s1_lives0_dlg0[] = { /* 0x81ff510 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(56),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
@@ -61,7 +61,7 @@ static const struct ScriptCommand s_gs134_g0_s1_lives0_dlg0[] = { /* 0x81ff510 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g0_s1_lives1_dlg0[] = { /* 0x81ff560 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(64),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
@@ -69,7 +69,7 @@ static const struct ScriptCommand s_gs134_g0_s1_lives1_dlg0[] = { /* 0x81ff560 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g0_s3_lives0_dlg0[] = { /* 0x81ff5b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
@@ -77,7 +77,7 @@ static const struct ScriptCommand s_gs134_g0_s3_lives0_dlg0[] = { /* 0x81ff5b0 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g0_s3_lives1_dlg0[] = { /* 0x81ff600 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(80),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
@@ -85,64 +85,64 @@ static const struct ScriptCommand s_gs134_g0_s3_lives1_dlg0[] = { /* 0x81ff600 *
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g0_s4_lives0_dlg0[] = { /* 0x81ff650 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(88),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g0_s4_lives1_dlg0[] = { /* 0x81ff690 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(95),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g1_s0_lives0_dlg1[] = { /* 0x81ff6d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g1_s0_lives0_dlg2[] = { /* 0x81ff710 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(109),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g1_s0_lives1_dlg1[] = { /* 0x81ff730 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(114),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g1_s0_lives1_dlg2[] = { /* 0x81ff770 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g1_s0_lives2_dlg1[] = { /* 0x81ff790 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g1_s0_lives2_dlg2[] = { /* 0x81ff7d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(133),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g1_s0_lives3_dlg1[] = { /* 0x81ff7f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(138),
|
||||
{ 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL },
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs134_g1_s0_lives3_dlg2[] = { /* 0x81ff830 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(145),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs135_g0_s0_station_sref_script[] = { /* 0x81ffab0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(17),
|
||||
SELECT_MAP(135),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -56,119 +56,119 @@ static const struct ScriptCommand s_gs135_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs135_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs135_g0_s0_station_sref_script }; /* 0x81ffd2c */
|
||||
|
||||
static const struct ScriptCommand s_gs135_g0_s1_lives0_dlg0[] = { /* 0x81ffd38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(59),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g0_s1_lives1_dlg0[] = { /* 0x81ffd78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(66),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g0_s3_lives0_dlg0[] = { /* 0x81ffdb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(73),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g0_s3_lives1_dlg0[] = { /* 0x81ffdf8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(80),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g0_s4_lives0_dlg0[] = { /* 0x81ffe38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g0_s4_lives1_dlg0[] = { /* 0x81ffe68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives0_dlg1[] = { /* 0x81ffe98 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(99),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives0_dlg2[] = { /* 0x81ffec8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(105),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives1_dlg1[] = { /* 0x81ffee8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(110),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives1_dlg2[] = { /* 0x81fff18 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(116),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives2_dlg1[] = { /* 0x81fff38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(121),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives2_dlg2[] = { /* 0x81fff68 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(127),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives3_dlg1[] = { /* 0x81fff88 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(132),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives3_dlg2[] = { /* 0x81fffb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(138),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives4_dlg1[] = { /* 0x81fffd8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(143),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives4_dlg2[] = { /* 0x8200008 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(149),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives5_dlg1[] = { /* 0x8200028 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(154),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives5_dlg2[] = { /* 0x8200058 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(160),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives6_dlg1[] = { /* 0x8200078 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(165),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs135_g1_s0_lives6_dlg2[] = { /* 0x82000a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(171),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs136_g0_s0_station_sref_script[] = { /* 0x8200388 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(16),
|
||||
SELECT_MAP(136),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -55,108 +55,108 @@ static const struct ScriptCommand s_gs136_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs136_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs136_g0_s0_station_sref_script }; /* 0x8200604 */
|
||||
|
||||
static const struct ScriptCommand s_gs136_g0_s1_lives0_dlg0[] = { /* 0x8200610 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(58),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g0_s1_lives1_dlg0[] = { /* 0x8200650 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(65),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g0_s3_lives0_dlg0[] = { /* 0x8200690 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(72),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g0_s3_lives1_dlg0[] = { /* 0x82006d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(79),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g0_s4_lives0_dlg0[] = { /* 0x8200710 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(86),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g0_s4_lives1_dlg0[] = { /* 0x8200740 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(92),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives0_dlg1[] = { /* 0x8200770 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(98),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives0_dlg2[] = { /* 0x82007a0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(104),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives1_dlg1[] = { /* 0x82007c0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(109),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives1_dlg2[] = { /* 0x82007f0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(115),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives2_dlg1[] = { /* 0x8200810 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(120),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives2_dlg2[] = { /* 0x8200840 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(126),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives3_dlg1[] = { /* 0x8200860 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives3_dlg2[] = { /* 0x8200890 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(137),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives4_dlg1[] = { /* 0x82008b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(142),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives4_dlg2[] = { /* 0x82008e0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(148),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives5_dlg1[] = { /* 0x8200900 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(153),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs136_g1_s0_lives5_dlg2[] = { /* 0x8200930 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(159),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs137_g0_s0_station_sref_script[] = { /* 0x8200bf0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(21),
|
||||
SELECT_MAP(137),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -60,163 +60,163 @@ static const struct ScriptCommand s_gs137_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs137_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs137_g0_s0_station_sref_script }; /* 0x8200e6c */
|
||||
|
||||
static const struct ScriptCommand s_gs137_g0_s1_lives0_dlg0[] = { /* 0x8200e78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g0_s1_lives1_dlg0[] = { /* 0x8200eb8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(70),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g0_s3_lives0_dlg0[] = { /* 0x8200ef8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(77),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g0_s3_lives1_dlg0[] = { /* 0x8200f38 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(84),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g0_s4_lives0_dlg0[] = { /* 0x8200f78 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(91),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g0_s4_lives1_dlg0[] = { /* 0x8200fa8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(97),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives0_dlg1[] = { /* 0x8200fd8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(103),
|
||||
{ 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives0_dlg2[] = { /* 0x8201008 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(109),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives1_dlg1[] = { /* 0x8201028 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(114),
|
||||
{ 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives1_dlg2[] = { /* 0x8201058 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(120),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives2_dlg1[] = { /* 0x8201078 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(125),
|
||||
{ 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives2_dlg2[] = { /* 0x82010a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(131),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives3_dlg1[] = { /* 0x82010c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(136),
|
||||
{ 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives3_dlg2[] = { /* 0x82010f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(142),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives4_dlg1[] = { /* 0x8201118 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(147),
|
||||
{ 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives4_dlg2[] = { /* 0x8201148 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(153),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives5_dlg1[] = { /* 0x8201168 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(158),
|
||||
{ 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives5_dlg2[] = { /* 0x8201198 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(164),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives6_dlg1[] = { /* 0x82011b8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(169),
|
||||
{ 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives6_dlg2[] = { /* 0x82011e8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(175),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives7_dlg1[] = { /* 0x8201208 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(180),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives7_dlg2[] = { /* 0x8201238 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(186),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives8_dlg1[] = { /* 0x8201258 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(191),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives8_dlg2[] = { /* 0x8201288 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(197),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives9_dlg1[] = { /* 0x82012a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(202),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives9_dlg2[] = { /* 0x82012d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(208),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives10_dlg1[] = { /* 0x82012f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(213),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs137_g1_s0_lives10_dlg2[] = { /* 0x8201328 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(219),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs138_g0_s0_station_sref_script[] = { /* 0x8201688 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(11),
|
||||
SELECT_MAP(138),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -50,53 +50,53 @@ static const struct ScriptCommand s_gs138_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs138_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs138_g0_s0_station_sref_script }; /* 0x8201904 */
|
||||
|
||||
static const struct ScriptCommand s_gs138_g0_s1_lives0_dlg0[] = { /* 0x8201910 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(53),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs138_g0_s1_lives1_dlg0[] = { /* 0x8201950 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(60),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs138_g0_s3_lives0_dlg0[] = { /* 0x8201990 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(67),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs138_g0_s3_lives1_dlg0[] = { /* 0x82019d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(74),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs138_g0_s4_lives0_dlg0[] = { /* 0x8201a10 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(81),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs138_g0_s4_lives1_dlg0[] = { /* 0x8201a40 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(87),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs138_g1_s0_lives0_dlg1[] = { /* 0x8201a70 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(93),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs138_g1_s0_lives0_dlg2[] = { /* 0x8201aa0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(99),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs139_g0_s0_station_sref_script[] = { /* 0x8201cc0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(139),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -53,86 +53,86 @@ static const struct ScriptCommand s_gs139_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs139_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs139_g0_s0_station_sref_script }; /* 0x8201f3c */
|
||||
|
||||
static const struct ScriptCommand s_gs139_g0_s1_lives0_dlg0[] = { /* 0x8201f48 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(56),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g0_s1_lives1_dlg0[] = { /* 0x8201f88 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g0_s3_lives0_dlg0[] = { /* 0x8201fc8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(70),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g0_s3_lives1_dlg0[] = { /* 0x8202008 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(77),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g0_s4_lives0_dlg0[] = { /* 0x8202048 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(84),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g0_s4_lives1_dlg0[] = { /* 0x8202078 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g1_s0_lives0_dlg1[] = { /* 0x82020a8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g1_s0_lives0_dlg2[] = { /* 0x82020d8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g1_s0_lives1_dlg1[] = { /* 0x82020f8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g1_s0_lives1_dlg2[] = { /* 0x8202128 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g1_s0_lives2_dlg1[] = { /* 0x8202148 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g1_s0_lives2_dlg2[] = { /* 0x8202178 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g1_s0_lives3_dlg1[] = { /* 0x8202198 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs139_g1_s0_lives3_dlg2[] = { /* 0x82021c8 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
static const struct ScriptCommand s_gs140_g0_s0_station_sref_script[] = { /* 0x8202448 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(14),
|
||||
SELECT_MAP(140),
|
||||
CJUMP_SCENARIO_0(SCENARIO_MAIN),
|
||||
COND(JUDGE_EQ, 3, /* to label */ 0),
|
||||
@@ -53,86 +53,86 @@ static const struct ScriptCommand s_gs140_g0_s0_station_sref_script[] = { /* 0x8
|
||||
static const struct ScriptRef s_gs140_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs140_g0_s0_station_sref_script }; /* 0x82026c4 */
|
||||
|
||||
static const struct ScriptCommand s_gs140_g0_s1_lives0_dlg0[] = { /* 0x82026d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(56),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g0_s1_lives1_dlg0[] = { /* 0x8202710 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(63),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g0_s3_lives0_dlg0[] = { /* 0x8202750 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(70),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g0_s3_lives1_dlg0[] = { /* 0x8202790 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(77),
|
||||
SELECT_ANIMATION(2),
|
||||
CALL_SCRIPT(WAIT_START_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g0_s4_lives0_dlg0[] = { /* 0x82027d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(84),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g0_s4_lives1_dlg0[] = { /* 0x8202800 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(90),
|
||||
CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC),
|
||||
RET,
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g1_s0_lives0_dlg1[] = { /* 0x8202830 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(96),
|
||||
{ 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g1_s0_lives0_dlg2[] = { /* 0x8202860 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(102),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g1_s0_lives1_dlg1[] = { /* 0x8202880 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(107),
|
||||
{ 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g1_s0_lives1_dlg2[] = { /* 0x82028b0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(113),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g1_s0_lives2_dlg1[] = { /* 0x82028d0 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(118),
|
||||
{ 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g1_s0_lives2_dlg2[] = { /* 0x8202900 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(124),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g1_s0_lives3_dlg1[] = { /* 0x8202920 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(129),
|
||||
{ 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL },
|
||||
JUMP_SCRIPT(HABITAT_MOVE1),
|
||||
};
|
||||
|
||||
static const struct ScriptCommand s_gs140_g1_s0_lives3_dlg2[] = { /* 0x8202950 */
|
||||
DEBUGINFO,
|
||||
DEBUGINFO_O(135),
|
||||
JUMP_SCRIPT(HABITAT_TALK),
|
||||
};
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user