summaryrefslogblamecommitdiff
path: root/npc/items/oldbook.txt
blob: 5cee903fa9fb8b273ff38fb67d93f3cfad9b7d5d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                
           
           

               
                         





                                           









                                                                                                                                                         
 



                                                                                                                                            
         
                                                                                       
         
                                                                  
         
                                                                                                       
         
                                                                                                                                  
         
                                                                                                                                   
         
                                                                                                             
         
                                                                                               
         
                                                                                                                         
         
                                                                                               
         
                                                                                                                                                    
         
                                                                             
         
                                                                                                                                      
         


                                                                                                  


          
 
// Evol scripts.
// Authors:
//    Alige
//    Reid
// Description:
//    Reads the Old Book.

000-2-1.gat,0,0,1	script	OldBook	0,{

OnUse:
    getitem 514, 1, 1;
    mesn "Narrator";
    mes col(l("You open the book, but it seems that sea water and age has get reason of it, some page aren't readable and some others are missing."), 9);
    next;
    mes col(l("It seems to be a book about the legend of Aemil, do you want to read it?"), 9);
    next;

    menu
        l("Yes."), l_Read,
        l("No."), -;

    close;

l_Read:
    mes l("Aemil is a magnificent world unknown to us all.");
    next;
    mes l("Its inhabitants did not know any kind of horror and in peace they lived as the earth gave them everything they needed to live.");
    next;
    mes l("However, drought came with summers while winters became colder than ever.");
    next;
    mes l("Therefore, starvation stroke on the people of Aemil.");
    next;
    mes l("Rules began to rise in order to have a peaceful society. This did not work well for long.");
    next;
    mes l("People started to steal from each other to survive. As cities grew, needs did too. Wars for fertile lands then rose.");
    next;
    mes l("New technologies helped the slaughter instead of establishing peace. At some point, two different rivals were formed.");
    next;
    mes l("Their leaders then came to the conclusion that an alliance was the only way they could survive.");
    next;
    mes l("The great people of Aemil split up into three groups when they reached the coast.");
    next;
    mes l("Each of the groups was ordered to sail in a different direction to find a new, suitable land where to live.");
    next;
    mes l("As they sailed on Oceania, great waters of Aemil, one of the groups found a land.");
    next;
    mes l("Even though they did not hear anything about the other groups, they decided to start a new life on this land, full of harmful animals.");
    next;
    mes l("This new continent, in fact an archipelago, was called Andorra.");
    next;
    mes l("A great city, now the capital of these islands, called Esperia, rose on the single island, Aurora, where everyone lived.");
    next;

    mesn "Narrator";
    mes col(l("The end and the sign up is impossible to read, and some pages seems missing."), 9);

    close;

}