I've been looking for a plugin that disables only players dropping exp orbs upon death, and did not found anything (or anything up to date). The only plugin that could make it was NoExpOrb http://dev.bukkit.org/server-mods/noexporb/files/1-noexp-orb/ but it's so old that throws exceptions on server startups. Can't be used nowadays. I'm not able to do reverse engineering to that plugin, reforge it and launch for newer bukkit versions, I got not enough programming skills, but I think it could be a pretty simple thing to do for an experienced plugin developer. Don't misunderstand this resquest, I don't want players to keep their experience (fully or a fraction), for that there is a working addon named Inventory Drop Chance. I just want experience orbs to not spawn when a player dies.
Anyone who wants to do this, it's very simple: Code:java @EventHandlerpublic void onPlayerDeath(PlayerDeathEvent event){ event.setDroppedExp(0);}
If it's so easy, why it's not done already? The developer would probably make may day, even make my next christmas, lol Need that easy thing in a plugin, I request it (that what this section is for, isn't it?) Thanks in advance anyways, and thx chase for responding so fast.
If no-one gets around to a specialised plugin first then OtherDrops might be an option. I'm planning on adding a "drop: NOXP" option to the next version so the config would look something like this: Code: PLAYER: - drop: NOXP
EvilKanoa Already tested, it doesn't work well in my server, I think Item Drop Chance overrides it somehow.