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
|
// Part of Blue Sage quests
// author: Jenalya
// visitors that came to see the library and are now disappointed
048-2.gat,46,44,0|script|Connor|150,
{
mes "[Connor]";
mes "\"Oh, hello. There was a big accident in the library! Most of the books were damaged or destroyed!\"";
next;
mes "\"As far as I understand it had to do with those weird slimes. They're white and blue! I've never seen slimes of that color.\"";
next;
mes "\"I was so excited to get an opportunity to study some of the rare and valuable books and now this.";
mes "I'd never have expected something like this happening in a Sages household. I thought they're so powerful and wise...\"";
close;
}
048-2.gat,28,30,0|script|Parcival|153,
{
mes "[Parcival]";
mes "\"Hello young one. Did you also come here to see the library?\"";
menu
"Nah, I'm just having a look around.",L_Close,
"Yes!", L_More;
L_More:
mes "[Parcival]";
mes "\"That's very commendable. But you'll be disappointed, there is a huge problem and the library is all upside down.";
mes "This is very annoying! I was planning this trip for months and now this!\"";
mes "He sighs.";
next;
mes "[Parcival]";
mes "\"I'll probably have to leave and come back another time. But I want to warm up first.\"";
next;
mes "\"I wonder what they did... I can still feel some distortion in the magic pattern within this mansion. I mean, it's twisted anyway, because the Sages have their houses in a shifted dimension - that's why it is so much larger in the inside than from the outside.\"";
next;
mes "\"But there's something else... Well, I've heard about the research being done here. Seems there's some very advanced magic involved.\"";
goto L_Close;
L_Close:
close;
}
|