Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_intro_slide_4_parent_Step_2

related scripts: Alarm_0Alarm_1Alarm_2Create_0Step_2

(view raw script w/o annotations or w/e)
1
if (instance_exists(obj_intro_text))
2
{
3
    if (obj_intro_text.message_current == 3 && obj_intro_text.characters == obj_intro_text.message_length && no_loop_1 == false)
4
    {
5
        alarm[0]
 = 20;
gml_Object_obj_intro_slide_4_parent_Alarm_0.gml

effects_1 = true;
6
        no_loop_1 = true;
7
    }
8
    if (obj_intro_dood_slide_4.image_alpha == 0 && no_loop_2 == false)
9
    {
10
        alarm[1]
 = 20;
gml_Object_obj_intro_slide_4_parent_Alarm_1.gml

effects_2 = true;
11
        no_loop_2 = true;
12
    }
13
    if (obj_intro_canister_slide_4.image_alpha == 1 && no_loop_3 == false)
14
    {
15
        alarm[2]
 = 20;
gml_Object_obj_intro_slide_4_parent_Alarm_2.gml

with (obj_intro_text) increase_message_count = true;
16
        no_loop_3 = true;
17
    }
18
}