summaryrefslogtreecommitdiff
path: root/npc/000-1/jalad.txt
blob: 17d143b1eea7decf1c01f0c139ddc77c47f620c9 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Evol scripts.
// Author:
//    Reid
// Description:
//    Sailor part of the Gugli quest.
//    Plushroom box.

000-1.gat,46,35,0,1	script	Jalad	110;2,{

    set @q, getq(ShipQuests_Jalad);
    if (@q == 1) goto l_CallFunc;

// Some dialogues will be here.
    setq ShipQuests_Jalad, 1;
    getitem "PlushroomBox", 1;
// And here too.

l_CallFunc:
    callfunc "SailorFood";

    menu
        rif(getq(ShipQuests_Jalad) == 1, l("I'm still busy, I need to find the other sailors.")), -,
        l("What's this fruit?"), OnAquada;

    mes "";
    mesn;
    mesq l("Who are you searching?");
    next;

    menu
        rif(getq(ShipQuests_Ale) == 0, l("Ale.")), l_Ale,
        rif(getq(ShipQuests_Astapolos) == 0, l("Astapolos.")), l_Bottom,
        rif(getq(ShipQuests_Gulukan) == 0, l("Gulukan.")), l_Bottom,
        rif(getq(ShipQuests_QMuller) == 0, l("QMuller.")), l_Bottom,
        rif(getq(ShipQuests_Tibbo) == 0, l("Tibbo.")), l_Bottom,
        l("Nobody."), -;

    close;

l_Bottom:
    mes "";
    mesn;
    mesq l("I've seen him at the bottom of the island, have a look around.");

    close;

l_Ale:
    setcamnpc "Ale";

    next;
    mesn;
    mesq l("Look, there he is!");
    next;

    restorecam;
    close;

OnPlushroom:
    mes "";
    mesn;
    mesq l("A @@? There're plenty on this island!", getitemlink("Plushroom"));
    next;
    mesq l("It's a kind of mushroom. We call it like that because of it's taste, just like a marshmallow. It also has this name because of it's appearance. It looks like a plush!.");
    next;
    mesq l("There are some groups of these @@'s all around this island. Just pick some and have a try.", getitemlink("Plushroom"));

    close;

}