summaryrefslogtreecommitdiff
path: root/npc/025-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-05-15 00:47:01 -0300
committerJesusaves <cpntb1@ymail.com>2024-05-15 00:47:01 -0300
commit90af2bd4dea99e05435e3ee038004ebe741e0228 (patch)
treeed4ca61dba1a02e0ab17863d906f59e6e9c87517 /npc/025-1
parent10795dabcfce775a7835f668bd7ce7e799cf8ba8 (diff)
downloadserverdata-90af2bd4dea99e05435e3ee038004ebe741e0228.tar.gz
serverdata-90af2bd4dea99e05435e3ee038004ebe741e0228.tar.bz2
serverdata-90af2bd4dea99e05435e3ee038004ebe741e0228.tar.xz
serverdata-90af2bd4dea99e05435e3ee038004ebe741e0228.zip
Unlock the new area, however, the Main Quest is unfinished
Diffstat (limited to 'npc/025-1')
-rw-r--r--npc/025-1/commander.txt71
1 files changed, 71 insertions, 0 deletions
diff --git a/npc/025-1/commander.txt b/npc/025-1/commander.txt
index c7e0fe6f2..a20b494cd 100644
--- a/npc/025-1/commander.txt
+++ b/npc/025-1/commander.txt
@@ -5,9 +5,26 @@
// Leads the Alliance in the Fortress Town
025-1,96,26,0 script Commander Povo NPC_BRGUARD_SPEAR,{
+ .@q=getq(General_Narrator);
+ if (.@q < 21) { legiontalk(); end; } // No cutting corners!
mesn;
mesq l("Greetings %s, I am %s, the man in charge for the Alliance occupation of Fortress Town.", (strcharinfo(0) == $MOST_HEROIC$ ? lg("Hero") : lg("Adventurer")), .name$);
next;
+
+ // Povo is worried with the upcoming siege
+ if ($FIRESOFSTEAM >= 10 && gettime(4) == MONDAY) {
+ mesn;
+ mesq l("It's a matter of hours before the Impregnable Fortress send enough monsters to overrun us, so we're preparing a strategic withdraw before this. I'm sorry, but I cannot spare any time for you.");
+ close;
+ // Povo is worried with the upcoming siege, but he doesn't know when
+ } else if (!$FIRESOFSTEAM && gettime(4) < TUESDAY) {
+ mesn;
+ mesq l("It's a matter of hours before the Impregnable Fortress send enough monsters to overrun us, and we still haven't understood the pattern. We must be ready to withdraw at any time, which precludes casual talk.");
+ mesc l("%s clearly thinks you're distracting him. It's better to talk to him another day.", .name$);
+ close;
+ }
+
+ // Depending on how you finished Barbara's Quest, claim your reward now
if (BARBARA_STATE == 2) {
inventoryplace NPCEyes, 1;
mesn;
@@ -35,11 +52,65 @@
}
}
+ // Switch the quest
+ if (.@q == 21) goto L_Intro;
+ if (.@q == 22) goto L_Short;
+ // ...
+
// Endtrail
mes "";
mesc l("@@ You need to wait further releases to continue this quest!", b(l("WARNING:"))), 1;
close;
+// Dispatch you to the abandoned encampment.
+L_Intro:
+ mesn;
+ mesq l("Don't worry, I was briefed. You're looking for the Mana Fragment Expedition, right? The one which your parents supposedly participated or something?");
+ next;
+ mesn;
+ mesq l("We scoured this place. Found notes left behind by the expedition, they seem to have had set an encampment southwest of here.");
+ next;
+ mesn;
+ mesq l("I have no idea how successful they were; the place we found the notes in was... well... lets just say the wood walls were red, and have been that way for a long time.");
+ next;
+ mesn;
+ mesq l("However, it was mentioned that there is a small tunnel with a closed passage to reach the encampment; I assume they weren't exactly welcomed by the local monster population and the Fortress Town if anything was swarming with monsters back then.");
+ next;
+ if ($FIRESOFSTEAM < 10) {
+ mesn;
+ mesq l("And truth be told, it still is - the Impregnable Fortress seems to periodically release massive batches of monsters, trying to hold the ground is a death wish.");
+ next;
+ mesn;
+ if ($FIRESOFSTEAM)
+ mesq l("Hopefully Andrei Sakar will find what he's looking for in Artis. I believe Nard was in charge of ferrying adventurers to his exploration, consider helping him.");
+ else
+ mesq l("I cannot let go of a single combat capable person - even volunteer adventurers like yourself - until we can confirm the Impregnable Fortress north of us has a pattern to their spawns.");
+ close;
+ }
+ mesn;
+ mesq l("I don't have anyone to send ahead to scout the place, and even if you go, I'm not expecting you to find anything alive on that encampment. But I understand that finding out the truth is important to you and that you'll go all the same.");
+ next;
+ mesn;
+ mesq l("So, here is the key. Well, I say \"key\", but it is really just a magic pattern which you can draw on your hand and use it to open the passage. I can only wish you luck... Godspeed, %s, may the wind be in your favor.", (strcharinfo(0) == $MOST_HEROIC$ ? lg("Hero") : lg("Adventurer")));
+ next;
+ mesc b(l(".:: Main Quest ::.")), 3;
+ msObjective($FORTRESS_STATE, l("* Invade the Fortress Town"));
+ msObjective(true, l("* Find clues"));
+ msObjective(false, l(" ** Explore the encampment southwest of Fortress Town."));
+ msObjective(false, l("* (optional) Save the world!"));
+ setq General_Narrator, 22;
+ getexp 0, 2225; // You gain some Job Experience for completing this talk
+ close;
+
+// Reminder to go to the Fortress Encampment
+L_Short:
+ mesn;
+ mesq l("Why are you hesitating to explore the abandoned encampment southwest of this town? Well, not that I blame you; the dangers likely outweights the benefits.");
+ next;
+ mesn;
+ mesq l("They might have sealed the direct path, but there's a tunnel in a cave which you can go in now that you have the magic key to open it.");
+ close;
+
OnInit:
.sex = G_MALE;
.distance = 5;