Deltarune (Chapter 5) script viewer

← back to main script listing

gml_GlobalScript_scr_platmode_talk_init

(view raw script w/o annotations or w/e)
1
function 
scr_platmode_talk_init
scr_platmode_talk_init

function
scr_platmode_talk_init(arg0 = id, arg1 = "")
{ if (instance_exists(arg0)) { with (arg0) { var helper = instance_create(x, y, obj_plat_slash_to_talk); helper.owner = self; helper.extflag = arg1; on_talk_slash = function(arg0) { }; } } }
(arg0 = id, arg1 = "")
2
{
3
    if (instance_exists(arg0))
4
    {
5
        with (arg0)
6
        {
7
            var helper = instance_create(x, y, obj_plat_slash_to_talk);
8
            helper.owner = self;
9
            helper.extflag = arg1;
10
            
11
            on_talk_slash = function(arg0)
12
            {
13
            };
14
        }
15
    }
16
}