summaryrefslogtreecommitdiff
path: root/npc/027-3_Crypt/entrance.txt
diff options
context:
space:
mode:
authornmaligec <wouldnot@hotmail.com>2011-01-03 14:50:23 -0500
committernmaligec <wouldnot@hotmail.com>2011-01-03 14:50:23 -0500
commit0362815db48dcd49b5df5d1bd8565613e1979f70 (patch)
treeb6c9733c488c5f87387a500ac2ef25441fdc1538 /npc/027-3_Crypt/entrance.txt
parent8b09943b83d9eeb2180fb6c50023a22d3ffae18d (diff)
downloadserverdata-0362815db48dcd49b5df5d1bd8565613e1979f70.tar.gz
serverdata-0362815db48dcd49b5df5d1bd8565613e1979f70.tar.bz2
serverdata-0362815db48dcd49b5df5d1bd8565613e1979f70.tar.xz
serverdata-0362815db48dcd49b5df5d1bd8565613e1979f70.zip
Updates I made since ta-testing repo was closed: minor fix to Hurnsald warps and entrances, plus additions for the crypt quest.
Diffstat (limited to 'npc/027-3_Crypt/entrance.txt')
-rwxr-xr-xnpc/027-3_Crypt/entrance.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/npc/027-3_Crypt/entrance.txt b/npc/027-3_Crypt/entrance.txt
new file mode 100755
index 00000000..f8da11b8
--- /dev/null
+++ b/npc/027-3_Crypt/entrance.txt
@@ -0,0 +1,41 @@
+// Effects for opening and closing the gate. Also set it so no new player can't be warped in once the gate is opened.
+
+027-3.gat,40,57,0 script #gatecontrol 127, 2, 1{
+ mes "Once you pass this point I cannot warp anyone else to help.";
+ mes "Are you sure you are ready to go?";
+ menu
+ "Let's go",L_BEGIN,
+ "No thank you",-;
+ warp "027-3.gat",40,60;
+ close;
+
+L_BEGIN:
+ disablenpc "#closedgate";
+ initnpctimer;
+ specialeffect 300;
+ // add stop alacrius warp flag to temp globals
+ close;
+
+OnTimer2000:
+ enablenpc "#opengate";
+ disablenpc "#gatecontrol";
+ end;
+}
+
+027-3.gat,40,59,0 script #closedgate 322,{
+ end;
+}
+027-3.gat,40,59,0 script #opengate 323,{
+ end;
+}
+
+
+// Effects for the exit.
+
+027-3.gat,40,78,0 script #cryptexit2 127, 3, 3{
+ mes "Unfortunately, once I bring you to this pocket";
+ mes "in time you cannot leave through its normal exit.";
+ mes "The only way to get out is to defeat the reaper";
+ mes "or die...";
+ close;
+} \ No newline at end of file