summaryrefslogblamecommitdiff
path: root/npc/functions/savepoint.txt
blob: 2c1ab4f694a0e7707691cda1b85790a3533d7574 (plain) (tree)
1
2
3
4
5
6
7
8
9



                
                                 

                                         
 
                    
                                                               
         
                                             





                               
           
                    
                                                          
         
                      
         
                      
         
                      
         
                                                   

         
                            

                         


           
 
 
// Evol scripts.
// Authors:
//    Reid
// Description:
//    Add new save point location

function	script	SavePoint	{

    mesn "Narrator";
    mes col(l("There is a nice place to stay beside you."), 9);
    next;
    mes col(l("What do you want 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("...", 9);
    next;
    mes col("...", 9);
    next;
    mes col("...", 9);
    next;
    mes col(l("Your position has been saved."), 9);
    next;

    savepoint @map$, @x, @y;
    set @q, getcharid(3);
    misceffect 33, @q;

L_Return:
    return;

}