diff options
Diffstat (limited to 'npc/006-9')
-rw-r--r-- | npc/006-9/_import.txt | 3 | ||||
-rw-r--r-- | npc/006-9/ctrl.txt | 27 |
2 files changed, 30 insertions, 0 deletions
diff --git a/npc/006-9/_import.txt b/npc/006-9/_import.txt new file mode 100644 index 000000000..d1042ca2a --- /dev/null +++ b/npc/006-9/_import.txt @@ -0,0 +1,3 @@ +// Map 006-9: The Abyss +// This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/006-9/ctrl.txt", diff --git a/npc/006-9/ctrl.txt b/npc/006-9/ctrl.txt new file mode 100644 index 000000000..c9bdaba19 --- /dev/null +++ b/npc/006-9/ctrl.txt @@ -0,0 +1,27 @@ +// TMW2 Script +// Author: +// Jesusalva + +006-9,37,21,0 script #OutOf0069 NPC_HIDDEN,0,0,{ + end; + +OnTouch: + if (!$@SURVIVAL_CANDOR) + warp "006-6", 40, 36; + end; +} + +006-9,55,32,0 script Bloodbath NPC_NO_SPRITE,{ + if ($@SURVIVAL_CANDOR) end; + // $@SURVIVAL_CANDOR = gettimetick(2); + mesn; + mes l("Goal: Survive the longest possible."); + mes l("Monsters will spawn in the south fountain continuously."); + mes l("After five minutes, they'll also start spawning on whole map."); + close; + +OnInit: + .distance=3; + end; +} + |