diff options
-rw-r--r-- | npc/000-0-0/sailors.txt | 10 | ||||
-rw-r--r-- | npc/000-0/sailors.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/npc/000-0-0/sailors.txt b/npc/000-0-0/sailors.txt index fc486055c..f2d68a78b 100644 --- a/npc/000-0-0/sailors.txt +++ b/npc/000-0-0/sailors.txt @@ -13,6 +13,7 @@ 000-0-0,26,23,0 script Elmo#sailors NPC_ELMO,{ OnTalk: + deltimer("Elmo#sailors::OnSlow"); setcamnpc; showavatar NPC_ELMO; mesn "Elmo"; @@ -73,6 +74,15 @@ OnTalk: closedialog; close; +OnSlow: + mesn; + mesc l("Pst, speak lower, @@ may hear us...", strcharinfo(0)); + next; + mesn; + mesc l("(Click on me to hear the conversation and advance. I am a NPC, and NPCs can be interact by clicking.)"); + addtimer(15000,"Elmo#sailors::OnSlow"); + close; + OnInit: .sex = G_MALE; end; diff --git a/npc/000-0/sailors.txt b/npc/000-0/sailors.txt index 8d004e142..eec439693 100644 --- a/npc/000-0/sailors.txt +++ b/npc/000-0/sailors.txt @@ -80,6 +80,7 @@ OnTouch: mesc l("Click on the NPCs (Non-Player Characters) around you to continue the introduction."); next; + addtimer(15000,"Elmo#sailors::OnSlow"); warp "000-0-0", 26, 28; closedialog; |