mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-21 09:02:07 -07:00
lower exp modifier
This commit is contained in:
parent
9851e5964f
commit
3fedcc9bef
1 changed files with 3 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue