东药君
类型:CraftBukkit(不是MOD!!!最后再说一遍不是MOD!!!!!)

就是怎样获取玩家buff的等级

类似于速度buff、治疗buff之类的



Karlatemp
https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/LivingEntity.html#getPotionEffect-org.bukkit.potion.PotionEffectType-

https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffect.html#getAmplifier--

wshycaa
Collection<PotionEffect> peffect = p.getActivePotionEffects();
                                for (PotionEffect eff : peffect) {
                                        if (eff.getType().equals(PotionEffectType.getById(id))) {
                                                int level = eff.getAmplifier() + 1;