Deltarune script viewer

← back to main script listing

gml_Object_obj_spamton_neo_enemy_Other_14

(view raw script w/o annotations or w/e)
1
funnycheat += 1;
2
if (funnycheat > 5)
3
{
4
    if (global.tempflag[37] < 2)
5
    {
6
        if (global.monsterat[myself] < 26)
7
            global.monsterat[myself] += 0.5;
8
        else
9
            global.monsterat[myself] = 26;
10
        hellmode = 1;
11
    }
12
    else if (global.tempflag[37] < 4)
13
    {
14
        if (global.monsterat[myself] < 22)
15
            global.monsterat[myself] += 0.25;
16
        else
17
            global.monsterat[myself] = 22;
18
        hellmode = 1;
19
    }
20
    else if (global.tempflag[37] < 6)
21
    {
22
        if (global.monsterat[myself] < 18)
23
            global.monsterat[myself] += 0.1;
24
        else
25
            global.monsterat[myself] = 18;
26
    }
27
    else if (global.tempflag[37] < 10)
28
    {
29
        if (global.monsterat[myself] < 15)
30
            global.monsterat[myself] += 0.04;
31
        else
32
            global.monsterat[myself] = 15;
33
    }
34
    else if (global.tempflag[37] >= 10)
35
    {
36
    }
37
}