summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-2/lua.txt2
-rw-r--r--npc/functions/util.txt8
2 files changed, 7 insertions, 3 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt
index 062af1037..7dca3f969 100644
--- a/npc/003-2/lua.txt
+++ b/npc/003-2/lua.txt
@@ -102,7 +102,7 @@ L_Info:
mesn;
mesq l("No criminal record, no bank account, not even a tax payment declaration.");
next;
- mesq l("I found your birth record, but it is not complete. Here says you were born on ##BHalinarzo##b.");
+ mesq l("I found your birth record, but it is not complete. Here says you were born on @@.", b("Halinarzo"));
next;
mesq l("The problem is that Halinarzo was destroyed in the never-ending war and was just recently rebuilt.");
next;
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index 72eb8b68c..46f5bce83 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -219,7 +219,7 @@ function script reputation {
- // Hurnscald Quests (7 points)
+ // Hurnscald Quests (8 points)
} else if (getarg(0) == "Hurns") {
// Alan Quest (+1 rep)
@@ -250,8 +250,12 @@ function script reputation {
if (getq(HurnscaldQuest_BloodDonor) >= 1)
.@nr=.@nr+1;
+ // Woody Quest (+1 rep)
+ if (getq(HurnscaldQuest_Woody) >= 5)
+ .@nr=.@nr+1;
+
// HURNSCALD Magical Forumula
- .@nr=.@nr*100/7;
+ .@nr=.@nr*100/8;