summaryrefslogtreecommitdiff
path: root/npc/002-3/note.txt
blob: 25dcc9b879beeba4176f9355631514567ab7e136 (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 Rules."),
            l("Read the News."),
            rif($EVENT$ != "", l("Event Information")),
            l("Leave.");

        switch (@menu) {
            case 1:
                GameRules(8 | 4);
                break;
            case 2:
                GameNews();
                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 the password of your room to anybody! Keep it secret and try not to use the same one in any other room 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;
}