|
1
|
if (init == 0)
|
|
2
|
{
|
|
3
|
var spacelocation = 0;
|
|
4
|
var linelength = 0;
|
|
5
|
var stringlength = string_length(mystring);
|
|
6
|
var savestring = mystring;
|
|
7
|
var autowrapchar = 27;
|
|
8
|
var failsafe = 0;
|
|
9
|
for (var i = 1; i < stringlength; i++)
|
|
10
|
{
|
|
11
|
var thischar = string_char_at(savestring, i);
|
|
12
|
if (thischar == " ")
|
|
13
|
spacelocation = i;
|
|
14
|
linelength++;
|
|
15
|
if (linelength >= autowrapchar && spacelocation >= 1)
|
|
16
|
{
|
|
17
|
mystring = string_insert("\n", mystring, spacelocation);
|
|
18
|
myboxsize++;
|
|
19
|
mystring = string_delete(mystring, spacelocation + 1, 1);
|
|
20
|
linelength = 0;
|
|
21
|
i = spacelocation;
|
|
22
|
spacelocation = -1;
|
|
23
|
failsafe++;
|
|
24
|
if (failsafe >= 50)
|
|
25
|
break;
|
|
26
|
}
|
|
27
|
}
|
|
28
|
if (customlife != -1)
|
|
29
|
boxlife = customlife;
|
|
30
|
scr_speakerscr_speaker
function scr_speaker(arg0)
{
_speaker = arg0;
global.typer = 5;
if (global.darkzone == 1)
global.typer = 6;
if (global.fighting == 1)
global.typer = 4;
global.fc = 0;
global.fe = 0;
if (_speaker == "silent" && global.darkzone == 0)
global.typer = 2;
if (_speaker == "silent" && global.darkzone == 1)
global.typer = 36;
if (_speaker == "balloon" || _speaker == "enemy")
global.typer = 50;
if (_speaker == "sans")
{
global.typer = 14;
global.fc = 6;
}
if (_speaker == "undyne" || _speaker == "und")
{
global.typer = 17;
global.fc = 9;
}
if (_speaker == "temmie" || _speaker == "tem")
global.typer = 21;
if (_speaker == "jevil")
global.typer = 35;
if (_speaker == "catti")
global.fc = 13;
if (_speaker == "jockington" || _speaker == "joc")
global.fc = 14;
if (_speaker == "catty" || _speaker == "caddy")
global.fc = 16;
if (_speaker == "bratty" || _speaker == "bra")
global.fc = 17;
if (_speaker == "rouxls" || _speaker == "rou")
global.fc = 18;
if (_speaker == "burgerpants" || _speaker == "bur")
global.fc = 19;
if (_speaker == "spamton")
{
if (global.fighting == 0)
global.typer = 66;
else
global.typer = 68;
}
if (_speaker == "sneo")
global.typer = 67;
if (_speaker == "tenna")
{
global.typer = 80;
if (global.fighting == 1)
global.typer = 81;
}
if (_speaker == "susie" || _speaker == "sus")
{
global.fc = 1;
global.typer = 10;
if (global.darkzone == 1)
{
global.typer = 30;
if (global.fighting == 1)
global.typer = 47;
}
}
if (_speaker == "ralsei" || _speaker == "ral")
{
global.fc = 2;
global.typer = 31;
if (global.fighting == 1)
global.typer = 45;
if (global.flag[30 ralsei_hat_state] == 1)
global.typer = 6;
}
if (_speaker == "noelle" || _speaker == "noe")
{
global.fc = 3;
if (global.darkzone == 0)
global.typer = 12;
else
global.typer = 56;
if (global.fighting == 1)
global.typer = 59;
}
if (_speaker == "toriel" || _speaker == "tor")
{
global.fc = 4;
global.typer = 7;
}
if (_speaker == "asgore" || _speaker == "asg")
{
global.fc = 10;
global.typer = 18;
}
if (_speaker == "king" || _speaker == "kin")
{
global.fc = 20;
global.typer = 33;
... ("noone");
|
|
31
|
global.typer = 80;
|
|
32
|
msgset(0, mystring);
|
|
33
|
d = d_make();
|
|
34
|
d.boxheight = myboxsize;
|
|
35
|
d.side = side;
|
|
36
|
d.skippable = 1;
|
|
37
|
d.zurasu = 0;
|
|
38
|
init = 1;
|
|
39
|
}
|
|
40
|
timer++;
|
|
41
|
if (timer >= boxlife)
|
|
42
|
instance_destroy();
|