summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJessica Tölke <jtoelke@mail.upb.de>2012-12-14 16:34:21 +0100
committerJessica Tölke <jtoelke@mail.upb.de>2012-12-14 16:35:20 +0100
commit205e92b9ea809fdcf75a99e276e10c8995f21ccb (patch)
treed39e619e46f2b99aa3b6db6d1d6cd53edc6857c4
parent14ad8654cc1f6050d6e6af42dcc300b8bf07acb5 (diff)
downloadserverdata-205e92b9ea809fdcf75a99e276e10c8995f21ccb.tar.gz
serverdata-205e92b9ea809fdcf75a99e276e10c8995f21ccb.tar.bz2
serverdata-205e92b9ea809fdcf75a99e276e10c8995f21ccb.tar.xz
serverdata-205e92b9ea809fdcf75a99e276e10c8995f21ccb.zip
Add option to be warped to the Snake Pit to Parua's dialogue.
This avoids that a player can get stuck in Candor.
-rw-r--r--world/map/npc/029-3/parua.txt15
1 files changed, 14 insertions, 1 deletions
diff --git a/world/map/npc/029-3/parua.txt b/world/map/npc/029-3/parua.txt
index 17dd10ee..69507ebd 100644
--- a/world/map/npc/029-3/parua.txt
+++ b/world/map/npc/029-3/parua.txt
@@ -8,7 +8,8 @@
mes "[Parua]";
mes "\"Do you dare challenge the power that sleeps here?\"";
menu "No, I'll let it sleep.", L_Exit,
- "Ha! What's the worst it could do?", -;
+ "Ha! What's the worst it could do?", -,
+ "Actually, I want to leave, but I'm stuck!", L_Stuck;
mes "[Parua]";
mes "\"Very well, for a fee of 20,000 GP, I will awaken that power.\"";
menu "No, what a ripoff!", L_Exit,
@@ -111,6 +112,18 @@ L_NotEnoughPlayers:
mes "He takes a moment to calculate. \"You'll probably need at least...five people, including yourself.\"";
goto L_Exit;
+L_Stuck:
+ mes "[Parua]";
+ mes "\"I see. I can teleport you to another nice cave.\"";
+ mes "His face doesn't show any emotion, but his voice sounds threatening.";
+ menu
+ "Please do so!", L_Warp,
+ "I changed my mind.", L_Exit;
+
+L_Warp:
+ warp "005-3.gat", 86, 34;
+ goto L_Exit;
+
L_Exit:
close;
end;