diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-02-28 16:45:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-02-28 16:45:08 -0300 |
commit | e95caa2a9ed5fd13a23d197637d134f8ef92304d (patch) | |
tree | 603cf7c2e590363c0de979671de6acf2785ee223 | |
parent | d9b9a449cb0ea6b75c3258aa8af39c194787faa6 (diff) | |
download | serverdata-jesusalva/mona.tar.gz serverdata-jesusalva/mona.tar.bz2 serverdata-jesusalva/mona.tar.xz serverdata-jesusalva/mona.zip |
Update manhole1jesusalva/mona
-rw-r--r-- | npc/001-1/manhole.txt | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/npc/001-1/manhole.txt b/npc/001-1/manhole.txt index 87575e7e..87185ddb 100644 --- a/npc/001-1/manhole.txt +++ b/npc/001-1/manhole.txt @@ -1,5 +1,6 @@ // Evol scripts. // Author: +// Jesusalva // Reid // Description: // A manhole near Mona's house. @@ -11,17 +12,13 @@ 001-1,152,52,0 script #manhole1-001-1 NPC_NO_SPRITE,{ - if (getq(ArtisQuests_MonaDad) < 1) { - end; - } - - narrator(S_LAST_BLANK_LINE | S_LAST_NEXT, - l("You hear some creeping and crawling sounds from the murkiness below."), - l("..."), - l("Do you want to enter in sewer?")); - + .@i=manhole_interact("001-3-0"); closeclientdialog(); - if (askyesno() == 1) slide_or_warp("001-3-0", 152, 56); + if (.@i == -1) { + slide_or_warp("001-3-0", 152, 56); + } else if (.@i == TrainingArrow || .@i == WoodenBow) { + npctalk3 l("(You hear a faint sound in distance, but can't say what sound it was.)"); + } close; OnInit: @@ -37,7 +34,7 @@ OnInit: if (.@i == -1) { slide_or_warp("001-3-0", 196, 36); } else if (.@i == TrainingArrow || .@i == WoodenBow) { - npctalk3 l("Mundane: Hey! Is someone there? Please, help, it's so dark down here!"); + npctalk3 l("???: Hey! Is someone there? Please, help, it's so dark down here!"); } close; |