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 | element = 6; |
20 | tm = 0; |
21 | animator = -4; |
22 | if (instance_exists(obj_tm_whip_animation)) |
23 | { |
24 | animator = 456; |
25 | } |
26 | else |
27 | { |
28 | animator = instance_create(x, y, obj_tm_whip_animation); |
29 | animator.visible = 0; |
30 | animator.state = -1; |
31 | } |
32 | nextdifficulty = false; |
33 | dojo = false; |
34 | restart = false; |
35 | rounds = 0; |
36 | hit = false; |
37 | controller = 0; |