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





                                      
                    













                                           
// Evol functions.
// Author:
//    Reid
// Description:
//    Tell a random greeting sentence.

function	script	hello	{

    switch (rand(3))
    {
        case 0:
            npctalk3 l("Heya!");
            break;
        case 1:
            npctalk3 l("Hi.");
            break;
        case 2:
            npctalk3 l("Nice day to you.");
            break;
    }

    return;
}