summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-01-06 17:15:48 -0300
committerJesusaves <cpntb1@ymail.com>2024-01-06 17:15:48 -0300
commitcd2361622ed79e15b562e69f3195e9ee3eb5b3c4 (patch)
tree778d57bb571e81601d23afc4c4ea7ec2b2928b38 /npc
parent4b369fbbf0a52f0310661607fbe2b1d96ecfd42c (diff)
downloadserverdata-cd2361622ed79e15b562e69f3195e9ee3eb5b3c4.tar.gz
serverdata-cd2361622ed79e15b562e69f3195e9ee3eb5b3c4.tar.bz2
serverdata-cd2361622ed79e15b562e69f3195e9ee3eb5b3c4.tar.xz
serverdata-cd2361622ed79e15b562e69f3195e9ee3eb5b3c4.zip
Nerf heavily the score for level and job level in Lightbringer
Diffstat (limited to 'npc')
-rw-r--r--npc/003-3/malindou.txt4
-rw-r--r--npc/functions/gmbot.txt6
2 files changed, 5 insertions, 5 deletions
diff --git a/npc/003-3/malindou.txt b/npc/003-3/malindou.txt
index 94eefb26f..c8c28f2df 100644
--- a/npc/003-3/malindou.txt
+++ b/npc/003-3/malindou.txt
@@ -739,8 +739,8 @@ OnInit:
if (.@score < 2)
continue;
// Level matrice
- .@score += min(15, .@blvl / 10);
- .@score += min(15, .@jlvl / 10);
+ .@score += min( 5, .@blvl / 30);
+ .@score += min(10, .@jlvl / 15);
// You're also disqualified if you have no chance to win the race
if (.@score <= (.@wscore - 57))
continue;
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt
index 2e270a88d..b79f5ad8a 100644
--- a/npc/functions/gmbot.txt
+++ b/npc/functions/gmbot.txt
@@ -212,8 +212,8 @@ function matrixlb {
// Magic Matrice
.@pts+=min(7, MAGIC_LVL);
// Main levels matrix
- .@pts+=min(15, BaseLevel/10);
- .@pts+=min(15, JobLevel/10);
+ .@pts+=min(5, BaseLevel/30);
+ .@pts+=min(10, JobLevel/15);
// Scoreboards matrix
.@br=array_find($@hoblvl_name$, strcharinfo(0));
.@jr=array_find($@hojlvl_name$, strcharinfo(0));
@@ -267,7 +267,7 @@ function matrixlb {
// Interest (every 30 minutes rented is a point, up to 3 hours)
.@pts += limit(0, LB_WIELD / 1800, 6);
- // Max points: 101→104→114→117→124→130
+ // Max points: 101→104→114→117→124→130→115
return .@pts;
}