summaryrefslogtreecommitdiff
path: root/npc/004-2
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-02-09 21:57:33 -0200
committerJesusaves <cpntb1@ymail.com>2019-02-09 21:57:33 -0200
commit79d649d8c61a06cb44c36cbca558d7cb03f9d661 (patch)
tree1f529cc57a89f439a16a66e11445f67e6146cafe /npc/004-2
parent38e5f9c25bfef4137b69a557b6e1a61a97fc38db (diff)
downloadserverdata-79d649d8c61a06cb44c36cbca558d7cb03f9d661.tar.gz
serverdata-79d649d8c61a06cb44c36cbca558d7cb03f9d661.tar.bz2
serverdata-79d649d8c61a06cb44c36cbca558d7cb03f9d661.tar.xz
serverdata-79d649d8c61a06cb44c36cbca558d7cb03f9d661.zip
Don't let Msawis sad without his Canyon %%0
Diffstat (limited to 'npc/004-2')
-rw-r--r--npc/004-2/_import.txt1
-rw-r--r--npc/004-2/bug.txt36
2 files changed, 37 insertions, 0 deletions
diff --git a/npc/004-2/_import.txt b/npc/004-2/_import.txt
index 741f8a548..b1ae519fa 100644
--- a/npc/004-2/_import.txt
+++ b/npc/004-2/_import.txt
@@ -2,3 +2,4 @@
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/004-2/_mobs.txt",
"npc/004-2/_warps.txt",
+"npc/004-2/bug.txt",
diff --git a/npc/004-2/bug.txt b/npc/004-2/bug.txt
new file mode 100644
index 000000000..9cf3e38a9
--- /dev/null
+++ b/npc/004-2/bug.txt
@@ -0,0 +1,36 @@
+// TMW2 Script.
+// Author:
+// Jesusalva
+// Description:
+// Error Handler
+
+004-2,54,63,0 script Sign#ErrorHandler0041 NPC_SWORDS_SIGN,{
+ mesc l("WARNING: Desert Canyon locked down due major bugs"), 1;
+ mesc l("Please use the alternative route provided by the Alliance High Council"), 1;
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 3;
+ end;
+}
+
+
+004-2,84,77,0 script Sign#ErrorHandler0042 NPC_SWORDS_SIGN,{
+ mesc l("WARNING: This path has been locked down due to major bugs"), 1;
+ mesc l("You may be trapped forever inside the desert maze beyond help"), 1;
+ mesc l("shall you decide to disregard this warning."), 1;
+ mes "";
+ mesc l("Do not attempt to use the normal route with a @@ with you.", getitemlink(TimeFlask)), 1;
+ next;
+ mesc l("Use the normal route?");
+ if (askyesno() == ASK_YES)
+ warp "004-2-1", 26, 87;
+ closeclientdialog;
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 2;
+ end;
+}