summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-02-04 13:10:47 -0300
committerJesusaves <cpntb1@ymail.com>2022-02-04 13:10:47 -0300
commit24b087466817313e5d940c808a4424355a3a3635 (patch)
treef4601c6b4744eae4995f02f4d5d81120f100ab79
parent10a68cb129598466af9ca2d8e7a7e6202c2dab17 (diff)
downloadserverdata-24b087466817313e5d940c808a4424355a3a3635.tar.gz
serverdata-24b087466817313e5d940c808a4424355a3a3635.tar.bz2
serverdata-24b087466817313e5d940c808a4424355a3a3635.tar.xz
serverdata-24b087466817313e5d940c808a4424355a3a3635.zip
Falkrun can now teach you how to reach Saulc's Residence.
A secondary condition has also been added.
-rw-r--r--npc/004-2/bug.txt8
-rw-r--r--npc/004-3-1/falkrun.txt19
2 files changed, 26 insertions, 1 deletions
diff --git a/npc/004-2/bug.txt b/npc/004-2/bug.txt
index 479fa948d..6c4bbd412 100644
--- a/npc/004-2/bug.txt
+++ b/npc/004-2/bug.txt
@@ -18,6 +18,7 @@ OnInit:
004-2,81,23,0 script Sign#TempBugfix NPC_SWORDS_SIGN,{
if (countitem(DesertTablet)) goto L_Tablet;
+ if (MAGIC_LVL >= 7) goto L_RawPower;
mesc l("Impossible to read.");
close;
@@ -28,6 +29,13 @@ L_Tablet:
cwarp "001-3", 117, 135;
close;
+L_RawPower:
+ mes l("You can sense powerful cloaking magic emanating from this sign. With your superior magic, you dismiss the enchantment, and see what the cliffs have been hiding all along...");
+ next;
+ closeclientdialog;
+ cwarp "001-3", 117, 135;
+ close;
+
OnInit:
.sex = G_OTHER;
.distance = 3;
diff --git a/npc/004-3-1/falkrun.txt b/npc/004-3-1/falkrun.txt
index 011243f77..18a745c19 100644
--- a/npc/004-3-1/falkrun.txt
+++ b/npc/004-3-1/falkrun.txt
@@ -15,6 +15,7 @@
mesn;
mesq l("I don't know if our clan will survive for much longer. Do you have any questions before we all die and our knowledge gets forgotten?");
next;
+ .@hist = 0;
do
{
select
@@ -22,7 +23,8 @@
l("Tell me about the Civil War."),
l("Tell me about the Great Fire."),
l("Tell me about the Mana War."),
- l("Tell me about the Monster War.");
+ l("Tell me about the Monster War."),
+ rif(.@hist == 15, l("What happened to the Wizard's Tower?"));
mes "";
switch (@menu) {
case 2:
@@ -41,6 +43,7 @@
mesn;
mesq l("The Red Queen was murdered, but her supporters prolonged the Civil War for at least six years after her death. The grudges were strong back then...");
next;
+ .@hist = .@hist | 1;
break;
case 3:
mesn;
@@ -61,6 +64,7 @@
mesn;
mesq l("The great fire did very few causalities, but it destroyed a lot of infrastructure and ruined the economy. Famine and chaos ensued, we almost were wiped out back then. Maybe it would be best if we had indeed been wiped out...");
next;
+ .@hist = .@hist | 2;
break;
case 4:
mesn;
@@ -81,6 +85,7 @@
mesn;
mesq l("...A tower, on this canyon. People disliked it, humans and all other races. The Mana War happened, bloodshed, and... The Monster War.");
next;
+ .@hist = .@hist | 4;
break;
case 5:
mesn;
@@ -95,6 +100,18 @@
mesn;
mesq l("The clan will end on this generation. And hopefully, the world will survive longer, things aren't looking well right now.");
next;
+ .@hist = .@hist | 8;
+ break;
+ case 5:
+ mesn;
+ mesq l("Mhm? I believe it was rebuilt, and the High Alliance took it over from the mage association for not paying taxes.");
+ next;
+ mesn;
+ mesq l("It is a magical tower, though, cloaked in the desert. You can't just walk there. The tower was north of here, you will find a sign near the gate... But you won't find the gate itself.");
+ next;
+ mesn;
+ mesq l("Maybe, if you had some sort of ancient artifact and touched the sign, it would allow you to see through the cloaking? Or if you were powerful enough. As if I would know!");
+ next;
break;
}
} while (@menu != 1);