summaryrefslogblamecommitdiff
path: root/npc/000-0-0/q'onan.txt
blob: 87411f4749d3cb7eb549e514c2930be1c332e9e8 (plain) (tree)
1
2
3
4
5
                
          
                    

                               













                                             
                                



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

000-0-0.gat,25,22,0,1	script	Q'Onan	302,{

    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;

}