summaryrefslogblamecommitdiff
path: root/npc/003-1/ninathetraveler.txt
blob: 31180615df8e8d49f568c367d391d9559095e935 (plain) (tree)
1
2
3
4


           
                                                            











































































                                                                                                    
// Author:
//    Saulc

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

    .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 it's not the cake i love.");
            close;
        }
    }

    function quest_started {
        speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
            l("Oh Welcoem 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 there, can i help you ?")),
            menuaction(l("Quit"));

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

    closedialog;
    goodbye;
    close;

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