diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-26 10:26:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-26 10:26:57 -0300 |
commit | e97168746fb62e5574c87ba409256d8449f010e5 (patch) | |
tree | b44a44c1f2e08ed3749b737251352e309f56dd8b /npc | |
parent | fdf90d2ae758ca43ebbbfe84d71d74314a197f8d (diff) | |
download | serverdata-e97168746fb62e5574c87ba409256d8449f010e5.tar.gz serverdata-e97168746fb62e5574c87ba409256d8449f010e5.tar.bz2 serverdata-e97168746fb62e5574c87ba409256d8449f010e5.tar.xz serverdata-e97168746fb62e5574c87ba409256d8449f010e5.zip |
Add the placeholders for Kage's area
Diffstat (limited to 'npc')
-rw-r--r-- | npc/006-6/all.txt | 15 | ||||
-rw-r--r-- | npc/006-8/_import.txt | 1 | ||||
-rw-r--r-- | npc/006-8/kage.txt | 15 |
3 files changed, 29 insertions, 2 deletions
diff --git a/npc/006-6/all.txt b/npc/006-6/all.txt index 41ec7b611..5ccc988d1 100644 --- a/npc/006-6/all.txt +++ b/npc/006-6/all.txt @@ -33,7 +33,7 @@ OnInit: } // Effective warps -006-6,40,35,0 script Magic Barrier#0067E NPC_HIDDEN,0,0,{ +006-6,40,35,0 script Magic Barrier#0067W NPC_HIDDEN,0,0,{ end; OnTouch: @@ -45,7 +45,7 @@ OnTouch: } // Effective warps -006-6,54,35,0 script Magic Barrier#0067W NPC_HIDDEN,0,0,{ +006-6,54,35,0 script Magic Barrier#0067E NPC_HIDDEN,0,0,{ end; OnTouch: @@ -57,4 +57,15 @@ OnTouch: } +// Effective warps +006-6,47,33,0 script Magic Barrier#0067C NPC_HIDDEN,0,0,{ + end; + +OnTouch: + if (!$@CAPTURE_FLAG || is_admin()) + warp "006-8", 44, 67; + else + dispbottom l("Your strength is not enough to power on this portal."); + end; +} diff --git a/npc/006-8/_import.txt b/npc/006-8/_import.txt index 7e9400efd..2587b757d 100644 --- a/npc/006-8/_import.txt +++ b/npc/006-8/_import.txt @@ -1,2 +1,3 @@ // Map 006-8: Capture the Flag // This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/006-8/kage.txt", diff --git a/npc/006-8/kage.txt b/npc/006-8/kage.txt new file mode 100644 index 000000000..7a35a4c80 --- /dev/null +++ b/npc/006-8/kage.txt @@ -0,0 +1,15 @@ +// TMW2 Script +// Author: +// Jesusalva + +006-8 mapflag zone MMO No Revive + +006-8,44,68,0 script #OutOf0068 NPC_HIDDEN,0,0,{ + end; + +OnTouch: + if (!$@CAPTURE_FLAG) + warp "006-6", 47, 34; + end; +} + |