diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-03-22 22:08:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-03-22 22:08:26 -0300 |
commit | a1085cbf65d0f14ae8b8055dc8fbd1a43e404fc5 (patch) | |
tree | 9fcd8a73a344d73ca56e03bfc3cd10b22ae7f6c5 /npc/026-6/ctrl.c | |
parent | 2a9075b1aa53d23e31c4ade4de407e4055a41562 (diff) | |
download | serverdata-a1085cbf65d0f14ae8b8055dc8fbd1a43e404fc5.tar.gz serverdata-a1085cbf65d0f14ae8b8055dc8fbd1a43e404fc5.tar.bz2 serverdata-a1085cbf65d0f14ae8b8055dc8fbd1a43e404fc5.tar.xz serverdata-a1085cbf65d0f14ae8b8055dc8fbd1a43e404fc5.zip |
Optional Dungeon
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 |