summaryrefslogblamecommitdiff
path: root/npc/000-2-1/q'onan.txt
blob: 43693b09852205d52660927eeb22395a42c0642a (plain) (tree)
1
2
3
4
5
6
7
                
          
                    

                                
 
                                               
















                             
// Evol scripts.
// Author:
//    Vasily_Makarov
// Description:
//    Sleeping and snorring NPC.

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

    mesn;

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

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

l_Snoring:
    mesq l("Rrrr pchhhh...");

    close;

}