blob: 26161c79cd26a3be6f978920172c399a8971de8a (
plain) (
tree)
|
|
// Evol functions.
// Authors:
// 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;
}
|