From 20df2abc1aca00d6aa5dc78347133890f36b32f3 Mon Sep 17 00:00:00 2001 From: Saulc Date: Sat, 13 Jan 2018 20:50:42 +0100 Subject: Initial commit --- npc/001-1/manhole.txt | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 npc/001-1/manhole.txt (limited to 'npc/001-1/manhole.txt') diff --git a/npc/001-1/manhole.txt b/npc/001-1/manhole.txt new file mode 100644 index 000000000..f2bae5f09 --- /dev/null +++ b/npc/001-1/manhole.txt @@ -0,0 +1,56 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// A manhole near Mona's house. +// Variable: +// ArtisQuests_MonaDad +// Quest states: +// 0 - Quest not started +// 1 - Mona explained that her dad was missing + +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?")); + + if (askyesno() == 1) { + cwarp("001-3-0", 152, 56); + } + + bye; + +OnInit: + .sex = G_OTHER; + .distance = 1; + end; +} + +001-1,196,35,0 script #manhole2-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?")); + + if (askyesno() == 1) { + cwarp("001-3-0", 196, 36); + } + + bye; + +OnInit: + .sex = G_OTHER; + .distance = 1; + end; +} -- cgit v1.2.3-60-g2f50