|
1
|
init = false;
|
|
2
|
init_heart = false;
|
|
3
|
con = -1;
|
|
4
|
customcon = 0;
|
|
5
|
snd_free_all();
|
|
6
|
blackall = scr_dark_markerscr_dark_marker
function scr_dark_marker(arg0, arg1, arg2)
{
thismarker = instance_create(arg0, arg1, obj_marker);
with (thismarker)
{
sprite_index = arg2;
image_speed = 0;
image_xscale = 2;
image_yscale = 2;
}
return thismarker;
} (-10, -10, spr_pixel_white);
|
|
7
|
blackall.image_xscale = 999;
|
|
8
|
blackall.image_yscale = 999;
|
|
9
|
blackall.depth = 100;
|
|
10
|
blackall.image_blend = c_black;
|
|
11
|
blackall.image_alpha = 1;
|
|
12
|
overlay = instance_create(0, 0, obj_noellehouse_basement_overlay);
|
|
13
|
overlay.depth = 3000;
|
|
14
|
with (overlay)
|
|
15
|
set_alpha(0.5);
|
|
16
|
angel_marker = scr_markerscr_marker
function scr_marker(arg0, arg1, arg2)
{
thismarker = instance_create(arg0, arg1, obj_marker);
with (thismarker)
{
sprite_index = arg2;
image_speed = 0;
}
return thismarker;
} (-100, -100, spr_noellehouse_basement_angel);
|
|
17
|
with (angel_marker)
|
|
18
|
depth = 80000;
|
|
19
|
heart_marker = scr_markerscr_marker
function scr_marker(arg0, arg1, arg2)
{
thismarker = instance_create(arg0, arg1, obj_marker);
with (thismarker)
{
sprite_index = arg2;
image_speed = 0;
}
return thismarker;
} (-100, -100, spr_heartsmall);
|
|
20
|
with (heart_marker)
|
|
21
|
depth = 80010;
|
|
22
|
table_marker = scr_markerscr_marker
function scr_marker(arg0, arg1, arg2)
{
thismarker = instance_create(arg0, arg1, obj_marker);
with (thismarker)
{
sprite_index = arg2;
image_speed = 0;
}
return thismarker;
} (-100, -100, spr_noellehouse_table_tray);
|
|
23
|
table_marker.visible = 0;
|
|
24
|
table_marker.depth = 80000;
|
|
25
|
snacktray_marker = scr_markerscr_marker
function scr_marker(arg0, arg1, arg2)
{
thismarker = instance_create(arg0, arg1, obj_marker);
with (thismarker)
{
sprite_index = arg2;
image_speed = 0;
}
return thismarker;
} (460, 590, spr_noellehouse_platter);
|
|
26
|
snacktray_marker.depth = 93530;
|
|
27
|
angel_fall = false;
|
|
28
|
angel_fall_timer = 0;
|
|
29
|
angel_fall_direction = "";
|
|
30
|
noelle_shock = false;
|
|
31
|
shock_sprite = scr_markerscr_marker
function scr_marker(arg0, arg1, arg2)
{
thismarker = instance_create(arg0, arg1, obj_marker);
with (thismarker)
{
sprite_index = arg2;
image_speed = 0;
}
return thismarker;
} (-100, -100, spr_noelle_susie_angel_shock);
|
|
32
|
shock_sprite.depth = 7000;
|
|
33
|
shock_sprite.visible = 0;
|
|
34
|
shock_sprite_timestamps = [330, 330, 330, 60, 60, 60, 100, 100, 100, 660, 330, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200];
|
|
35
|
shock_anim_modifier = 30;
|
|
36
|
shock_anim_index = 0;
|
|
37
|
shock_anim_timer = 0;
|
|
38
|
angel_shake_marker = scr_markerscr_marker
function scr_marker(arg0, arg1, arg2)
{
thismarker = instance_create(arg0, arg1, obj_marker);
with (thismarker)
{
sprite_index = arg2;
image_speed = 0;
}
return thismarker;
} (-100, -100, spr_noelle_susie_angel_table_hold_loop_isolate);
|
|
39
|
angel_shake = false;
|
|
40
|
angel_shake_timer = 0;
|