summaryrefslogtreecommitdiff
path: root/npc/001-2-22/note.txt
blob: 9abaeb18619b5ec8265c8c7125ecccd2e27065a1 (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
// Evol scripts.
// Authors:
//    Vasily_Makarov
// Description:
//    

001-2-1.gat,22,33,0	script	Note	NPC_NO_SPRITE,{
    mesn;
    mesq l("This note was left by somebody.");
    next;
    mesq l("What do you want to do with it?");

    menu
        l("Read it"), L_Content,
        l("Leave it"), -;
    close;

L_Content:
    mesn;
    mes "\"" + l("Dear sister,");
    mes l("On the next days we will finally arrives at Artis");
    next;

    mes l("I will send you this letter directly when I arrive");
    mes l("Don't worry sister, I didn't forget you");
    next;

    mes l("I hope to come back at home when days will be better");
    mes l("And when we will got enought money to don't depend of anybody");

    mes l("Dearly yours, Dan") + "\"";
    close;
}