I'm writing a plugin for a Minecraft server and have a piece of code that outputs the players total experience. The issue is the XP value it outputs doesn't change if the XP changes. For example, At level 50000 the XP was 2,147,483,647. When the level dropped to 4, the value of the XP stayed the same. Here's the code:
if (cmd.getName().equalsIgnoreCase("checkxp")) {
// If person is null, person is not a player!
if (person == null) {
sender.sendMessage("This command can only be used by a player, sorry!");
return false;
}
else {
int curxp;
Player player = (Player) sender;
curxp = player.getTotalExperience();
sender.sendMessage("You currently have: " + curxp + " XP!");
return true;
}
}
I guess my question is, how do I get this value to reset after it was ran so it re-checks the XP and updates the variable with the new amount? Thank you very much for any help!
sender? If nothing is changing that would be where I check first, you be be using an old sender and not getting a new one each time – dann.dev Feb 17 at 1:30