2023-06-03 01:02:35 -07:00
|
|
|
fade_in = 50;
|
|
|
|
|
2023-06-06 23:53:55 -07:00
|
|
|
if (global.loaded_file[? SAVE_CHNUM] > SCENE_TOTAL ) {
|
2023-06-03 01:02:35 -07:00
|
|
|
room_goto(rm_ending);
|
|
|
|
}
|
|
|
|
|
2023-06-14 21:53:10 -07:00
|
|
|
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_NOSCENE) {
|
2023-06-03 01:02:35 -07:00
|
|
|
global.scene_mode = true;
|
2023-06-14 21:53:10 -07:00
|
|
|
global.scene_number = SCENE_NOSCENE;
|
2023-06-03 01:02:35 -07:00
|
|
|
timeline_position = 0;
|
|
|
|
timeline_index = tml_scene_test;
|
|
|
|
timeline_running = true;
|
|
|
|
}
|
2023-06-14 21:53:10 -07:00
|
|
|
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_TEST) {
|
2023-06-06 23:53:55 -07:00
|
|
|
global.scene_mode = true;
|
|
|
|
global.scene_number = SCENE_TEST;
|
|
|
|
timeline_position = 0;
|
|
|
|
timeline_index = tml_scene_test;
|
|
|
|
timeline_running = true;
|
|
|
|
}
|
2023-06-14 21:53:10 -07:00
|
|
|
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C1_SISMAD) {
|
2023-06-06 23:53:55 -07:00
|
|
|
global.scene_mode = true;
|
2023-06-14 21:53:10 -07:00
|
|
|
global.scene_number = SCENE_C1_SISMAD;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_position = 0;
|
2023-06-14 21:53:10 -07:00
|
|
|
timeline_index = tml_scene_c1;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_running = true;
|
|
|
|
}
|
2023-06-14 21:53:10 -07:00
|
|
|
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C2_SHRINEMAD) {
|
2023-06-06 23:53:55 -07:00
|
|
|
global.scene_mode = true;
|
2023-06-14 21:53:10 -07:00
|
|
|
global.scene_number = SCENE_C2_SHRINEMAD;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_position = 0;
|
2023-06-14 21:53:10 -07:00
|
|
|
timeline_index = tml_scene_c2;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_running = true;
|
|
|
|
}
|
2023-06-14 21:53:10 -07:00
|
|
|
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C3_THERAPY1) {
|
2023-06-06 23:53:55 -07:00
|
|
|
global.scene_mode = true;
|
2023-06-14 21:53:10 -07:00
|
|
|
global.scene_number = SCENE_C3_THERAPY1;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_position = 0;
|
2023-06-14 21:53:10 -07:00
|
|
|
timeline_index = tml_scene_c3;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_running = true;
|
|
|
|
}
|
2024-02-04 21:14:27 -08:00
|
|
|
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C4_LAKE) {
|
2023-06-06 23:53:55 -07:00
|
|
|
global.scene_mode = true;
|
2024-02-04 21:14:27 -08:00
|
|
|
global.scene_number = SCENE_C4_LAKE;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_position = 0;
|
2023-06-14 21:53:10 -07:00
|
|
|
timeline_index = tml_scene_c4;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_running = true;
|
|
|
|
}
|
2024-02-04 21:14:27 -08:00
|
|
|
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C5_SORRY) {
|
2023-06-06 23:53:55 -07:00
|
|
|
global.scene_mode = true;
|
2024-02-04 21:14:27 -08:00
|
|
|
global.scene_number = SCENE_C5_SORRY;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_position = 0;
|
2023-06-14 21:53:10 -07:00
|
|
|
timeline_index = tml_scene_c5;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_running = true;
|
|
|
|
}
|
2023-06-14 21:53:10 -07:00
|
|
|
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C6_SISSORRY) {
|
2023-06-06 23:53:55 -07:00
|
|
|
global.scene_mode = true;
|
2023-06-14 21:53:10 -07:00
|
|
|
global.scene_number = SCENE_C6_SISSORRY;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_position = 0;
|
2023-06-14 21:53:10 -07:00
|
|
|
timeline_index = tml_scene_c6;
|
2023-06-06 23:53:55 -07:00
|
|
|
timeline_running = true;
|
|
|
|
}
|
|
|
|
|
2023-06-03 01:02:35 -07:00
|
|
|
|