summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/001-1/manhole.txt19
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;