Deltarune (Chapter 2) script viewer

← back to main script listing

gml_GlobalScript_scr_texttype

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

function scr_texttype() { var font_set = true; var extra_ja_vspace = 0; textscale = 1; switch (global.typer) { case 0: font_set = false; break; case 1: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_text, 8, 18, 0); break; case 2: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 2, snd_nosound, 8, 18, 0); break; case 3: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 2, snd_text, 8, 18, 1); break; case 4: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 1, snd_text, 16, 28, 1); extra_ja_vspace = 2; break; case 5: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_text, 8, 18, 0); break; case 6: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 1, snd_text, 16, 36, 1); break; case 7: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txttor, 8, 18, 0); break; case 8: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 2, snd_txttor, 8, 18, 0); break; case 10: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txtsus, 8, 18, 0); break; case 11: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txtsus, 8, 18, 0); break; case 12: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txtnoe, 8, 18, 0); break; case 13: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txtber, 8, 18, 0); break; case 14: scr_textsetup(scr_84_get_font("comicsans"), c_white, x, y, 33, 0, 1, snd_txtsans, 8, 18, 0); break; case 15: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_text, 8, 18, 0); break; case 16: font_set = false; break; case 17: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txtund, 8, 18, 0); break; case 18: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txtasg, 8, 18, 0); break; case 19: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_text, 8, 18, 0); break; case 20: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txtal, 8, 18, 0); break; case 21: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 1, snd_txtal, 8, 18, 0); break; case 22: scr_textsetup(scr_84_get_font("tinynoelle"), c_white, x, y + 7, 33, 0, 1, snd_txtal, 6, 18, 0); break; case 23: scr_textsetup(scr_84_get_font("tinynoelle"), c_white, x, y + 7, 33, 0, 1, snd_txtnoe, 6, 18, 0); break; case 30: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 1, snd_txtsus, 16, 36, 1); break; case 31: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 1, snd_txtral, 16, 36, 1); break; case 32: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 1, snd_txtlan, 16, 36, 1); break; case 33: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 1, snd_dadtxt, 16, 36, 1); break; case 35: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 1, snd_txtjok, 16, 36, 1); break; case 36: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 1, snd_nosound, 16, 36, 1); break; case 37: scr_textsetup(scr_84_get_font("mainbig"), c_white, x, y, 33, 0, 3, snd_txtsus, 18, 36, 1); break; case 40: scr_textsetup(scr_84_get_font("main"), c_white, x, y, 33, 0, 2, snd_nosound, 8, 18, 0); break; ...
()
2
{
3
    var font_set = true;
4
    var extra_ja_vspace = 0;
5
    textscale = 1;
6
    switch (global.typer)
7
    {
8
        case 0:
9
            font_set = false;
10
            break;
11
        case 1:
12
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_text, 8, 18, 0);
13
            break;
14
        case 2:
15
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 2, snd_nosound, 8, 18, 0);
16
            break;
17
        case 3:
18
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 2, snd_text, 8, 18, 1);
19
            break;
20
        case 4:
21
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_text, 16, 28, 1);
22
            extra_ja_vspace = 2;
23
            break;
24
        case 5:
25
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_text, 8, 18, 0);
26
            break;
27
        case 6:
28
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_text, 16, 36, 1);
29
            break;
30
        case 7:
31
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txttor, 8, 18, 0);
32
            break;
33
        case 8:
34
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 2, snd_txttor, 8, 18, 0);
35
            break;
36
        case 10:
37
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtsus, 8, 18, 0);
38
            break;
39
        case 11:
40
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtsus, 8, 18, 0);
41
            break;
42
        case 12:
43
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtnoe, 8, 18, 0);
44
            break;
45
        case 13:
46
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtber, 8, 18, 0);
47
            break;
48
        case 14:
49
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("comicsans"), c_white, x, y, 33, 0, 1, snd_txtsans, 8, 18, 0);
50
            break;
51
        case 15:
52
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_text, 8, 18, 0);
53
            break;
54
        case 16:
55
            font_set = false;
56
            break;
57
        case 17:
58
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtund, 8, 18, 0);
59
            break;
60
        case 18:
61
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtasg, 8, 18, 0);
62
            break;
63
        case 19:
64
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_text, 8, 18, 0);
65
            break;
66
        case 20:
67
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtal, 8, 18, 0);
68
            break;
69
        case 21:
70
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtal, 8, 18, 0);
71
            break;
72
        case 22:
73
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("tinynoelle"), c_white, x, y + 7, 33, 0, 1, snd_txtal, 6, 18, 0);
74
            break;
75
        case 23:
76
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("tinynoelle"), c_white, x, y + 7, 33, 0, 1, snd_txtnoe, 6, 18, 0);
77
            break;
78
        case 30:
79
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtsus, 16, 36, 1);
80
            break;
81
        case 31:
82
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtral, 16, 36, 1);
83
            break;
84
        case 32:
85
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtlan, 16, 36, 1);
86
            break;
87
        case 33:
88
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_dadtxt, 16, 36, 1);
89
            break;
90
        case 35:
91
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtjok, 16, 36, 1);
92
            break;
93
        case 36:
94
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_nosound, 16, 36, 1);
95
            break;
96
        case 37:
97
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 3, snd_txtsus, 18, 36, 1);
98
            break;
99
        case 40:
100
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 2, snd_nosound, 8, 18, 0);
101
            break;
102
        case 41:
103
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 3, snd_nosound, 8, 18, 0);
104
            break;
105
        case 42:
