summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-10/kreist.txt14
-rw-r--r--npc/024-16/generals.txt6
2 files changed, 10 insertions, 10 deletions
diff --git a/npc/003-10/kreist.txt b/npc/003-10/kreist.txt
index 510574a98..4ddca7a14 100644
--- a/npc/003-10/kreist.txt
+++ b/npc/003-10/kreist.txt
@@ -73,9 +73,9 @@ L_QuestMaster:
}
// Maybe you finished the quest?
- if (.@q3 >= 100) {
+ if (.@q3 >= 80) {
mesn l("Kreist, Taskmaster");
- mesq l("Good job, you've killed the 100 @@ and reported back in time!", getmonsterlink(.@q2));
+ mesq l("Good job, you've killed the @@ @@ and reported back in time!", 80, getmonsterlink(.@q2));
next;
inventoryplace MercBoxA, 1;
if (MERCENARY_DAILYQUEST == 100) {
@@ -98,7 +98,7 @@ L_QuestMaster:
}
mesn l("Kreist, Taskmaster");
- mesq l("So, please kill @@/100 @@ for us and make the world a safer place!", .@q3, getmonsterlink(.@q2));
+ mesq l("So, please kill @@/@@ @@ for us and make the world a safer place!", .@q3, 80, getmonsterlink(.@q2));
close;
OnInit:
@@ -133,7 +133,7 @@ function script Guardhouse_RandQuestCheck {
.@q3=getq3(General_MobHunting1)+1;
setq3 General_MobHunting1, .@q3;
if (!(.@q3 % 10))
- dispbottom l("@@/100 @@ killed", .@q3, getmonsterlink(.@mobId));
+ dispbottom l("@@/@@ @@ killed", .@q3, 80, getmonsterlink(.@mobId));
}
// Medium Task
@@ -142,7 +142,7 @@ function script Guardhouse_RandQuestCheck {
.@q3=getq3(General_MobHunting2)+1;
setq3 General_MobHunting2, .@q3;
if (!(.@q3 % 10))
- dispbottom l("@@/100 @@ killed", .@q3, getmonsterlink(.@mobId));
+ dispbottom l("@@/@@ @@ killed", .@q3, 80, getmonsterlink(.@mobId));
}
// Hard Task
@@ -151,7 +151,7 @@ function script Guardhouse_RandQuestCheck {
.@q3=getq3(General_MobHunting3)+1;
setq3 General_MobHunting3, .@q3;
if (!(.@q3 % 10))
- dispbottom l("@@/100 @@ killed", .@q3, getmonsterlink(.@mobId));
+ dispbottom l("@@/@@ @@ killed", .@q3, 80, getmonsterlink(.@mobId));
}
// Frostia's Task
@@ -160,7 +160,7 @@ function script Guardhouse_RandQuestCheck {
.@q3=getq3(General_MobHunting4)+1;
setq3 General_MobHunting4, .@q3;
if (!(.@q3 % 10))
- dispbottom l("@@/100 @@ killed", .@q3, getmonsterlink(.@mobId));
+ dispbottom l("@@/@@ @@ killed", .@q3, 50, getmonsterlink(.@mobId));
}
return;
diff --git a/npc/024-16/generals.txt b/npc/024-16/generals.txt
index e540da4e1..ca988134e 100644
--- a/npc/024-16/generals.txt
+++ b/npc/024-16/generals.txt
@@ -27,9 +27,9 @@ function script FrostiaTaskMaster {
}
// Maybe you finished the quest?
- if (.@q3 >= 100) {
+ if (.@q3 >= 50) {
mesn;
- mesq l("Good job, you've killed the 100 @@ and reported back in time!", getmonsterlink(.@q2));
+ mesq l("Good job, you've killed the @@ @@ and reported back in time!", 50, getmonsterlink(.@q2));
next;
mesn;
mesq l("It's not much of a reward, but doesn't it feels great to help others in need?! HAHAHA!");
@@ -43,7 +43,7 @@ function script FrostiaTaskMaster {
}
mesn;
- mesq l("Please kill @@/100 @@ for us and make the world a safer place!", .@q3, getmonsterlink(.@q2));
+ mesq l("Please kill @@/@@ @@ for us and make the world a safer place!", .@q3, 50, getmonsterlink(.@q2));
return false;
}