summaryrefslogblamecommitdiff
path: root/npc/functions/hello.txt
blob: 162a953e3c6f7407a8f339c10c468c611dd6f167 (plain) (tree)






















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

function	script	hello	{

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

    return;
}