106
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 2, snd_nosound, 16, 36, 1);
107
            break;
108
        case 45:
109
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtral, 16, 28, 1);
110
            extra_ja_vspace = 2;
111
            break;
112
        case 46:
113
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtlan, 16, 28, 1);
114
            extra_ja_vspace = 2;
115
            break;
116
        case 47:
117
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtsus, 16, 28, 1);
118
            extra_ja_vspace = 2;
119
            break;
120
        case 48:
121
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_dadtxt, 16, 28, 1);
122
            extra_ja_vspace = 2;
123
            break;
124
        case 50:
125
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_text, 9, 20, 0);
126
            break;
127
        case 51:
128
            var rate = langopt(10, 14);
129
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, rate, snd_text, 16, 36, 1);
130
            break;
131
        case 52:
132
            var rate = langopt(6, 4);
133
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, rate, snd_text, 16, 36, 1);
134
            break;
135
        case 53:
136
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtsus, 9, 20, 0);
137
            break;
138
        case 54:
139
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 2, snd_txtsus, 9, 20, 0);
140
            break;
141
        case 55:
142
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 1, snd_txtrud, 8, 18, 0);
143
            break;
144
        case 56:
145
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtnoe, 16, 36, 1);
146
            break;
147
        case 57:
148
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtber, 16, 36, 1);
149
            break;
150
        case 58:
151
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtq, 16, 36, 1);
152
            break;
153
        case 59:
154
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtnoe, 16, 28, 1);
155
            extra_ja_vspace = 2;
156
            break;
157
        case 60:
158
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 2, snd_txtral, 12, 20, 0);
159
            break;
160
        case 61:
161
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 2, snd_txtsus, 12, 20, 0);
162
            break;
163
        case 62:
164
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtq_2, 16, 36, 1);
165
            break;
166
        case 63:
167
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 2, snd_txtnoe, 8, 18, 0);
168
            break;
169
        case 64:
170
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 1, 2, snd_txtnoe, 8, 18, 0);
171
            break;
172
        case 65:
173
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtrx1, 16, 36, 1);
174
            break;
175
        case 66:
176
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtspam, 16, 36, 1);
177
            break;
178
        case 67:
179
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtspam2, 16, 36, 1);
180
            break;
181
        case 68:
182
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtspam, 9, 20, 0);
183
            break;
184
        case 69:
185
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtber, 9, 20, 0);
186
            extra_ja_vspace = 2;
187
            break;
188
        case 70:
189
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtq, 9, 20, 0);
190
            extra_ja_vspace = 2;
191
            break;
192
        case 71:
193
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtq, 9, 20, 0);
194
            extra_ja_vspace = 2;
195
            break;
196
        case 72:
197
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtspam2, 9, 20, 0);
198
            extra_ja_vspace = 2;
199
            break;
200
        case 74:
201
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtral, 9, 20, 0);
202
            extra_ja_vspace = 2;
203
            break;
204
        case 75:
205
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtsus, 9, 20, 0);
206
            extra_ja_vspace = 2;
207
            break;
208
        case 76:
209
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("dotumche"), c_black, x, y, 33, 0, 1, snd_txtnoe, 9, 20, 0);
210
            extra_ja_vspace = 2;
211
            break;
212
        case 77:
213
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 33, 0, 1, snd_txtber, 16, 28, 1);
214
            extra_ja_vspace = 2;
215
            break;
216
        case 78:
217
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("mainbig"), c_white, x, y, 36, 0, 1, snd_text, 16, 36, 1);
218
            break;
219
        case 666:
220
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 4, snd_nosound, 12, 20, 2);
221
            break;
222
        case 667:
223
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 2, snd_nosound, 12, 20, 2);
224
            break;
225
        case 999:
226
            scr_textsetup
scr_textsetup

function scr_textsetup(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) { myfont = arg0; mycolor = arg1; writingx = arg2; writingy = arg3; charline = arg4; shake = arg5; rate = arg6; textsound = arg7; hspace = arg8; vspace = arg9; special = arg10; colorchange = 1; xcolor = mycolor; }
(scr_84_get_font
scr_84_get_font

function scr_84_get_font(arg0) { if (!variable_global_exists("chemg_last_get_font")) global.chemg_last_get_font = ""; if (arg0 != global.chemg_last_get_font) global.chemg_last_get_font = arg0; return ds_map_find_value(global.font_map, arg0); }
("main"), c_white, x, y, 33, 0, 4, snd_txtecho, 8, 18, 3);
227
            break;
228
        default:
229
            font_set = false;
230
            break;
231
    }
232
    if (font_set && global.lang == "ja")
233
    {
234
        if (myfont == 11)
235
        {
236
            hspace = ((hspace * 26) / 16) + 1;
237
            if (vspace == 32)
238
                vspace = 36;
239
        }
240
        else if (myfont == 8)
241
        {
242
            hspace = ((hspace * 13) / 8) + 1;
243
        }
244
        else if (myfont == 6)
245
        {
246
            textscale = 0.5;
247
            hspace = ((hspace * 13) / 8) + 3;
248
        }
249
        else if (myfont == 10)
250
        {
251
            textscale = 0.5;
252
            hspace = ((hspace * 13) / 8) + 1;
253
        }
254
        else if (myfont == 7)
255
        {
256
            hspace = ((hspace * 26) / 16) + 1;
257
        }
258
        else if (myfont == 9)
259
        {
260
            hspace = ((hspace * 13) / 8) + 1;
261
        }
262
        vspace += extra_ja_vspace;
263
    }
264
}