summaryrefslogtreecommitdiff
path: root/npc/functions/openbook.txt
blob: cb1a0b116339eb2e9b35567a6d7ed51d7a36fc2a (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
// Evol functions.
// Author:
//    Reid
// Description:
//    Narrator dialogue to show the selected book.

function	script	openbook	{
    .@book_name$ = getarg(0, getvariableofnpc(.book_name$, strnpcinfo(0)));

    narrator(S_LAST_NEXT,
        l("You open a book named \"%s\".", .@book_name$),
        l("Do you want to read it?"));

    return (select("Yes.", "No.") == 1);
}

function	script	openbookshelf	{
    .@book_name$ = getarg(0, getvariableofnpc(.book_name$, strnpcinfo(0)));

    narrator(S_LAST_NEXT,
        l("You see a dust covered book on the shelf..."),
        l("The name of the book is \"%s\".", .@book_name$),
        l("Do you want to read it?"));

    return (select("Yes.", "No.") == 1);
}

function	script	openoldbook	{
    narrator S_LAST_NEXT,
        l("You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing."),
        l("The old book seems to tell about the legend of Aemil. Would you like to read it?");

    return (select("Yes.", "No.") == 1);
}