summaryrefslogtreecommitdiff
path: root/npc/000-2-1/q'onan.txt
blob: 6827f0f11c12c48a5dd113bfd227e3dc26e9961a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Evol scripts.
// Author:
//    Vasily_Makarov
// Description:
//    Sleeping and snoring NPC.

000-2-1.gat,53,38,0,1	script	Q'Onan	302;2,{

    mesn;

    set @q, rand(2);
    if (@q == 0) goto l_Zzz;

    mesq l("Rrrr... Pchhhh...");

    close;

l_Zzz:
    mesq l("Zzzzzzzzzz");
    close;

}