diff options
author | Alige <gauvain.dauchy@free.fr> | 2016-06-19 20:05:28 +0200 |
---|---|---|
committer | Alige <gauvain.dauchy@free.fr> | 2016-06-19 20:05:28 +0200 |
commit | 38e2112581340e83107fb61f69967be592e87752 (patch) | |
tree | 25ef091b4f32dfedb8804a776401892f7c5e941b | |
parent | 70c570830b232e74ceb233948e1cf1a4a386f1e0 (diff) | |
download | serverdata-38e2112581340e83107fb61f69967be592e87752.tar.gz serverdata-38e2112581340e83107fb61f69967be592e87752.tar.bz2 serverdata-38e2112581340e83107fb61f69967be592e87752.tar.xz serverdata-38e2112581340e83107fb61f69967be592e87752.zip |
Added more 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 14ded9a3..ec95c054 100644 --- a/npc/001-1/carmie.txt +++ b/npc/001-1/carmie.txt @@ -9,10 +9,18 @@ 001-1,86,66,0 script Carmie#001-1 NPC_RAIJIN_FEMALE_LEGION_ARTIS,{ - .@rand = rand(3); + .@rand = rand(11); 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."); + else if (.@rand == 2) npctalk3 l("Move kid."); + else if (.@rand == 3) npctalk3 l("Don't distract me, I have to stay alert."); + else if (.@rand == 4) npctalk3 l("Give me some space."); + else if (.@rand == 5) npctalk3 l("Can you please go away?"); + else if (.@rand == 6) npctalk3 l("Can't talk right now, i'm on patrol duty."); + else if (.@rand == 7) npctalk3 l("What you looking at?!"); + else if (.@rand == 8) npctalk3 l("I can't stay here and talk all day. I have a job to do."); + else if (.@rand == 9) npctalk3 lg("Keep moving girl.", "Keep moving boy."); + else npctalk3 l("Out of my way."); close; |