1 |
script_execute(scr_depth, 0, 0, 0, 0, 0); |
2 |
if (instance_exists(obj_dialogue) && talk == true) |
3 |
{ |
4 |
if (obj_dialogue.cutoff == string_length(obj_dialogue.message[obj_dialogue.message_current])) |
5 |
{ |
6 |
image_speed = 0; |
7 |
image_index = 0; |
8 |
} |
9 |
else |
10 |
{ |
11 |
image_speed = 0.2; |
12 |
} |
13 |
} |
14 |
if (keyboard_multicheck_pressed(0) && scr_interactscr_interactfunction scr_interact()
{
if (distance_to_object(obj_pl) < 20 && obj_pl.state == scr_normal_state)
{
var pl_dir = obj_pl.direction;
var pl_x = 0;
var pl_y = 0;
var check_distance_x = 0;
var check_distance_y = 0;
switch (pl_dir)
{
case 0:
pl_x = obj_pl.bbox_right;
pl_y = obj_pl.bbox_top + 1;
check_distance_x = 20;
break;
case 180:
pl_x = obj_pl.bbox_left;
pl_y = obj_pl.bbox_top + 1;
check_distance_x = -20;
break;
case 90:
pl_x = obj_pl.x;
pl_y = obj_pl.bbox_top;
check_distance_y = -20;
break;
case 270:
pl_x = obj_pl.x;
pl_y = obj_pl.bbox_bottom;
check_distance_y = 20;
break;
}
if (collision_line_first(pl_x, pl_y, pl_x + check_distance_x, pl_y + check_distance_y, id, false, false))
return true;
}
} () == true) |
15 |
{ |
16 |
scr_textscr_textfunction scr_text()
{
if (!instance_exists(obj_dialogue))
msg = instance_create(x, y, obj_dialogue);
} (); |
17 |
talk = 1; |
18 |
switch (global.sideNpc[4]) |
19 |
{ |
20 |
case 0: |
21 |
with (msg) |
22 |
{ |
23 |
portrait = false; |
24 |
sndfnt = 99; |
25 |
message[0] = "* Yo, Dalv is opening the door to# Snowdin!"; |
26 |
message[1] = "* It's been so long!"; |
27 |
message[2] = "* I know what my first# stop will be. "; |
28 |
message[3] = "* Dump, here I come! "; |
29 |
} |
30 |
global.sideNpc[4] = 1; |
31 |
break; |
32 |
case 1: |
33 |
with (msg) |
34 |
{ |
35 |
portrait = false; |
36 |
sndfnt = 99; |
37 |
message[0] = "* Do you watch anime? "; |
38 |
message[1] = "* I HIGHLY recommend it!"; |
39 |
message[2] = "* I mean some of it is# total garbage... "; |
40 |
message[3] = "* But most of it is SOOO good!"; |
41 |
} |
42 |
global.sideNpc[4] = 2; |
43 |
break; |
44 |
case 2: |
45 |
with (msg) |
46 |
{ |
47 |
portrait = false; |
48 |
sndfnt = 99; |
49 |
message[0] = "* Maybe we could watch some# together!"; |
50 |
} |
51 |
break; |
52 |
} |
53 |
} |
54 |
if (!instance_exists(obj_dialogue) && talk == true) |
55 |
talk = false; |