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

function	script	hello	{

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

    return;
}