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
|
new_3-1.gat,48,79,0 script Guard 104,{
mes "[Soldier]";
mes "Protecting this place is my job. Be careful if you walk outside, there are monsters harder than anything you find here.";
next;
menu
"What kind of monsters?",L_Exp,
"Nevermind",L_Nev;
L_Exp:
mes "Actually, in my whole career, I've only seen maggots and scorpions. So please don't ask me about monsters.";
next;
mes "This place is actually pretty safe.";
close;
L_Nev:
mes "Careful!";
close;
}
new_3-1.gat,40,79,0 script SGuard 104,{
mes "[Soldier]";
mes "ZzzZzzZ...";
next;
mes "Heh, what? I wasn't sleeping, I just had my eyes closed!";
close;
}
|