diff options
-rw-r--r-- | npc/000-2-1/q'onan.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/000-2-1/q'onan.txt b/npc/000-2-1/q'onan.txt index 94e38cd2..e2baa8ea 100644 --- a/npc/000-2-1/q'onan.txt +++ b/npc/000-2-1/q'onan.txt @@ -5,16 +5,18 @@ // 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..."); + npctalk "Rrrr... Pchhhh..."; close; l_Zzz: - mesq l("Zzzzzzzzzz"); + + npctalk "Zzzzzzzzz"; + close; + } |