Ok so, Right now on my 718 server if your playing on easy, you get alot more xp in all skills rather then someone on extreme, which is unfair.
So basically i want to make it so that only combats recieve different xp rates, and all skilling is the same for everyone.
This is the code that declares the xp the different difficulties get.
Code:
if (player.getDifficulty() == 1) {
exp *= 140; // Super Easy
} else if (player.getDifficulty() == 2) {
exp *= 110; // Easy
} else if (player.getDifficulty() == 3) {
exp *= 80; // Normal
} else if (player.getDifficulty() == 4) {
exp *= 50; // Hard
} else if (player.getDifficulty() == 5) {
exp *= 20; // Extreme
}
So if you can help me out and tell me what i need to add, I only want differnet xp rates on combats.
Thanks!