blob: f940a3b025eda3ce1fec4d12a7d9c09d088106ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Evol functions.
// Authors:
// Alige
// Reid
// Description:
// Tell a random sleeping sound.
// Variables:
// .@rand = Random number between the number of "sleeping" choice.
function script asleep {
.@rand = rand(3);
if (.@rand == 0) npctalk3 l("Yum yummm... Pumpkins...");
if (.@rand == 1) npctalk3 l("Pumpkins... Don't bite... me...");
if (.@rand == 2) npctalk3 l("Ggrmm... Grmmmm...");
if (.@rand == 3) npctalk3 l("Hm...");
close;
}
|