diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-08 00:11:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-08 00:11:04 -0300 |
commit | 4c0fcc2f9a889be37cfb943a491aef5c6b3f2856 (patch) | |
tree | e8e627a8522789dae9c285c7d55ee34903b40b2a /npc | |
parent | 594f70a0e647f6d2775fb7c9a943489b2b14d369 (diff) | |
download | serverdata-4c0fcc2f9a889be37cfb943a491aef5c6b3f2856.tar.gz serverdata-4c0fcc2f9a889be37cfb943a491aef5c6b3f2856.tar.bz2 serverdata-4c0fcc2f9a889be37cfb943a491aef5c6b3f2856.tar.xz serverdata-4c0fcc2f9a889be37cfb943a491aef5c6b3f2856.zip |
Prepare 026-4/5 before I run out of battery
Diffstat (limited to 'npc')
-rw-r--r-- | npc/026-3/ctrl.c | 1 | ||||
-rw-r--r-- | npc/026-4/_import.txt | 2 | ||||
-rw-r--r-- | npc/026-4/ctrl.c | 5 | ||||
-rw-r--r-- | npc/026-5/_import.txt | 3 | ||||
-rw-r--r-- | npc/026-5/ctrl.c | 8 |
5 files changed, 16 insertions, 3 deletions
diff --git a/npc/026-3/ctrl.c b/npc/026-3/ctrl.c index f047a4f13..fd8c52138 100644 --- a/npc/026-3/ctrl.c +++ b/npc/026-3/ctrl.c @@ -29,6 +29,7 @@ function script 0263Event { end; OnTouch: + dispbottom l("From this point forward, you'll no longer be able to return to the previous floor."); if (getq(General_Fortress) > 5) goto L_Warp; mesc l(".:: Impregnable Fortress, %sF ::.", "B3"), 3; msObjective(getq(General_Fortress) == 5, l("* Flip all four switches")); diff --git a/npc/026-4/_import.txt b/npc/026-4/_import.txt index bb943790a..45380405e 100644 --- a/npc/026-4/_import.txt +++ b/npc/026-4/_import.txt @@ -1,3 +1,3 @@ // Map 026-4: The Impregnable Fortress (B4F) // This file is generated automatically. All manually added changes will be removed when running the Converter. -"npc/026-4/ctrl.txt", +"npc/026-4/ctrl.c", diff --git a/npc/026-4/ctrl.c b/npc/026-4/ctrl.c index ede7e8617..2138a064b 100644 --- a/npc/026-4/ctrl.c +++ b/npc/026-4/ctrl.c @@ -7,3 +7,8 @@ // (MaxFloor+1, internal, internal) // This script must set 026-4 up on init, and refresh it when needed +- script Impregnable#B4F NPC_HIDDEN,{ + end; + +} + diff --git a/npc/026-5/_import.txt b/npc/026-5/_import.txt index 1961e7497..4b7dffcf7 100644 --- a/npc/026-5/_import.txt +++ b/npc/026-5/_import.txt @@ -1,3 +1,4 @@ // Map 026-5: The Impregnable Fortress (B5F) // This file is generated automatically. All manually added changes will be removed when running the Converter. -"npc/026-5/ctrl.txt", +"npc/026-5/026-5_blackbox.txt", +"npc/026-5/ctrl.c", diff --git a/npc/026-5/ctrl.c b/npc/026-5/ctrl.c index ede7e8617..9d8e0ea5c 100644 --- a/npc/026-5/ctrl.c +++ b/npc/026-5/ctrl.c @@ -6,4 +6,10 @@ // Quest: General_Fortress // (MaxFloor+1, internal, internal) -// This script must set 026-4 up on init, and refresh it when needed +// This script must set 026-5 up on init, and refresh it when needed +// This one also contains a blackbox +- script Impregnable#B5F NPC_HIDDEN,{ + end; + +} + |