Advertisement
Legt_Gaming1

CONF WITH EVENT

Oct 27th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. @EventHandler
  2. public void onDeathPigman(EntityDeathEvent e) {
  3. Random random = new Random();
  4. int chance = random.nextInt(99);
  5. EntityDamageEvent.DamageCause cause = e.getEntity().getLastDamageCause().getCause();
  6. if (e.getEntityType() == EntityType.PIG_ZOMBIE) {
  7. if ((cause == EntityDamageEvent.DamageCause.ENTITY_ATTACK
  8. || cause == EntityDamageEvent.DamageCause.PROJECTILE || cause == EntityDamageEvent.DamageCause.FALL
  9. || cause == EntityDamageEvent.DamageCause.FIRE || cause == EntityDamageEvent.DamageCause.FIRE_TICK
  10. || cause == EntityDamageEvent.DamageCause.LAVA)) {
  11. if (chance <= this.getConfig().getInt("Mobs.ZombiePigman.Chance")) {
  12. List<String> drops = this.getConfig().getStringList("Mobs.ZombiePigman.Drop");
  13. for (String drop : drops) {
  14. drop.toUpperCase();
  15. e.getDrops().add(new ItemStack(Material.valueOf(drop.toUpperCase()), 1));
  16. }
  17.  
  18. }
  19. }
  20. }
  21. }
  22.  
  23. I HAVE ONE FOR EACH MOB ^^
  24.  
  25.  
  26.  
  27. CONFIG.YML
  28.  
  29. Mobs:
  30. Zombie:
  31. Drop:
  32. - Air
  33. - Emerald
  34. - Golden_Apple
  35. - Diamond
  36. Chance: 99
  37. Skeleton:
  38. Drop:
  39. - Air
  40. - Diamond
  41. Chance: 45
  42. Blaze:
  43. Drop:
  44. - Air
  45. - Diamond
  46. Chance: 45
  47. Creeper:
  48. Drop:
  49. - Air
  50. - Diamond
  51. Chance: 45
  52. IronGolem:
  53. Drop:
  54. - Air
  55. - Diamond
  56. Chance: 45
  57. Spider:
  58. Drop:
  59. - Air
  60. - Diamond
  61. Chance: 45
  62. ZombiePigman:
  63. Drop:
  64. - Air
  65. - Diamond
  66. Chance: 45
  67. Cow:
  68. Drop:
  69. - Air
  70. - Diamond
  71. Chance: 45
  72. Chicken:
  73. Drop:
  74. - Air
  75. - Diamond
  76. Chance: 45
  77. Pig:
  78. Drop:
  79. - Air
  80. - Diamond
  81. Chance: 45
  82. Villager:
  83. Drop:
  84. - Air
  85. - Diamond
  86. Chance: 45
  87. Wolf:
  88. Drop:
  89. - Air
  90. - Diamond
  91. Chance: 45
  92. Enderman:
  93. Drop:
  94. - Air
  95. - Diamond
  96. Chance: 45
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement