diff options
-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: |