1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Evol scripts.
// Author:
// Micksha
// Description:
// Itka, the spammy spammy little girl in Tulimshar.
// THIS IS A PLACEHOLDER!
020-1,194,175,0 script Itka NPC_GIRL_MILLY,{
speech
l("Hi there."),
l("Come to the bakery! Come to the Market! Come to Prison!"),
l("I will improve, promised. Come to the Academy! Come to Oasis!");
do
{
next;
select
l("Where is the bakery?"),
l("Where is the market?"),
l("Where is the prison?"),
l("Where is the academy?"),
l("Where is the oasis?"),
l("Why are you doing this?"),
l("Okay... Spammy little girl.");
mes "";
switch (@menu) {
case 1:
case 2:
case 3:
case 4:
case 5:
mesn;
mesq l("I don't know! %%Q");
break;
case 6:
mesn;
mesq l("To pay my studies!");
break;
default:
close;
break;
}
} while (true);
close;
OnInit:
.bodytype = BODYTYPE_2;
.distance = 4;
end;
}
|