blob: aa5abd6358c0253d1d2f3e1719ffa17b5f4db002 (
plain) (
tree)
|
|
// Evol functions.
// Authors:
// Alige
// Reid
// Description:
// Tell a random sleeping sound.
// Variables:
// .@rand = Random number between the number of "sleeping" choice.
function script asleep {
switch(rand(5)) {
case 0: npctalkonce(l("Zzzzzzzzz...")); break;
case 1: npctalkonce(l("Rrrr... Pchhhh...")); break;
case 2: npctalkonce(l("Ggrmm... Grmmmm...")); break;
case 3: npctalkonce(l("Hm... Shhhh...")); break;
default: emotion(E_SLEEPY);
}
end;
}
|