summaryrefslogblamecommitdiff
path: root/npc/000-2-3/savepoint.txt
blob: d19117e02d289eeec60f0c13cacfffed4fa6a466 (plain) (tree)
1
2
3
4
5
6
7





                                     
                                                












                                                               
                                                          


                         
 





                                                       














                 
// Evol scripts.
// Authors:
//    Reid
// Description:
//    Fake save point in nard's room.

000-2-3.gat,28,24,0,2	script	#name	906,1,0{

    mesn "Narrator";
    mes col(l("There is a nice place to stay beside you."), 9);
    next;
    mes col(l("What do you wish to do?"), 9);
    next;

    menu
        l("Take a nap"), -,
        l("Nothing"), L_Return;

    mes " ";
    mesn "Narrator";
    mes col(l("You close your eyes a few seconds..."), 9);
    next;
    mes col(l("..."), 9);
    next;

    mesn "Nard";
    mesq l("Hey, you can't sleep here, it's my room.");

L_Return:
    close;

OnTouchFirst:
    setnpcdir 4;
    close;

OnUnTouchAll:
    setnpcdir 2;
    initnpctimer;
    close;

OnTimer5440:
    setnpcdir 4;
    stopnpctimer;
    end;

}