summaryrefslogtreecommitdiff
path: root/npc/000-1/lean.txt
blob: 01baf3bfa8dc83c00a2b69d21fbf958d20d89451 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Evol scripts.
// Author:
//    Reid
// Description:
//    Sailor who gives some informations to the player.

000-1.gat,79,108,0,1	script	Lean	106;2,{

    mesn;
    mesq l("Hey")+ " " + strcharinfo(0) + "."; 
    next;
    mesq l("I hope you don't mind that we used your raft to build this ramp.");
    next;
    mesq l("We usually don't stop in such splendid places, but the capt'ain lets us stay here while he writes down the location of this new island on his map!");
    next;
    mesq l("We are looking for some goods we could trade in our next destination.");
    next;
    mesq l("That's where you go as well, right?");
    next;

    menu
        l("That's right."), -,
        l("Hey, how do you know my name?"), l_Name,
        l("Wait... Where are we going?"), l_Artis;

    mes "";
    mesn;
    mesq l("If you're looking for us there, mostly all of us will be at Pedro's restaurant and in the Inn for Silvio's case...");

    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 at least twice in the conversation.");

    close;

l_Artis:
    mes "";
    mesn;
    mesq l("Artis of course!");
    next;
    mesq l("It's where every merchant ship end their road and we won't be an exception.");

    close;

}