summaryrefslogblamecommitdiff
path: root/npc/functions/villagertalk.txt
blob: 85ab4fca3148d7ce38c2e54740bf633d418be9d0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                  
           
          
                   
               
               
                                                         


                                         
                          
     

                          
                        
         
                          
                  
         
                             
         
                               

                    



                                   

               
     
 
                    
     
               


                            

                                                              
               

                                         
               


                                                                
                            
                  
     


           
// Evol functions.
// Authors:
//    Reid
//    Qwerty Dragon
//    Akko Teru
// Description:
//    Tell a random sentence. || There ought to be a law!

function	script	villagertalk	{

    function darn_or_smile
    {
        .@darn = rand(42);

        if (.@darn < 26)
        {
            emotion E_JOY;
            hello;
        }
        else if (.@darn > 26)
        {
            emotion E_LOOKAWAY;
            goodbye;
        }
        else
        {
            npctalk3 l("Stop it!");
        }

        return;
    }

    switch (rand(4))
    {
        case 0:
            darn_or_smile();
            break;
        case 1:
            npctalk3 l("It is a sunny day, don't you think?");
            break;
        case 2:
            npctalk3 l("Go fly a kite.");
            break;
        case 3:
            npctalk3 l("I just want to live my life in peace.");
            break;
        default:
            emotion E_HAPPY;
            break;
    }

    return;
}