summaryrefslogtreecommitdiff
path: root/npc/functions
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/functions
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/functions')
-rw-r--r--npc/functions/gmbot.txt6
1 files changed, 3 insertions, 3 deletions
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;
}