summaryrefslogtreecommitdiff
path: root/npc/005-4/rosen.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-01-04 23:13:49 -0200
committerJesusaves <cpntb1@ymail.com>2019-01-04 23:13:49 -0200
commitfddbfed55496026cd07a6fd7ca8a71415d695799 (patch)
treee7e11cebb9138e4de9e587fe35d972a377a07172 /npc/005-4/rosen.txt
parent3f4dea5b57f194b4ea1493d5138b90a9f4109c98 (diff)
downloadserverdata-fddbfed55496026cd07a6fd7ca8a71415d695799.tar.gz
serverdata-fddbfed55496026cd07a6fd7ca8a71415d695799.tar.bz2
serverdata-fddbfed55496026cd07a6fd7ca8a71415d695799.tar.xz
serverdata-fddbfed55496026cd07a6fd7ca8a71415d695799.zip
Reduce amount of Bifs to kill on Rosen from 10 to 5.
Player will already spend at minimum a solid two hours at Candor, anyway
Diffstat (limited to 'npc/005-4/rosen.txt')
-rw-r--r--npc/005-4/rosen.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/005-4/rosen.txt b/npc/005-4/rosen.txt
index ab824c0f1..0ae37b054 100644
--- a/npc/005-4/rosen.txt
+++ b/npc/005-4/rosen.txt
@@ -72,7 +72,7 @@ L_Gloves:
mesq l("Ah, I see you have some used gloves. I'm not sure if you can even mine with it...");
next;
mesn;
- mesq l("Uhm, maybe I could teach you something, too. Go mine 10 @@. You should find some at northeast of the Island.", getmonsterlink(DiamondBif));
+ mesq l("Uhm, maybe I could teach you something, too. Go mine 5 @@. You should find some at northeast of the Island.", getmonsterlink(DiamondBif));
next;
mesn;
mesq l("These monsters are a great source of raw crafting materials.");
@@ -180,12 +180,12 @@ OnKillMBif:
.@q=getq(CandorQuest_Rosen);
.@k=getq2(CandorQuest_Rosen); // Get number of kills (via getq2)
if (.@q == 1) {
- if (.@k+1 >= 10) {
+ if (.@k+1 >= 5) {
rosen_max_kills();
message strcharinfo(0), l("Go back to Rosen!");
} else {
rosen_add_kills();
- message strcharinfo(0), l("@@/10 @@", .@k+1, getmonsterlink(DiamondBif));
+ message strcharinfo(0), l("@@/5 @@", .@k+1, getmonsterlink(DiamondBif));
}
}
end;