summaryrefslogtreecommitdiff
path: root/npc/002-3/note.txt
blob: 310b39d0fee141626687f92ca8390411f4f34500 (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
// 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("I love you, Silvia! - Swezanne"),
        l("Other things are written but are not legible anymore.");

    close;

OnInit:
    .distance = 2;
    end;
}