From 5c76d6ed3f2cae562c9f3c6f922de5a2da0f3077 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Mon, 28 Oct 2019 21:16:28 -0300 Subject: Fortress Island controllers --- npc/017-10/_import.txt | 1 + npc/017-10/airship.txt | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++ npc/017-10/mayor.txt | 2 +- 3 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 npc/017-10/airship.txt (limited to 'npc/017-10') diff --git a/npc/017-10/_import.txt b/npc/017-10/_import.txt index b5cbb0fa4..7cbdcd3de 100644 --- a/npc/017-10/_import.txt +++ b/npc/017-10/_import.txt @@ -1,6 +1,7 @@ // Map 017-10: LoF Townhall // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/017-10/_warps.txt", +"npc/017-10/airship.txt", "npc/017-10/dispatcher.txt", "npc/017-10/mayor.txt", "npc/017-10/politics.txt", diff --git a/npc/017-10/airship.txt b/npc/017-10/airship.txt new file mode 100644 index 000000000..eb5fb47e5 --- /dev/null +++ b/npc/017-10/airship.txt @@ -0,0 +1,57 @@ +// TMW-2 Script. +// Author: +// Jesusalva +// Notes: +// Fortress Island South (Lv 70~150 Area) + +017-10,63,22,0 script #ToFortress NPC_NO_SPRITE,1,0,{ + end; +OnTouch: + .@q=getq(General_Narrator); + if (.@q < 19) + end; + + mesc l(".:: Fortress Island ::."), 1; + mes ""; + if (BaseLevel < 70) { + mesc l("This area is only for level 70 upwards."), 1; + close; + } + mesc l("Do you want to go to Fortress Island, where the Monster King lives?!"), 1; + removespecialeffect(FX_CIRCLE, SELF, getcharid(3)); + next; + mesc l("WARNING: HIGH LEVEL AREA. COME PREPARED."), 1; + mesc l("Note: This travel takes a whole minute to complete!!"); + mesc l("Note 2: If you leave this plataform, it'll reset!"); + next; + mesc l("BEGIN WARP PROCEDURES?"), 1; + if (askyesno() == ASK_YES) { + specialeffect FX_CIRCLE, SELF, getcharid(3); + addtimer 70000, "#ToFortress::OnWarper"; + addtimer 60000, "#ToFortress::OnNotif"; + } + end; + +OnNotif: + specialeffect FX_MAGIC, SELF, getcharid(3); + dispbottom l("WARPING IN 10 SECONDS"); + end; + +OnWarper: + removespecialeffect(FX_CIRCLE, SELF, getcharid(3)); + if (getmap() != "017-10") + end; + warp "025-2", 97, 119; + specialeffect FX_SUCCESS, SELF, getcharid(3); + dispbottom l("You have arrived at Fortress Island."); + end; +} + +017-10,63,28,0 script #ToFortressAbort NPC_NO_SPRITE,5,0,{ + end; +OnTouch: + deltimer "#ToFortress::OnWarper"; + deltimer "#ToFortress::OnNotif"; + end; +} + diff --git a/npc/017-10/mayor.txt b/npc/017-10/mayor.txt index ad34b5e04..598762f07 100644 --- a/npc/017-10/mayor.txt +++ b/npc/017-10/mayor.txt @@ -117,7 +117,7 @@ next; } mesn; - mesq l("Anyway, here your reward."); + mesq l("Anyway, here is your reward."); delitem MagicApple, 1; setq General_Narrator, 19; setq LoFQuest_Barbara, 0, 0, 0; -- cgit v1.2.3-60-g2f50