Deltarune (Chapter 5) script viewer

← back to main script listing

gml_GlobalScript_scr_get_plat_followers

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

function
scr_get_plat_followers()
{ plat_susie = -4; plat_ralsei = -4; with (obj_plat_follower) { if (name == "susie") other.plat_susie = self; if (name == "ralsei") other.plat_ralsei = self; } }
()
2
{
3
    plat_susie = -4;
4
    plat_ralsei = -4;
5
    with (obj_plat_follower)
6
    {
7
        if (name == "susie")
8
            other.plat_susie = self;
9
        if (name == "ralsei")
10
            other.plat_ralsei = self;
11
    }
12
}