thpj5/objects/obj_scene/Other_4.gml

65 lines
1.9 KiB
Plaintext
Raw Normal View History

fade_in = 50;
if (global.loaded_file[? SAVE_CHNUM] > SCENE_TOTAL ) {
room_goto(rm_ending);
}
2023-06-14 21:53:10 -07:00
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_NOSCENE) {
global.scene_mode = true;
2023-06-14 21:53:10 -07:00
global.scene_number = SCENE_NOSCENE;
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) {
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) {
global.scene_mode = true;
2023-06-14 21:53:10 -07:00
global.scene_number = SCENE_C1_SISMAD;
timeline_position = 0;
2023-06-14 21:53:10 -07:00
timeline_index = tml_scene_c1;
timeline_running = true;
}
2023-06-14 21:53:10 -07:00
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C2_SHRINEMAD) {
global.scene_mode = true;
2023-06-14 21:53:10 -07:00
global.scene_number = SCENE_C2_SHRINEMAD;
timeline_position = 0;
2023-06-14 21:53:10 -07:00
timeline_index = tml_scene_c2;
timeline_running = true;
}
2023-06-14 21:53:10 -07:00
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C3_THERAPY1) {
global.scene_mode = true;
2023-06-14 21:53:10 -07:00
global.scene_number = SCENE_C3_THERAPY1;
timeline_position = 0;
2023-06-14 21:53:10 -07:00
timeline_index = tml_scene_c3;
timeline_running = true;
}
2023-06-14 21:53:10 -07:00
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C4_RINPARK) {
global.scene_mode = true;
2023-06-14 21:53:10 -07:00
global.scene_number = SCENE_C4_RINPARK;
timeline_position = 0;
2023-06-14 21:53:10 -07:00
timeline_index = tml_scene_c4;
timeline_running = true;
}
2023-06-14 21:53:10 -07:00
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C5_THERAPY2) {
global.scene_mode = true;
2023-06-14 21:53:10 -07:00
global.scene_number = SCENE_C5_THERAPY2;
timeline_position = 0;
2023-06-14 21:53:10 -07:00
timeline_index = tml_scene_c5;
timeline_running = true;
}
2023-06-14 21:53:10 -07:00
if (!global.scene_mode && global.loaded_file[? SAVE_CHNUM] == SCENE_C6_SISSORRY) {
global.scene_mode = true;
2023-06-14 21:53:10 -07:00
global.scene_number = SCENE_C6_SISSORRY;
timeline_position = 0;
2023-06-14 21:53:10 -07:00
timeline_index = tml_scene_c6;
timeline_running = true;
}