diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-07 14:56:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-07 14:56:10 -0300 |
commit | 2c80434244d08b86db1ac456acd2934973e91553 (patch) | |
tree | 8df217325444438bf36fe6b57be1fc06b556d5e9 /npc | |
parent | ea35efbb8ff14b33f413aca9646b58e72ccd3682 (diff) | |
download | serverdata-2c80434244d08b86db1ac456acd2934973e91553.tar.gz serverdata-2c80434244d08b86db1ac456acd2934973e91553.tar.bz2 serverdata-2c80434244d08b86db1ac456acd2934973e91553.tar.xz serverdata-2c80434244d08b86db1ac456acd2934973e91553.zip |
Shrine Warps must also be shutdown
Diffstat (limited to 'npc')
-rw-r--r-- | npc/018-6-3/main.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/018-6-3/main.txt b/npc/018-6-3/main.txt index ec3d771b6..70b632c4f 100644 --- a/npc/018-6-3/main.txt +++ b/npc/018-6-3/main.txt @@ -21,7 +21,7 @@ function script 01863_RelevanceCheck { return true; } -// TODO: filler +// Shut down the enabled warps. function script 01863_DisableAllWarps { .@q=getq(LoFQuest_Barbara); .@q2=getq2(LoFQuest_Barbara); @@ -53,6 +53,8 @@ function script 01863_DisableAllWarps { disablenpc instance_npcname("#01863_fromSCtoSW", .@q2); disablenpc instance_npcname("#01863_fromSCtoSE", .@q2); //disablenpc instance_npcname("#01863_fromSCtoCC", .@q2); + disablenpc instance_npcname("#01863_fromCCtoNC", .@q2); + disablenpc instance_npcname("#01863_fromCCtoSC", .@q2); return; } @@ -927,6 +929,7 @@ OnInstanceInit: mesq l("I am the Judge, and I shall make Judgment upon you!"); mesc l("WARNING: ")+l("If you die or logout here, the quest will be reset!"), 1; next; + //01863_DisableAllWarps(); //doevent //disablenpc Exception("Could not begin the Boss Fight!", RB_SPEECH|RB_ISFATAL); |