diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-07 23:51:58 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-07 23:51:58 -0200 |
commit | 9004a6e4569dcd0cd78b1c0dbcfcc3a10efacb47 (patch) | |
tree | ba33af5a56972ffe89a90b9ba25606ac6602bf03 | |
parent | a3e728516f322405eb41e363cf6c50e0aca6e3b3 (diff) | |
download | serverdata-9004a6e4569dcd0cd78b1c0dbcfcc3a10efacb47.tar.gz serverdata-9004a6e4569dcd0cd78b1c0dbcfcc3a10efacb47.tar.bz2 serverdata-9004a6e4569dcd0cd78b1c0dbcfcc3a10efacb47.tar.xz serverdata-9004a6e4569dcd0cd78b1c0dbcfcc3a10efacb47.zip |
OnSlow: Don't open even more chatboxes on intro...
-rw-r--r-- | npc/000-0-0/sailors.txt | 4 | ||||
-rw-r--r-- | npc/002-1/arpan.txt | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/npc/000-0-0/sailors.txt b/npc/000-0-0/sailors.txt index f62661d4b..06cc0a3df 100644 --- a/npc/000-0-0/sailors.txt +++ b/npc/000-0-0/sailors.txt @@ -67,6 +67,7 @@ OnTalk: close; OnSlow: + /* setcamnpc; showavatar NPC_ELMO; mesn; @@ -75,6 +76,9 @@ OnSlow: mesn; mesc l("(Click on me to hear the conversation and advance. I am a NPC, and NPCs can be interact by clicking.)"); mesc l("(That was already explained on the intro. Read the dialogs! Important stuff can be found on them.)"); + */ + npctalk3 l("Pst! Speak lower! Otherwise we'll wake @@ up!", strcharinfo(0)); + dispbottom l("Click on Elmo or Magic Arpan to continue..."); addtimer(30000,"Elmo#sailors::OnSlow"); close; diff --git a/npc/002-1/arpan.txt b/npc/002-1/arpan.txt index 543a8594b..fbcc12ee7 100644 --- a/npc/002-1/arpan.txt +++ b/npc/002-1/arpan.txt @@ -270,6 +270,8 @@ L_EquipDone: goto L_Menu; OnSlow: + npctalk3 l("@@, do you need help? Are you lost? Click me!", strcharinfo(0)); + /* setcamnpc; showavatar NPC_MAGIC_ARPAN; mesn; @@ -277,11 +279,12 @@ OnSlow: next; mesn; mesc l("Here, come talk to me, the Magic Arpan! I'll help you get dressed."), 1; + */ addtimer(90000,"Magic Arpan::OnSlow"); close; OnInit: .sex = G_MALE; - .distance = 5; + .distance = 6; end; } |