mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 05:36:46 +01:00
Made xp sharing less ugly by reworking McMMOPlayer xp methods
Notable consequence: checkXP and addLevel in ExperienceAPI are no longer needed and became deprecated
This commit is contained in:
parent
6d871c9bdb
commit
a1ab6f286b
@ -2,6 +2,7 @@ package com.gmail.nossr50.api;
|
|||||||
|
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import com.gmail.nossr50.config.Config;
|
||||||
import com.gmail.nossr50.skills.utilities.SkillTools;
|
import com.gmail.nossr50.skills.utilities.SkillTools;
|
||||||
import com.gmail.nossr50.skills.utilities.SkillType;
|
import com.gmail.nossr50.skills.utilities.SkillType;
|
||||||
import com.gmail.nossr50.util.Users;
|
import com.gmail.nossr50.util.Users;
|
||||||
@ -14,6 +15,7 @@ public final class ExperienceAPI {
|
|||||||
*
|
*
|
||||||
* @param player The player to check
|
* @param player The player to check
|
||||||
* @param skillType The skill to check
|
* @param skillType The skill to check
|
||||||
|
* @deprecated Calling this function is no longer needed and should be avoided
|
||||||
*/
|
*/
|
||||||
private static void checkXP(Player player, SkillType skillType) {
|
private static void checkXP(Player player, SkillType skillType) {
|
||||||
if (skillType.equals(SkillType.ALL)) {
|
if (skillType.equals(SkillType.ALL)) {
|
||||||
@ -25,7 +27,7 @@ public final class ExperienceAPI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds XP to the player, doesn't calculate for XP Rate or other modifiers.
|
* Adds raw XP to the player.
|
||||||
* </br>
|
* </br>
|
||||||
* This function is designed for API usage.
|
* This function is designed for API usage.
|
||||||
*
|
*
|
||||||
@ -34,12 +36,11 @@ public final class ExperienceAPI {
|
|||||||
* @param XP The amount of XP to add
|
* @param XP The amount of XP to add
|
||||||
*/
|
*/
|
||||||
public static void addRawXP(Player player, SkillType skillType, int XP) {
|
public static void addRawXP(Player player, SkillType skillType, int XP) {
|
||||||
Users.getPlayer(player).addXpOverride(skillType, XP);
|
Users.getPlayer(player).applyXpGain(skillType, XP);
|
||||||
checkXP(player, skillType);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds XP to the player, calculates for XP Rate but not skill modifiers.
|
* Adds XP to the player, calculates for XP Rate only.
|
||||||
* </br>
|
* </br>
|
||||||
* This function is designed for API usage.
|
* This function is designed for API usage.
|
||||||
*
|
*
|
||||||
@ -48,12 +49,11 @@ public final class ExperienceAPI {
|
|||||||
* @param XP The amount of XP to add
|
* @param XP The amount of XP to add
|
||||||
*/
|
*/
|
||||||
public static void addMultipliedXP(Player player, SkillType skillType, int XP) {
|
public static void addMultipliedXP(Player player, SkillType skillType, int XP) {
|
||||||
Users.getPlayer(player).addXpOverrideBonus(skillType, XP);
|
Users.getPlayer(player).applyXpGain(skillType, (int) (XP * Config.getInstance().getExperienceGainsGlobalMultiplier()));
|
||||||
checkXP(player, skillType);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds XP to the player, calculates for XP Rate and skill modifiers.
|
* Adds XP to the player, calculates for XP Rate, skill modifiers and perks. May be shared with the party.
|
||||||
* </br>
|
* </br>
|
||||||
* This function is designed for API usage.
|
* This function is designed for API usage.
|
||||||
*
|
*
|
||||||
@ -62,8 +62,7 @@ public final class ExperienceAPI {
|
|||||||
* @param XP The amount of XP to add
|
* @param XP The amount of XP to add
|
||||||
*/
|
*/
|
||||||
public static void addXP(Player player, SkillType skillType, int XP) {
|
public static void addXP(Player player, SkillType skillType, int XP) {
|
||||||
Users.getPlayer(player).addXp(skillType, XP);
|
Users.getPlayer(player).beginXpGain(skillType, XP);
|
||||||
checkXP(player, skillType);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -100,7 +99,8 @@ public final class ExperienceAPI {
|
|||||||
* @param player The player to add levels to
|
* @param player The player to add levels to
|
||||||
* @param skillType Type of skill to add levels to
|
* @param skillType Type of skill to add levels to
|
||||||
* @param levels Number of levels to add
|
* @param levels Number of levels to add
|
||||||
* @param notify True if this should fire a level up notification, false otherwise.
|
* @param notify Unused argument
|
||||||
|
* @deprecated Use addLevel(Player, SKillType, int) instead
|
||||||
*/
|
*/
|
||||||
public static void addLevel(Player player, SkillType skillType, int levels, boolean notify) {
|
public static void addLevel(Player player, SkillType skillType, int levels, boolean notify) {
|
||||||
Users.getProfile(player).addLevels(skillType, levels);
|
Users.getProfile(player).addLevels(skillType, levels);
|
||||||
@ -110,6 +110,20 @@ public final class ExperienceAPI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add levels to a skill.
|
||||||
|
* </br>
|
||||||
|
* This function is designed for API usage.
|
||||||
|
*
|
||||||
|
* @param player The player to add levels to
|
||||||
|
* @param skillType Type of skill to add levels to
|
||||||
|
* @param levels Number of levels to add
|
||||||
|
* @param notify True if this should fire a level up notification, false otherwise.
|
||||||
|
*/
|
||||||
|
public static void addLevel(Player player, SkillType skillType, int levels) {
|
||||||
|
Users.getProfile(player).addLevels(skillType, levels);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the level a player has in a specific skill.
|
* Get the level a player has in a specific skill.
|
||||||
* </br>
|
* </br>
|
||||||
|
@ -44,14 +44,17 @@ public class AddxpCommand implements CommandExecutor {
|
|||||||
mcMMOPlayer = Users.getPlayer(modifiedPlayer);
|
mcMMOPlayer = Users.getPlayer(modifiedPlayer);
|
||||||
profile = mcMMOPlayer.getProfile();
|
profile = mcMMOPlayer.getProfile();
|
||||||
|
|
||||||
mcMMOPlayer.addXpOverride(skill, xp);
|
|
||||||
|
|
||||||
if (skill.equals(SkillType.ALL)) {
|
if (skill.equals(SkillType.ALL)) {
|
||||||
SkillTools.xpCheckAll(modifiedPlayer, profile);
|
for (SkillType skillType : SkillType.values()) {
|
||||||
|
if (!skillType.isChildSkill()) {
|
||||||
|
mcMMOPlayer.applyXpGain(skill, xp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
sender.sendMessage(LocaleLoader.getString("Commands.addxp.AwardAll", xp));
|
sender.sendMessage(LocaleLoader.getString("Commands.addxp.AwardAll", xp));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
SkillTools.xpCheckSkill(skill, modifiedPlayer, profile);
|
mcMMOPlayer.applyXpGain(skill, xp);
|
||||||
sender.sendMessage(LocaleLoader.getString("Commands.addxp.AwardSkill", xp, Misc.getCapitalized(skill.toString())));
|
sender.sendMessage(LocaleLoader.getString("Commands.addxp.AwardSkill", xp, Misc.getCapitalized(skill.toString())));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -85,7 +88,7 @@ public class AddxpCommand implements CommandExecutor {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// This is basically a copy of McMMOPlayer.addXpOverride(), this method should probably be moved to PlayerProfile to avoid that
|
// TODO: Currently the offline player doesn't level up automatically
|
||||||
if (skill.equals(SkillType.ALL)) {
|
if (skill.equals(SkillType.ALL)) {
|
||||||
for (SkillType type : SkillType.values()) {
|
for (SkillType type : SkillType.values()) {
|
||||||
if (type.equals(SkillType.ALL) || type.isChildSkill()) {
|
if (type.equals(SkillType.ALL) || type.isChildSkill()) {
|
||||||
@ -94,19 +97,15 @@ public class AddxpCommand implements CommandExecutor {
|
|||||||
|
|
||||||
profile.setSkillXpLevel(type, profile.getSkillXpLevel(type) + xp);
|
profile.setSkillXpLevel(type, profile.getSkillXpLevel(type) + xp);
|
||||||
}
|
}
|
||||||
// TODO: Find a way to make it work, it currently requires a valid Player
|
|
||||||
// SkillTools.xpCheckAll(modifiedPlayer, profile);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
profile.setSkillXpLevel(skill, profile.getSkillXpLevel(skill) + xp);
|
profile.setSkillXpLevel(skill, profile.getSkillXpLevel(skill) + xp);
|
||||||
// TODO: Find a way to make it work, it currently requires a valid Player
|
|
||||||
// SkillTools.xpCheckSkill(skill, modifiedPlayer, profile);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
profile.save(); // Since this is a temporary profile, we save it here.
|
profile.save(); // Since this is a temporary profile, we save it here.
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mcMMOPlayer.addXpOverride(skill, xp);
|
mcMMOPlayer.applyXpGain(skill, xp);
|
||||||
|
|
||||||
modifiedPlayer = mcMMOPlayer.getPlayer();
|
modifiedPlayer = mcMMOPlayer.getPlayer();
|
||||||
profile = mcMMOPlayer.getProfile();
|
profile = mcMMOPlayer.getProfile();
|
||||||
@ -114,11 +113,9 @@ public class AddxpCommand implements CommandExecutor {
|
|||||||
if (modifiedPlayer.isOnline()) {
|
if (modifiedPlayer.isOnline()) {
|
||||||
if (skill.equals(SkillType.ALL)) {
|
if (skill.equals(SkillType.ALL)) {
|
||||||
modifiedPlayer.sendMessage(LocaleLoader.getString("Commands.addxp.AwardAll", xp));
|
modifiedPlayer.sendMessage(LocaleLoader.getString("Commands.addxp.AwardAll", xp));
|
||||||
SkillTools.xpCheckAll(modifiedPlayer, profile);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
modifiedPlayer.sendMessage(LocaleLoader.getString("Commands.addxp.AwardSkill", xp, Misc.getCapitalized(skill.toString())));
|
modifiedPlayer.sendMessage(LocaleLoader.getString("Commands.addxp.AwardSkill", xp, Misc.getCapitalized(skill.toString())));
|
||||||
SkillTools.xpCheckSkill(skill, modifiedPlayer, profile);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,65 +53,69 @@ public class McMMOPlayer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds Xp to the player, doesn't calculate for Xp Rate
|
* Begins an experience gain. The amount will be affected by skill modifiers, global rate, perks, and may be shared with the party
|
||||||
*
|
*
|
||||||
* @param skillType The skill to add Xp to
|
* @param skillType Skill being used
|
||||||
* @param xp The amount of Xp to add
|
* @param xp Experience amount to process
|
||||||
*/
|
*/
|
||||||
public void addXpOverride(SkillType skillType, int xp) {
|
public void beginXpGain(SkillType skillType, int xp) {
|
||||||
if (skillType.equals(SkillType.ALL)) {
|
// Return if the experience has been shared
|
||||||
for (SkillType type : SkillType.values()) {
|
if (party != null && ShareHandler.handleXpShare(xp, this, skillType)) {
|
||||||
if (type.equals(SkillType.ALL) || type.isChildSkill()) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
mcMMO.p.getServer().getPluginManager().callEvent(new McMMOPlayerXpGainEvent(player, type, xp));
|
|
||||||
profile.setSkillXpLevel(type, profile.getSkillXpLevel(type) + xp);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
mcMMO.p.getServer().getPluginManager().callEvent(new McMMOPlayerXpGainEvent(player, skillType, xp));
|
|
||||||
profile.setSkillXpLevel(skillType, profile.getSkillXpLevel(skillType) + xp);
|
|
||||||
|
|
||||||
SpoutHud spoutHud = profile.getSpoutHud();
|
|
||||||
|
|
||||||
if (spoutHud != null) {
|
|
||||||
spoutHud.setLastGained(skillType);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds Xp to the player, this ignores skill modifiers.
|
|
||||||
*
|
|
||||||
* @param skillType The skill to add Xp to
|
|
||||||
* @param xp The amount of Xp to add
|
|
||||||
*/
|
|
||||||
public void addXpOverrideBonus(SkillType skillType, int xp) {
|
|
||||||
int modifiedXp = (int) Math.floor(xp * Config.getInstance().getExperienceGainsGlobalMultiplier());
|
|
||||||
addXpOverride(skillType, modifiedXp);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds experience to the player, this is affected by skill modifiers, rate and permissions
|
|
||||||
*
|
|
||||||
* @param skillType The skill to add Xp to
|
|
||||||
* @param xp The amount of Xp to add
|
|
||||||
*/
|
|
||||||
public void addXp(SkillType skillType, int xp) {
|
|
||||||
if (player.getGameMode() == GameMode.CREATIVE) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (party != null && !ShareHandler.isRunning()) {
|
beginUnsharedXpGain(skillType, xp);
|
||||||
// Return if the Xp has been shared
|
}
|
||||||
if (ShareHandler.handleEqualXpShare(xp, this, skillType)) {
|
|
||||||
return;
|
/**
|
||||||
}
|
* Begins an experience gain. The amount will be affected by skill modifiers, global rate and perks
|
||||||
|
*
|
||||||
|
* @param skillType Skill being used
|
||||||
|
* @param xp Experience amount to process
|
||||||
|
*/
|
||||||
|
public void beginUnsharedXpGain(SkillType skillType, int xp) {
|
||||||
|
xp = modifyXpGain(skillType, xp);
|
||||||
|
|
||||||
|
if (xp == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
applyXpGain(skillType, xp);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Applies an experience gain
|
||||||
|
*
|
||||||
|
* @param skillType Skill being used
|
||||||
|
* @param xp Experience amount to add
|
||||||
|
*/
|
||||||
|
public void applyXpGain(SkillType skillType, int xp) {
|
||||||
|
mcMMO.p.getServer().getPluginManager().callEvent(new McMMOPlayerXpGainEvent(player, skillType, xp));
|
||||||
|
profile.setSkillXpLevel(skillType, profile.getSkillXpLevel(skillType) + xp);
|
||||||
|
|
||||||
|
SpoutHud spoutHud = profile.getSpoutHud();
|
||||||
|
|
||||||
|
if (spoutHud != null) {
|
||||||
|
spoutHud.setLastGained(skillType);
|
||||||
|
}
|
||||||
|
|
||||||
|
SkillTools.xpCheckSkill(skillType, player, profile);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Modifies an experience gain using skill modifiers, global rate and perks
|
||||||
|
*
|
||||||
|
* @param skillType Skill being used
|
||||||
|
* @param xp Experience amount to process
|
||||||
|
* @return Modified experience
|
||||||
|
*/
|
||||||
|
private int modifyXpGain(SkillType skillType, int xp) {
|
||||||
|
if (player.getGameMode() == GameMode.CREATIVE) {
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((skillType.getMaxLevel() < profile.getSkillLevel(skillType) + 1) || (Misc.getPowerLevelCap() < getPowerLevel() + 1)) {
|
if ((skillType.getMaxLevel() < profile.getSkillLevel(skillType) + 1) || (Misc.getPowerLevelCap() < getPowerLevel() + 1)) {
|
||||||
return;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
xp = (int) (xp / skillType.getXpModifier() * Config.getInstance().getExperienceGainsGlobalMultiplier());
|
xp = (int) (xp / skillType.getXpModifier() * Config.getInstance().getExperienceGainsGlobalMultiplier());
|
||||||
@ -121,11 +125,11 @@ public class McMMOPlayer {
|
|||||||
CustomTool tool = ModChecks.getToolFromItemStack(item);
|
CustomTool tool = ModChecks.getToolFromItemStack(item);
|
||||||
|
|
||||||
if (tool != null) {
|
if (tool != null) {
|
||||||
xp = (int) (xp * tool.getXpMultiplier());
|
xp *= tool.getXpMultiplier();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: find a better way to do this, if possible
|
// TODO: Too many permission checks here, is there no way to avoid that?
|
||||||
if (Permissions.xpQuadruple(player)) {
|
if (Permissions.xpQuadruple(player)) {
|
||||||
xp *= 4;
|
xp *= 4;
|
||||||
}
|
}
|
||||||
@ -142,16 +146,7 @@ public class McMMOPlayer {
|
|||||||
xp *= 1.5;
|
xp *= 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMO.p.getServer().getPluginManager().callEvent(new McMMOPlayerXpGainEvent(player, skillType, xp));
|
return xp;
|
||||||
profile.setSkillXpLevel(skillType, profile.getSkillXpLevel(skillType) + xp);
|
|
||||||
|
|
||||||
SpoutHud spoutHud = profile.getSpoutHud();
|
|
||||||
|
|
||||||
if (spoutHud != null) {
|
|
||||||
spoutHud.setLastGained(skillType);
|
|
||||||
}
|
|
||||||
|
|
||||||
SkillTools.xpCheckSkill(skillType, player, profile);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Players & Profiles
|
// Players & Profiles
|
||||||
|
@ -27,8 +27,6 @@ public final class ShareHandler {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
private static boolean running; // Used to prevent permanent sharing, McMMOPlayer.addXp() uses it
|
|
||||||
|
|
||||||
private ShareHandler() {}
|
private ShareHandler() {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -39,8 +37,7 @@ public final class ShareHandler {
|
|||||||
* @param skillType Skill being used
|
* @param skillType Skill being used
|
||||||
* @return True is the xp has been shared
|
* @return True is the xp has been shared
|
||||||
*/
|
*/
|
||||||
public static boolean handleEqualXpShare(int xp, McMMOPlayer mcMMOPlayer, SkillType skillType) {
|
public static boolean handleXpShare(int xp, McMMOPlayer mcMMOPlayer, SkillType skillType) {
|
||||||
running = true;
|
|
||||||
Party party = mcMMOPlayer.getParty();
|
Party party = mcMMOPlayer.getParty();
|
||||||
|
|
||||||
switch (party.getXpShareMode()) {
|
switch (party.getXpShareMode()) {
|
||||||
@ -49,7 +46,6 @@ public final class ShareHandler {
|
|||||||
List<Player> nearMembers = PartyManager.getNearMembers(player, party, Config.getInstance().getPartyShareRange());
|
List<Player> nearMembers = PartyManager.getNearMembers(player, party, Config.getInstance().getPartyShareRange());
|
||||||
|
|
||||||
if (nearMembers.isEmpty()) {
|
if (nearMembers.isEmpty()) {
|
||||||
running = false;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -58,21 +54,16 @@ public final class ShareHandler {
|
|||||||
int roundedXp = (int) Math.ceil(splitXp);
|
int roundedXp = (int) Math.ceil(splitXp);
|
||||||
|
|
||||||
for (Player member : nearMembers) {
|
for (Player member : nearMembers) {
|
||||||
Users.getPlayer(member).addXp(skillType, roundedXp);
|
Users.getPlayer(member).beginUnsharedXpGain(skillType, roundedXp);
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMOPlayer.addXp(skillType, roundedXp);
|
mcMMOPlayer.beginUnsharedXpGain(skillType, roundedXp);
|
||||||
|
|
||||||
running = false;
|
|
||||||
return true;
|
return true;
|
||||||
case NONE:
|
case NONE:
|
||||||
default:
|
default:
|
||||||
running = false;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isRunning() {
|
|
||||||
return running;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ public class DodgeEventHandler extends AcrobaticsEventHandler {
|
|||||||
McMMOPlayer mcMMOPlayer = manager.getMcMMOPlayer();
|
McMMOPlayer mcMMOPlayer = manager.getMcMMOPlayer();
|
||||||
|
|
||||||
if (System.currentTimeMillis() >= mcMMOPlayer.getProfile().getRespawnATS() + Misc.PLAYER_RESPAWN_COOLDOWN_SECONDS) {
|
if (System.currentTimeMillis() >= mcMMOPlayer.getProfile().getRespawnATS() + Misc.PLAYER_RESPAWN_COOLDOWN_SECONDS) {
|
||||||
manager.getMcMMOPlayer().addXp(SkillType.ACROBATICS, xp);
|
manager.getMcMMOPlayer().beginXpGain(SkillType.ACROBATICS, xp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -69,7 +69,7 @@ public class RollEventHandler extends AcrobaticsEventHandler {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void processXpGain(int xp) {
|
protected void processXpGain(int xp) {
|
||||||
manager.getMcMMOPlayer().addXp(SkillType.ACROBATICS, xp);
|
manager.getMcMMOPlayer().beginXpGain(SkillType.ACROBATICS, xp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -34,7 +34,7 @@ public class ArcheryManager extends SkillManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int bonusXp = (int) (squaredDistance * Archery.distanceXpModifer);
|
int bonusXp = (int) (squaredDistance * Archery.distanceXpModifer);
|
||||||
mcMMOPlayer.addXp(SkillType.ARCHERY, bonusXp);
|
mcMMOPlayer.beginXpGain(SkillType.ARCHERY, bonusXp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -119,7 +119,7 @@ public class Excavation {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMOPlayer.addXp(SkillType.EXCAVATION, xp);
|
mcMMOPlayer.beginXpGain(SkillType.EXCAVATION, xp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -128,7 +128,7 @@ public final class Fishing {
|
|||||||
caught.setItemStack(treasureDrop);
|
caught.setItemStack(treasureDrop);
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMOPlayer.addXp(SkillType.FISHING, Config.getInstance().getFishingBaseXP() + treasureXp);
|
mcMMOPlayer.beginXpGain(SkillType.FISHING, Config.getInstance().getFishingBaseXP() + treasureXp);
|
||||||
event.setExpToDrop(event.getExpToDrop() * getVanillaXpMultiplier(skillLevel));
|
event.setExpToDrop(event.getExpToDrop() * getVanillaXpMultiplier(skillLevel));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ public class Herbalism {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMOPlayer.addXp(SkillType.HERBALISM, xp);
|
mcMMOPlayer.beginXpGain(SkillType.HERBALISM, xp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -104,7 +104,7 @@ public class Mining {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMOPlayer.addXp(SkillType.MINING, xp);
|
mcMMOPlayer.beginXpGain(SkillType.MINING, xp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -48,7 +48,7 @@ public class Repair {
|
|||||||
Player player = mcMMOPlayer.getPlayer();
|
Player player = mcMMOPlayer.getPlayer();
|
||||||
|
|
||||||
player.playSound(player.getLocation(), Sound.ANVIL_USE, Misc.ANVIL_USE_VOLUME, Misc.ANVIL_USE_PITCH);
|
player.playSound(player.getLocation(), Sound.ANVIL_USE, Misc.ANVIL_USE_VOLUME, Misc.ANVIL_USE_PITCH);
|
||||||
mcMMOPlayer.addXp(SkillType.REPAIR, dif * 10);
|
mcMMOPlayer.beginXpGain(SkillType.REPAIR, dif * 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -35,6 +35,6 @@ public class CombatXpGiver implements Runnable {
|
|||||||
damage += health;
|
damage += health;
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMOPlayer.addXp(skillType, (int) (damage * baseXp));
|
mcMMOPlayer.beginXpGain(skillType, (int) (damage * baseXp));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -68,11 +68,11 @@ public class SmeltResourceEventHandler {
|
|||||||
Player player = mcMMOPlayer.getPlayer();
|
Player player = mcMMOPlayer.getPlayer();
|
||||||
|
|
||||||
if (Permissions.mining(player)) {
|
if (Permissions.mining(player)) {
|
||||||
mcMMOPlayer.addXp(SkillType.MINING, xp / 2);
|
mcMMOPlayer.beginXpGain(SkillType.MINING, xp / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Permissions.repair(player)) {
|
if (Permissions.repair(player)) {
|
||||||
mcMMOPlayer.addXp(SkillType.REPAIR, xp / 2);
|
mcMMOPlayer.beginXpGain(SkillType.REPAIR, xp / 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,11 +33,11 @@ public class TamingManager extends SkillManager {
|
|||||||
|
|
||||||
switch (event.getEntityType()) {
|
switch (event.getEntityType()) {
|
||||||
case WOLF:
|
case WOLF:
|
||||||
mcMMOPlayer.addXp(SkillType.TAMING, Taming.wolfXp);
|
mcMMOPlayer.beginXpGain(SkillType.TAMING, Taming.wolfXp);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case OCELOT:
|
case OCELOT:
|
||||||
mcMMOPlayer.addXp(SkillType.TAMING, Taming.ocelotXp);
|
mcMMOPlayer.beginXpGain(SkillType.TAMING, Taming.ocelotXp);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -220,6 +220,6 @@ public final class TreeFeller {
|
|||||||
block.setType(Material.AIR);
|
block.setType(Material.AIR);
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMOPlayer.addXp(SkillType.WOODCUTTING, xp);
|
mcMMOPlayer.beginXpGain(SkillType.WOODCUTTING, xp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -80,7 +80,7 @@ public final class Woodcutting {
|
|||||||
checkForDoubleDrop(mcMMOPlayer, block);
|
checkForDoubleDrop(mcMMOPlayer, block);
|
||||||
}
|
}
|
||||||
|
|
||||||
mcMMOPlayer.addXp(SkillType.WOODCUTTING, xp);
|
mcMMOPlayer.beginXpGain(SkillType.WOODCUTTING, xp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user