diff options
author | Alige <gauvain.dauchy@free.fr> | 2016-06-19 19:35:16 +0200 |
---|---|---|
committer | Alige <gauvain.dauchy@free.fr> | 2016-06-19 19:40:05 +0200 |
commit | 70c570830b232e74ceb233948e1cf1a4a386f1e0 (patch) | |
tree | 3c1970e00747bf6b864c7ecf6264f12ef15c063b | |
parent | c6a55b06f6f56a5c3113b96af02d9d8d10b6d636 (diff) | |
download | serverdata-70c570830b232e74ceb233948e1cf1a4a386f1e0.tar.gz serverdata-70c570830b232e74ceb233948e1cf1a4a386f1e0.tar.bz2 serverdata-70c570830b232e74ceb233948e1cf1a4a386f1e0.tar.xz serverdata-70c570830b232e74ceb233948e1cf1a4a386f1e0.zip |
Added random number of sentences to carmie.
-rw-r--r-- | npc/001-1/carmie.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/npc/001-1/carmie.txt b/npc/001-1/carmie.txt index 02d0dfdc..14ded9a3 100644 --- a/npc/001-1/carmie.txt +++ b/npc/001-1/carmie.txt @@ -1,11 +1,19 @@ // Evol scripts. -// Author: +// Authors: +// Alige // Reid // Description: // Carmie, walking NPC of the legion of Aemil on the center part of Artis. +// Variables: +// .@rand = Random number of sentences. 001-1,86,66,0 script Carmie#001-1 NPC_RAIJIN_FEMALE_LEGION_ARTIS,{ - npctalk3 l("I'm a little busy right now; not in the mood to chat."); + + .@rand = rand(3); + if (.@rand == 0) npctalk3 l("I'm a little busy right now."); + else if (.@rand == 1) npctalk3 l("Not in the mood to chat."); + else npctalk3 l("Please move out of my way."); + close; OnTimer1000: |