diff options
Diffstat (limited to 'npc/commands/event.txt')
-rw-r--r-- | npc/commands/event.txt | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index 1e11e51f4..fab032dde 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -247,7 +247,7 @@ OnCall: end; } - if (!$@GM_EVENT) + if (!$@GM_EVENT && !$@MK_SCENE) dispbottom l("The mana bridge is closed at the moment."); else if (BaseLevel < 10) dispbottom l("You are not strong enough to survive this trip."); @@ -261,10 +261,22 @@ OnCall: dispbottom l("The Mana Plane is currently out of reach."); else { // Monster King events take precedence over Aeros Event - if ($@MK_SCENE == MK_SIEGE_TULIM) { + switch ($@MK_SCENE) { + case MK_SIEGE_TULIM: warp "003-1", 40, 49; specialeffect(63, AREA, getcharid(3)); end; + case MK_SIEGE_HURNS: + warp "012-1", 87, 70; + specialeffect(63, AREA, getcharid(3)); + end; + } + + if (!$@GM_EVENT) + { + //dispbottom ("SCRIPT ERROR - blame Saulc - gmevent not set, mkscene set"); + dispbottom l("The mana bridge is closed at the moment."); + end; } .@gt=$@AEROS_SPWN; |