diff options
Diffstat (limited to 'npc/026-6/ctrl.c')
-rw-r--r-- | npc/026-6/ctrl.c | 53 |
1 files changed, 52 insertions, 1 deletions
diff --git a/npc/026-6/ctrl.c b/npc/026-6/ctrl.c index 058b61aea..ceaf4956d 100644 --- a/npc/026-6/ctrl.c +++ b/npc/026-6/ctrl.c @@ -84,7 +84,8 @@ OnTouch: sleep(2500); mapannounce("026-6", "WORLD HEART : The teleporter is now enabled... Get to positions!", bc_map|bc_npc); sleep(5000); - kamibroadcast("It is... SHOWDOWN TIME!", b("WORLD HEART")); + if ($GAME_STORYLINE < 5) + kamibroadcast("It is... SHOWDOWN TIME!", b("WORLD HEART")); sleep(2500); donpcevent "Impregnable#B7F::OnBegin"; } @@ -169,3 +170,53 @@ OnInit: end; } +026-6,85,79,0 script Expeditionary#A NPC_CONSTR_WORKER,{ + mesn; + mesq l("I'm from the Alliance Expeditionary Force. I'm here to protect these passages from the untrained."); + next; + mesn; + mesq l("This one brings you closer to the World's Heart."); + next; + mesn; + if (!MK_WINNER) + mesq l("Which is why I cannot allow you past this point."); + else + mesq l("You can go there, if you wish, but it is deadly."); + close; +OnInit: + .distance=3; + end; +} + +026-6,89,79,0 script Expeditionary#B NPC_MAINTENANCE_A,{ + mesn; + mesq l("I'm from the Alliance Expeditionary Force. I'm here to protect these passages from the untrained."); + next; + mesn; + mesq l("One of them will bring you out of the Impregnable Fortress, the other brings you closer to the World's Heart."); + next; + mesn; + if (!MK_WINNER) + mesq l("Which is why I cannot allow you past this point."); + else + mesq l("You can go there, if you wish, but it is deadly."); + close; +OnInit: + .distance=3; + end; +} + +026-6,92,79,0 script Expeditionary#C NPC_CONSTR_WORKER,{ + mesn; + mesq l("I'm from the Alliance Expeditionary Force. I'm here to protect these passages from the untrained."); + next; + mesn; + mesq l("This one leads you to outside the Impregnable Fortress."); + close; +OnInit: + .distance=3; + end; +} + +// Optional Dungeon +// The warp is added by npc/026-8/ctrl.c |