diff options
author | Hal9000 <miglietta.francesco@gmail.com> | 2013-03-06 19:42:03 +0100 |
---|---|---|
committer | Hal9000 <miglietta.francesco@gmail.com> | 2013-03-06 19:42:03 +0100 |
commit | e70eaf7e2630e33a36e38a657495b5eb46f0b072 (patch) | |
tree | 5115dc299dcab1cd7d0534cf387b5e8d1108a860 | |
parent | dae27a43dd80cb2c810ec175c8c22bf7ace93afd (diff) | |
download | clientdata-e70eaf7e2630e33a36e38a657495b5eb46f0b072.tar.gz clientdata-e70eaf7e2630e33a36e38a657495b5eb46f0b072.tar.bz2 clientdata-e70eaf7e2630e33a36e38a657495b5eb46f0b072.tar.xz clientdata-e70eaf7e2630e33a36e38a657495b5eb46f0b072.zip |
NPC dialogue revamp. Devis script reviewed.
-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; } |