summaryrefslogtreecommitdiff
path: root/npc/000-0-1/narrator.txt
blob: 5cfff139a80fd23175950bf51d7d1179f4ca70e1 (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.
// Author:
//    Reid
// Description:
//    Narrator explain to the player that he is dreaming.
// Variable:
//    0    General_Narrator
// Values:
//    0    PC is in the game introduction.
//    1    PC arrived Artis.

000-0-1,25,28,0	script	Narrator#000-0-1	NPC_NARRATOR,{

    narrator 4,
        l("Look, we finally meet."),
        l("I think that you already understood, you are asleep."),
        l("The ship left the island, finally, Nard's crew is heading to Artis, and you are onboard don't worry."),
        l("I'm sure that you wonder a lot of things, you will discover them soon, don't you worry..."),
        l("Ah, seagulls, we are arriving..."),
        l("..."),
        l("Wake up!");

    if (countitemcolor(718) == 1) delitem 718, 1;
    setq General_Narrator, 1;
    savepoint "001-2-22.gat", 50, 38;
    warp "001-2-22.gat", 50, 38;
    closedialog;
    close;

OnInit:
    .sex = G_OTHER;
    end;
}