summaryrefslogtreecommitdiff
path: root/npc/002-3/note.txt
blob: 32cdf4d157e3f0442dedff6a07aa0a94b7a8c8a3 (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
// TMW-2 Script.
// Evol scripts.
// Authors:
//    gumi
//    Qwerty Dragon
//    Reid
//    WildX
//    Jesusalva
// Description:
//    A small note presenting the rules and game-world release notes of TMW-2.

002-3,40,25,0	script	Note#johanne	NPC_PAPER_NOTE,{
    narrator S_LAST_NEXT,
            l("The La Johanne always have interesting notes.");

    do {
        select
            l("Read the News."),
            l("Read the Rules."),
            rif($EVENT$ != "", l("Event Information")),
            l("Leave.");

        switch (@menu) {
            case 1:
                GameNews();
                break;
            case 2:
                GameRules(8 | 4);
                break;
            case 3:
                EventHelp();
                break;

        }
    } while (@menu != 4);


    narrator S_NO_NPC_NAME,
        l("Following these lines are some other writings on this paper."),
        l("Do not give your password to anybody! Keep it secret and try not to use the same one anywhere else in the future. - Juliet"),
        l("People from the press always know what is happening in the world. Talk to them to learn about the latest news! - Jerican from the Press"),
        l("I love you, Silvia! - Swezanne"),
        (!rand2(50) ? ("\"Come meager fire, and devastate spot!\" "+l("-- Grandmaster")) : ""),
        l("Other things are written but are not legible anymore.");

    close;

OnInit:
    .distance = 2;
    end;
}