summaryrefslogtreecommitdiff
path: root/npc/000-1/sapartan.txt
blob: 0f5b84611fd3ce00980a3758d209cb1cbac7b5e5 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Evol scripts.
// Author:
//    Hal9000
// Description:
//    Friend of Max, he gives some information on combat system.

000-1.gat,74,111,0,1	script	Sapartan	314;2,{

    mesn;
    mesq l("Hey Max, it's @@!", strcharinfo(0));
    next;

    setcamnpc "Max";
    mesn "Max";
    mesq lg("@@? Welcome my dear!", strcharinfo(0));
    next;
    mesq lg("Last time I saw you, you were lost in the sea on your raft.");
    next;
    restorecam;

    mesn;
    mesq g(l("True but now she seems pretty fine! Am I right?"),
           l("True but now he seems pretty fine! Am I right?"));
    next;

    menu
        l("Thank you sir for you nice words. I am feeling better now."), -,
        lg("I'm still a bit weak at the moment. We should probably talk later."), l_Quit;

    mes "";
    mesn;
    mesq l("You can now stay with your new friends and enjoy the warm sand of this little island.");
    next;
    mesq l("But remember that not every place in this world is peaceful and safe nowadays. Even the white shores you are walking on can hide some dangerous beings.");
    next;

    menu
        l("What danger?! Where?!"), -;

    setcamnpc "Max";
    mes "";
    mesn "Max";
    mesq lg("Come on, Sap! You are scaring our guest with your stories.");
    next;
    mesq g(l("I'm sure she will soon be able to fight all of the creatures living here without any problem."),
           l("I'm sure he will soon be able to fight all of the creatures living here without any problem."));
    next;

    restorecam;

    mes "";
    mesn;
    mesq lg("Maybe... But I prefer having well-trained people around me when it comes to fight against dangerous creatures. Do you already feel expert on how you fight enemies?");
    next;

    menu
        l("No, I don't, but I would like to know more about that."), -,
        l("Well... I've only killed some little pious in the ship, that's all."), -,
        l("Yes, I feel strong enough for dangerous combats!"), l_Quit;

    mes "";
    mesn;
    mesq l("Then I can give you some tips about fights.");
    next;
    mesq l("The first thing you should do is to evaluate your enemy.");
    next;
    mesq l("You can easily see if a monster is easy to kill or just impossible to defeat. Do not try against creatures that are way more powerful than you... You'd be risking your life for nothing.");
    next;
    mesq l("Secondly, choose wisely which weapon is suited for you. Some people like to face their enemies closely with a heavy axe, some others prefer to attack from a distance with a bow for example.");
    next;

    menu
        l("Yeah, well what's the difference?"), -;

    mes "";
    mesn;
    mesq l("On one hand, ranged weapons are generally weaker than melee ones, but it obviously depends on the level of the weapon. On the other hand, you attack from a safer position.");
    next;
    mesq l("After choosing your weapon, you also need to know how to use it.");
    next;
    mesq l("You can attack a monster by clicking directly on it. Once selected, you may notice a bar near your target showing you how much health it has left.");
    next;
    mesq l("You can also attack an enemy from your keyboard pressing the 'A' key to select it, and the 'Ctrl' key to attack it, this of course works if you didn't change your keyboard keys yet.");
    next;

    menu
        l("Thank you for your tricks. I am going to try them now!"), -,
        l("I already know everything. Bye."), l_Quit;

    mes "";
    mesn;
    mesq l("You're welcome. If you can't remember something, just come back here!");
    next;

    close;

l_Quit:
    close;

}