blob: c8efacb23f9367bfef6f682961799d48348855ee (
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
25
26
27
28
|
025-4.gat,89,21,0 script Julia 114,{
if (Rossy_Quest >= 16) goto L_End;
if (Rossy_Quest == 15) goto L_Done;
if (Rossy_Quest <= 14) goto L_Hmmm;
L_Done:
mes "[Julia]";
mes "Oh, you saved me, thank you!";
next;
mes "Here is a present for you.";
getitem "BunchOfParsley", 1;
getexp 5000, 0;
set Rossy_Quest, 16;
mes "I'm out of here now, come out from this horrible cave.";
close;
L_End:
mes "[Julia]";
mes "Come out from this horrible cave.";
close;
L_Hmmm
mes "[Julia]";
mes "Don't hurt me!";
close;
}
|