summaryrefslogblamecommitdiff
path: root/npc/001-2-22/note.txt
blob: 3a4e2fa85bd434ff976dd0cd6aeeaf1d5b1e92e1 (plain) (tree)
1
2
3
4
5
6
7
                
          



                    
                                                       





                                              

                                 




                                 
                                                                    

         

                                                              

         

                                                                                       
 
                                          

          
// Evol scripts.
// Author:
//    Vasily_Makarov
// Description:
//    

001-2-1.gat,22,33,0	script	Note	NPC_NO_SPRITE,{
    mesn;
    mesq l("This note was left by somebody.");
    next;
    mesq l("What do you want to do with it?");

    menu
        l("Read it."), L_Content,
        l("Leave it."), -;
    close;

L_Content:
    mesn;
    mes "\"" + l("Dear sister,");
    mes l("During the next few days, we will finally reach Artis.");
    next;

    mes l("I will send you this letter as soon as I arrive.");
    mes l("Don't worry sister, I didn't forget you.");
    next;

    mes l("I would like to come back home when the days are better.");
    mes l("And when we have enough money for ourselves without needing anybody else.");

    mes l("Sincerely yours, Dan.") + "\"";
    close;
}