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
50
51
52
53
54
55
56
57
58
59
60
|
// Evol scripts.
// Authors:
// Reid
// Description:
// Random NPC searching some foods on the map.
000-1.gat,27,34,0,1 script Astapolos 107,{
mesn;
mesq l("Hey")+ " " + strcharinfo(0) + ".";
next;
menu
l("How are things going?"), -,
l("How do you know my name?"), l_Name,
l("Who are you?"), l_Who,
l("What's the deal with these Aquada?"), l_Aquada;
mes "";
mesn;
mesq l("A Sunny and hot day,");
next;
mesq l("A Quiet place,");
next;
mesq l("A Ground!");
next;
mesq l("I hope that answers your question...") + " " + l("Eheh!");
close;
l_Name:
mes "";
mesn;
mesq l("A few moments ago, I heard your conversation with Darlin.");
next;
mesq l("Oh, not everything, don't worry, but your name came up twice in the conversation.");
close;
l_Who:
mes "";
mesn;
mesq l("My name is Astapolos, Q'Muller and I joined Nard's crew a few years ago when it was just a little merchant ship.");
next;
mesq l("At this time, we were selling crab's food on our old mushroom island.");
next;
mesq l("And now I'm a sailor, as you can see!");
close;
l_Aquada:
mes "";
mesn;
mesq l("This is a sea fruit, but some sea monsters may have them as well.");
next;
mesq l("You should try to kill some Tortugas, or some Croc if you're strong enough.");
close;
}
|