summaryrefslogtreecommitdiff
path: root/npc/re/warps
diff options
context:
space:
mode:
authorStreusel <advance_me@hotmail.de>2013-03-20 21:39:46 -0800
committerStreusel <advance_me@hotmail.de>2013-03-20 21:39:46 -0800
commit4c79f825b0de36021af8de337e34b44835d363eb (patch)
tree2d60616ae20ae679991b6524461e0fb0d52acc2b /npc/re/warps
parente29d30559c862ddcdffcd9f76d24c5deb4c110d4 (diff)
downloadhercules-4c79f825b0de36021af8de337e34b44835d363eb.tar.gz
hercules-4c79f825b0de36021af8de337e34b44835d363eb.tar.bz2
hercules-4c79f825b0de36021af8de337e34b44835d363eb.tar.xz
hercules-4c79f825b0de36021af8de337e34b44835d363eb.zip
-Part 2 of 'the great commit', all credits to L0ne_W0lf
-NPC updates mostly Izlude related
Diffstat (limited to 'npc/re/warps')
-rw-r--r--npc/re/warps/dungeons/iz_dun.txt53
1 files changed, 49 insertions, 4 deletions
diff --git a/npc/re/warps/dungeons/iz_dun.txt b/npc/re/warps/dungeons/iz_dun.txt
index b912f62e1..3ef9ab86e 100644
--- a/npc/re/warps/dungeons/iz_dun.txt
+++ b/npc/re/warps/dungeons/iz_dun.txt
@@ -4,15 +4,60 @@
//= Athena (1.0)
//= Nana (1.1)
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= Any Athena Version
//===== Description: =========================================
//= Warp Points for Bibilyn Island & Undersea Cave
//===== Additional Comments: =================================
//= 1.2 Moved common warps to base path. [Euphy]
+//= 1.3 Added Undersea Tunnel 6th floor warper. [L0ne_W0lf]
//============================================================
-//= Undersea Cave ============================================
-iz_dun04,129,233,0 warp izd07 2,2,iz_dun05,141,187
-iz_dun05,141,190,0 warp izd07-1 2,2,iz_dun04,129,230
+// Undersea Tunnel Warper
+//============================================================
+iz_dun04,130,234,5 script Gatekeeper#iz_dun 413,{
+ mes "[Gatekeeper]";
+ mes "Halt!";
+ mes "What brings you here, Adventurer?";
+ mes "We've discovered a new floor of this underwater city.";
+ next;
+ mes "[Gatekeeper]";
+ mes "Do you think you're up to the challenge?";
+ mes "The monsters here are between levels 110 and 124.";
+ mes "And you must beware of the Kraken!";
+ next;
+ switch(select("Release the Kraken!:I'll stay here.")) {
+ case 1:
+ mes "[Gatekeeper]";
+ mes "Be cautious and good luck.";
+ mes "If you see the Kraken be sure you have your friends to help or do what we do and run.";
+ close2;
+ warp "iz_dun05",141,187;
+ end;
+ case 2:
+ mes "[Gatekeeper]";
+ mes "It's always best to be prepared before exploring a new area.";
+ mes "Come back when you're ready to go.";
+ close;
+ }
+}
+
+iz_dun05,142,190,5 script Guard#iz_dun 413,{
+ mes "[Gatekeeper]";
+ mes "So I guess you want to go back to the fifth floor?";
+ next;
+ switch(select("Yes!:No, I'll stay.")) {
+ case 1:
+ mes "[Gatekeeper]";
+ mes "Be safe, adventurer.";
+ close2;
+ warp "iz_dun04",129,232;
+ end;
+ case 2:
+ mes "[Gatekeeper]";
+ mes "You're not going?";
+ mes "You're braver than I thought.";
+ close;
+ }
+} \ No newline at end of file