Advertisement
strikero

mergedmob

Dec 13th, 2015
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.60 KB | None | 0 0
  1. # This is a template config file
  2. # define your parameter and its value like:
  3. Messages:
  4. ErrorMsg : "&c[MergedMob] : Some error occured."
  5.  
  6. HelpMessages:
  7. banner:
  8. msg: "=== &e[&aMergedMob Commands List (%version%)&e] &r==="
  9. help:
  10. msg: "&a/mergedmob help : displays this help menu."
  11. reload:
  12. msg: "&a/mergedmob reload : reloads config file."
  13. permission: "mergedmob.reload"
  14. debug:
  15. msg: "&a/mergedmob debug <true|false> : turn on / off the debug mode."
  16. permission: "mergedmob.debug"
  17.  
  18. MergeCheckInterval: 1 #in second.
  19.  
  20. NumberRegex: "([0-9]+)(X)" #this corresponds to %number%X in DisplayFormat
  21. DisplayFormat: "&d%number%X &6%type%"
  22.  
  23. # limit merge to spawner mobs
  24. MergeOnlySpawnerMobs: false
  25.  
  26. # whether villager zombies should be merged
  27. MergeVillagerZombie: false
  28. MergeBabyZombie: false
  29.  
  30. # whether leave 10 villagers nearby
  31. LeaveMinimumVillagersForIronGolem: true
  32.  
  33. # whether mobs with different equipments should get merged or not
  34. MergeEquipped: false
  35.  
  36. # whether baby mobs get merged with the normal mob.
  37. MergeBabyAnimal: false
  38.  
  39. # for merge_type,
  40. # AVERAGE : merged mob's health would be the average of all merged mobs
  41. # MINIMUM : merged mob's health would be the minimum health of all merged mobs
  42. # MAXIMUM : merged mob's health woudl be the maxinum health of all merged mobs
  43. # FULL : merged mob's health would be always full.
  44. DefaultMergeType: MINIMUM
  45.  
  46. #
  47. # if the cause of mob death was one of reason listed beloe
  48. # only one mob in the merged mob will be killed.
  49. # all other cause will kill entire merged mobs.
  50. # followings are the cause of damae you can specify
  51. #
  52. # BLOCK_EXPLOSION : Damage caused by being in the area when a block explodes.
  53. # CONTACT : Damage caused when an entity contacts a block such as a Cactus.
  54. # CUSTOM : Custom damage.
  55. # DROWNING : Damage caused by running out of air while in water
  56. # ENTITY_ATTACK : Damage caused when an entity attacks another entity.
  57. # ENTITY_EXPLOSION : Damage caused by being in the area when an entity, such as a Creeper, explodes.
  58. # FALL : Damage caused when an entity falls a distance greater than 3 blocks
  59. # FALLING_BLOCK Damage caused by being hit by a falling block which deals damage
  60. # FIRE : Damage caused by direct exposure to fire
  61. # FIRE_TICK : Damage caused due to burns caused by fire
  62. # LAVA : Damage caused by direct exposure to lava
  63. # LIGHTNING : Damage caused by being struck by lightning
  64. # MAGIC : Damage caused by being hit by a damage potion or spell
  65. # MELTING : Damage caused due to a snowman melting
  66. # POISON : Damage caused due to an ongoing poison effect
  67. # PROJECTILE : Damage caused when attacked by a projectile.
  68. # STARVATION : Damage caused by starving due to having an empty hunger bar
  69. # SUFFOCATION : Damage caused by being put in a block
  70. # SUICIDE : Damage caused by committing suicide using the command "/kill"
  71. # THORNS : Damage caused in retaliation to another attack by the Thorns enchantment.
  72. # VOID : Damage caused by falling into the void
  73. # WITHER : Damage caused by Wither potion effect
  74. CauseToKillOne:
  75. - ENTITY_ATTACK
  76.  
  77. # if this option is true, the plugin will attempt to kill all merged mobs
  78. # when the mergedmob is killed.
  79. EnableKillAll: true
  80.  
  81. # if thie option is true, the drops from kill all will be randomized.
  82. # if it's false, drops will be simply multiplied by the merged count.
  83. RandomizeKillAllDrops: false
  84.  
  85. # Chicken Egg Drop Randomisor
  86. # if one egg is dropped, the percentage represented by the following rate
  87. # would also drop eggs.
  88. # num_of_egg = merged_count * EggDropRate * random (0.0 - 1.0);
  89. EggDropRate: 0.5
  90.  
  91. #
  92. # Sheep related
  93. # if MergeSheard: true, shearing will drop wool * merged count
  94. MergeSheared: false
  95. MergeColored: false
  96.  
  97. #
  98. # Mobs with armors/weapons
  99. # if MergeEquipped is false, mobs with different armors/weapons won't get merged.
  100. MergeEquipped: false
  101.  
  102. # merging will be disabled in the world listed here.
  103. #DisabledWorlds:
  104. # - plotworld
  105.  
  106. #
  107. Mobs:
  108. CHICKEN:
  109. radius: 2
  110. leave_pair: true
  111. merge_type: AVERAGE
  112. COW:
  113. radius: 2
  114. leave_pair: true
  115. PIG:
  116. alias: "&dPiggy!"
  117. radius: 2
  118. leave_pair: true
  119. SHEEP:
  120. radius: 2
  121. leave_pair: true
  122. VILLAGER:
  123. radius: 1
  124. leave_pair: true
  125. merge_type: MAXIMUM
  126. WOLF:
  127. radius: 1
  128. leave_pair: true
  129. BLAZE:
  130. radius: 1
  131. SKELETON:
  132. radius: 1
  133. ZOMBIE:
  134. radius: 1
  135. merge_type: MINIMUM
  136. SPIDER:
  137. radius: 1
  138. CAVE_SPIDER:
  139. radius: 1
  140. CREEPER:
  141. radius: 2
  142. ENDERMAN:
  143. radius: 3
  144. GHAST:
  145. radius: 1
  146. GUARDIAN:
  147. radius: 1
  148. IRON_GOLEM:
  149. radius: 4
  150. SLIME:
  151. radius: 1
  152. WITCH:
  153. radius: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement