Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_tm_quizzler_old_Create_0

(view raw script w/o annotations or w/e)
1
init = 0;
2
difficulty = 0;
3
currentturn = 0;
4
turns = 1;
5
manualturns = false;
6
letters[0] = 0;
7
turnspeed = 30;
8
lastletter = -1;
9
state = 0;
10
timer = 0;
11
voiceclips[0] = snd_tm_quiz_a;
12
voiceclips[1] = snd_tm_quiz_b;
13
voiceclips[2] = snd_tm_quiz_c;
14
voiceclips[3] = snd_tm_quiz_d;
15
canrepeat = true;
16
creator = 0;
17
damage = -1;
18
target = -1;
19
animator = -4;
20
if (instance_exists(obj_tm_whip_animation))
21
{
22
    animator = 460;
23
}
24
else
25
{
26
    animator = instance_create(x, y, obj_tm_whip_animation);
27
    animator.visible = 0;
28
    animator.state = -1;
29
}
30
nextdifficulty = false;
31
dojo = false;
32
restart = false;
33
rounds = 0;