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






                                         









                                                               
            











                                                         
                            



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

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 wish to do?"), 9);
    next;

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

    mes " ";
    mesn "Narrator";
    mes col(l("You close your eyes some seconds..."), 9);
    next;
    mes col(l("..."), 9);
    next;
    mes col(l("..."), 9);
    next;
    mes col(l("..."), 9);
    next;
    mes col(l("Your position get saved."), 9);
    next;

    savepoint @map$, @x, @y;

L_Return:
    return;
}