summaryrefslogtreecommitdiff
path: root/npc/003-1/ninathetraveler.txt
blob: 921344691310055b4df2d3a142ef1e0fcb6b34fc (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Author:
//    Saulc

003-1,56,143,0	script	Nina The Traveler	NPC_MONA,{

    .cake = CherryCake;
    .reward = FancyHat;
    
    function quest_completed{
        speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
            l("It was so tasty, I can't eat anything more... Thank you.");
            close;
    }

    function quest_open {
        if (countitem(.cake) > 0)
        {
            speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
                l("You brought me Cherry Cake! Here is your @@, as promised.",getitemlink(.reward));
            delitem .cake,1;
            getitem .reward,1;
            setq TulimsharQuest_Sarah, 1;
            close;
        }
        else 
        {
            speech S_FIRST_BLANK_LINE,
                l("Sorry, that is not the cake I love.");
            close;
        }
    }

    function quest_started {
        speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
            l("Oh, Welcome then.");
        speech S_LAST_NEXT,
            l("Can you bring me a piece of Cherry Cake? Pretty please?");
        do
        {
        select
            l("Here is it!"),
            menuaction(l("Quit"));

        switch (@menu)
        {
            case 1:
                quest_open;
                break;
        }
    } while (@menu != 2);
    }
   
    do
    {
        .@chest = getq(TulimsharQuest_Sarah);
        if (.@chest == 1)
            goto quest_completed;
        select
            rif(.@chest == 0,
            l("Hello, I'm new here! Can I help you?")),
            menuaction(l("Quit"));

        switch (@menu)
        {
            case 1:
                quest_started;
                break;
        }
    } while (@menu != 2);

    closedialog;
    goodbye;
    close;

OnInit:
    .sex = G_FEMALE;
    .distance = 3;
    end;
}