Notice that the enchanted item in lv30 is too powerful and easy to get. I want to reduce the power the enchanted item by two ways. 1.Limit player level to a certain amount, say 20 Method A - When player level is 20, he won't absorb any exp orbs Method B - Or even he absorbed exp orbs, he won't level up 2.Control exp gaining amount by a multiplier or by fixed amount -Assume that killing a zombie gets 10 exp Method A - Multiplier of 0.5 makes you get 5 exp only (eg 0.3 to 3 exp) Method B - By setting exp of zombie is 5, you can get 5 exp only I do think that it is a problem to any servers. I do really appreciate anyone who can make one of those method. Thanks.
yea need too but with fell control on enchantmetnts. i want deny fortune and silktouch and set up expirinse per any mob, cube, action
http://jd.bukkit.org/apidocs/org/bukkit/event/player/PlayerExpChangeEvent.html int chance = getConfig().getInt("exp-chance"); //from 0-100 Random r = new Random(); int num = r.nextInt(chance) +1; if (num >= chance) { event.setCancelled(true); } 100 = always drop exp, 50 = drop exp half as much
Yea I'm glad to hear that. Can you follow make a level limiter, like what I said in Bullet point 1? I think it will be very simple and lightweight. Thank you! In addition, you can make a lot of advanced stuffs on it like -Different groups have different behaviour, such as normal players have limit of lv20 while VIP have 30. Make a permission like maxlv.30 to have permission to level up to lv30. -Multiworld -Editable language and configs Looks like it will be quite awesome!
I would like to have this plugin too. But can you also make that higher level you are, you will get more health and damage. That would be awesome!
Hmm I might not make this because it seems to already be pretty much made ... http://dev.bukkit.org/server-mods/miner/
Can you make a plugin implement the function of my #5 reply? I think it is a lot more lightweight. 1.Limit player level to a certain amount, say 20 Method A - When player level is 20, he won't absorb any exp orbs Method B - Or even he absorbed exp orbs, he won't level up I hope you can make one of the method above! Thanks