summaryrefslogtreecommitdiff
path: root/npc/functions/asleep.txt
blob: 966e3c45734f8757d0add1d734c26fff7d2c5b5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Evol functions.
// Authors:
//    Alige
//    Reid
// Description:
//    Tell a random sleeping sound.
// Variables:
//    @rand = Random number between the number of "sleeping" choice.

function	script	Asleep	{

    set @rand, rand(2);
    if (@rand == 0) npctalk3 l("Zzzzzzzzz...");
    if (@rand == 1) npctalk3 l("Rrrr... Pchhhh...");
    if (@rand == 2) npctalk3 l("Ggrmm... Grmmmm...");

}