diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-02-09 21:57:33 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-02-09 21:57:33 -0200 |
commit | 79d649d8c61a06cb44c36cbca558d7cb03f9d661 (patch) | |
tree | 1f529cc57a89f439a16a66e11445f67e6146cafe /npc/004-2/bug.txt | |
parent | 38e5f9c25bfef4137b69a557b6e1a61a97fc38db (diff) | |
download | serverdata-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/bug.txt')
-rw-r--r-- | npc/004-2/bug.txt | 36 |
1 files changed, 36 insertions, 0 deletions
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; +} |