From 3fedcc9bef39a3e58e69df74d47e7fcd27ad5c2a Mon Sep 17 00:00:00 2001 From: RedSparr0w Date: Sat, 21 Sep 2019 01:14:14 +1200 Subject: [PATCH] lower exp modifier --- .../src/org/crandor/game/content/skill/Skills.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/09HDscape-server/src/org/crandor/game/content/skill/Skills.java b/09HDscape-server/src/org/crandor/game/content/skill/Skills.java index 216239b78..5e74bf52f 100644 --- a/09HDscape-server/src/org/crandor/game/content/skill/Skills.java +++ b/09HDscape-server/src/org/crandor/game/content/skill/Skills.java @@ -28,7 +28,7 @@ public final class Skills { /** * Represents the constant modifier of experience. */ - public static final double EXPERIENCE_MULTIPLIER = 35.3; + public static final double EXPERIENCE_MULTIPLIER = 25; /** * The maximum experience multiplier. @@ -267,12 +267,13 @@ public final class Skills { } //A boost for combat skills that are under level 65. if(entity instanceof Player && !this.hasLevel(slot, 65) && isCombat(slot)){ - mod *= 2.0; + mod *= 1.5; } //Grand Exchange region XP boost. if(entity.getViewport().getRegion().getRegionId() == 12598){ mod += 1.5; } + // Pest control, XP halved during the game if (entity.getViewport().getRegion().getRegionId() == 10536) { mod *= .5; }