diff options
Diffstat (limited to 'npc/026-6/ctrl.c')
-rw-r--r-- | npc/026-6/ctrl.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/npc/026-6/ctrl.c b/npc/026-6/ctrl.c index 058b61aea..f45ab9e53 100644 --- a/npc/026-6/ctrl.c +++ b/npc/026-6/ctrl.c @@ -169,3 +169,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 |