diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-05-15 00:47:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-15 00:47:01 -0300 |
commit | 90af2bd4dea99e05435e3ee038004ebe741e0228 (patch) | |
tree | ed4ca61dba1a02e0ab17863d906f59e6e9c87517 /npc/025-4 | |
parent | 10795dabcfce775a7835f668bd7ce7e799cf8ba8 (diff) | |
download | serverdata-90af2bd4dea99e05435e3ee038004ebe741e0228.tar.gz serverdata-90af2bd4dea99e05435e3ee038004ebe741e0228.tar.bz2 serverdata-90af2bd4dea99e05435e3ee038004ebe741e0228.tar.xz serverdata-90af2bd4dea99e05435e3ee038004ebe741e0228.zip |
Unlock the new area, however, the Main Quest is unfinished
Diffstat (limited to 'npc/025-4')
-rw-r--r-- | npc/025-4/_import.txt | 1 | ||||
-rw-r--r-- | npc/025-4/main.txt | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/npc/025-4/_import.txt b/npc/025-4/_import.txt index 21ced80be..0261128be 100644 --- a/npc/025-4/_import.txt +++ b/npc/025-4/_import.txt @@ -3,3 +3,4 @@ "npc/025-4/_config.txt", "npc/025-4/_mobs.txt", "npc/025-4/_warps.txt", +"npc/025-4/main.txt", diff --git a/npc/025-4/main.txt b/npc/025-4/main.txt new file mode 100644 index 000000000..90306efbe --- /dev/null +++ b/npc/025-4/main.txt @@ -0,0 +1,29 @@ +// TMW-2 Script. +// Author: +// Jesusalva +// Notes: +// Player Quest Finale + +025-4,81,78,0 script #MQFinPlaceholderA NPC_HIDDEN,1,0,{ + end; + +OnTouch: + .@q=getq(General_Narrator); + .@q2=getq2(General_Narrator); + // Cheater Detected + if (.@q < 22) { + warp "Save", 0, 0; + die(); + end; + } + // Endtrail (short) + dispbottom l("@@ You need to wait further releases to continue this quest!", b(l("WARNING:"))), 1; + end; +} + +025-4,91,63,0 duplicate(#MQFinPlaceholderA) #MQFinPlaceholderB NPC_HIDDEN,0,1 +025-4,74,22,0 duplicate(#MQFinPlaceholderA) #MQFinPlaceholderH NPC_HIDDEN,1,0 +025-4,91,51,0 duplicate(#MQFinPlaceholderA) #MQFinPlaceholderU NPC_HIDDEN,0,0 +025-4,26,56,0 duplicate(#MQFinPlaceholderA) #MQFinPlaceholderS NPC_HIDDEN,0,0 + + |