blob: 6c532b62bff6cb14a6d42a1d30d267c4a63bad47 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// A man in the magic school
024-2.gat,33,24,0|script|#Tyer_Trigger|127,0,1
{
callfunc "MorganState";
if (@morgan >= 4)
goto L_Close;
mes "[Tyer]";
mes "\"You're not allowed to go in there.\"";
menu
"What do you mean I'm not allowed to go in there?", L_Explain,
"Ah, right.", L_Close;
L_Explain:
mes "[Tyer]";
mes "\"Access to those areas are for students of magic only.\"";
next;
mes "\"That barrier was made to keep those that are not students out.\"";
goto L_Close;
L_Close:
close;
}
|