diff options
-rw-r--r-- | npc/000-2-1/devis.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/000-2-1/devis.txt b/npc/000-2-1/devis.txt index f6d872a0..06ed168d 100644 --- a/npc/000-2-1/devis.txt +++ b/npc/000-2-1/devis.txt @@ -6,19 +6,19 @@ // Sleeping and grumbling NPC. 000-2-1.gat,32,38,0,1 script Devis 310;2,{ - mesn; + set @q, rand(2); if (@q == 0) goto l_Zzz; goto l_Grm; l_Zzz: - mes l("Zzzzzzzzzz"); + npctalk "Zzzzzzzzz"; close; l_Grm: - mes l("Ggrmm... Grmmmm..."); + npctalk "Ggrmm... Grmmmm..."; close; } |