1 | function cutscene_dialogue_giga() |
2 | { |
3 | if (!instance_exists(obj_dialogue_giga)) |
4 | { |
5 | msg = instance_create(0, 0, obj_dialogue_giga); |
6 | if (argument_count > 0) |
7 | { |
8 | msg.xx = argument[0]; |
9 | msg.yy = argument[1]; |
10 | } |
11 | } |
12 | if (!global.dialogue_open) |
13 | { |
14 | cutscene_advance(); |
15 | return true; |
16 | } |
17 | return false; |
18 | } |