summaryrefslogtreecommitdiff
path: root/world/map/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-02-01 04:52:36 -0300
committerJesusaves <cpntb1@ymail.com>2021-02-01 14:03:17 -0300
commit2f3450acff9b312514390e20a16af8453f9b60ed (patch)
treea0121066f531aeb2cf4e50571167b26cf4f2d482 /world/map/npc
parent08d133562bed6eb1ede86a5137070eccf7e1ea2f (diff)
downloadserverdata-2f3450acff9b312514390e20a16af8453f9b60ed.tar.gz
serverdata-2f3450acff9b312514390e20a16af8453f9b60ed.tar.bz2
serverdata-2f3450acff9b312514390e20a16af8453f9b60ed.tar.xz
serverdata-2f3450acff9b312514390e20a16af8453f9b60ed.zip
Apply all the proposed changes by TMWT
- Beheader Crit went from 40% to 30%* - Total req. kills went from 2000 to 1500 (roughly 6 hours less grinding) - Terranite Ore database prices were doubled - Give 400,000 experience instead of just 200k *: Bjorn advised that nerfing later is better than buffing later
Diffstat (limited to 'world/map/npc')
-rw-r--r--world/map/npc/012-3/beheader.txt8
-rw-r--r--world/map/npc/functions/mob_points.txt2
2 files changed, 5 insertions, 5 deletions
diff --git a/world/map/npc/012-3/beheader.txt b/world/map/npc/012-3/beheader.txt
index 7cbc079f..25885edb 100644
--- a/world/map/npc/012-3/beheader.txt
+++ b/world/map/npc/012-3/beheader.txt
@@ -97,7 +97,7 @@ L_Later:
L_Beheader:
if (FLAGS & FLAG_GOT_BEHEADER_SWORD) goto L_Again;
- if (TERRAC == 2001) goto L_Finish;
+ if (TERRAC == 1501) goto L_Finish;
if (TERRAC > 0) goto L_Status;
mes "";
mes "[The Beheader]";
@@ -123,14 +123,14 @@ L_Beheader:
L_Accept:
mes "";
mes "[The Beheader]";
- mes "So... Hmm, lemme think... Ah, I know! Thou shall ##Bkill me 2000 [@@m1062|@@]##b. Why? Because that's pointless, and you want a weapon you won't be able to use, so a pointless task for a pointless reward! Now get going!";
+ mes "So... Hmm, lemme think... Ah, I know! Thou shall ##Bkill me 1500 [@@m1062|@@]##b. Why? Because that's pointless, and you want a weapon you won't be able to use, so a pointless task for a pointless reward! Now get going!";
set TERRAC, 1;
close;
L_Status:
mes "";
mes "[The Beheader]";
- mes "\"Get going, running in circles and amusing me, you only killed "+(TERRAC-1)+"/2000 [@@m1062|@@] until now.\"";
+ mes "\"Get going, running in circles and amusing me, you only killed "+(TERRAC-1)+"/1500 [@@m1062|@@] until now.\"";
close;
L_Again:
@@ -168,7 +168,7 @@ L_Finish:
goto L_Nope;
getitem "Beheader", 1;
- getexp 200000, 0;
+ getexp 400000, 0;
set FLAGS, FLAGS | FLAG_GOT_BEHEADER_SWORD;
set TERRAC, 0;
diff --git a/world/map/npc/functions/mob_points.txt b/world/map/npc/functions/mob_points.txt
index 5ac9aebf..81e3c6d9 100644
--- a/world/map/npc/functions/mob_points.txt
+++ b/world/map/npc/functions/mob_points.txt
@@ -235,7 +235,7 @@ L_Celestia:
goto L_Terranite;
L_Terranite:
- if (TERRAC < 1 || TERRAC > 2000 || @mobID != 1062) goto L_Return;
+ if (TERRAC < 1 || TERRAC > 1500 || @mobID != 1062) goto L_Return;
if (TERRAC % 100 == 0)
message strcharinfo(0), "Terranite : ##3Total Terranites Slain: "+TERRAC;
set TERRAC, TERRAC + 1;