Advertisement
Guest User

Error

a guest
Dec 1st, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.67 KB | None | 0 0
  1.  
  2. Messages:
  3. ErrorMsg : "&c[MergedMob] : Some error occured."
  4.  
  5. HelpMessages:
  6. banner:
  7. msg: "=== &e[&aMergedMob Commands List (%version%)&e] &r==="
  8. help:
  9. msg: "&a/mergedmob help : displays this help menu."
  10. reload:
  11. msg: "&a/mergedmob reload : reloads config file."
  12. permission: "mergedmob.reload"
  13. debug:
  14. msg: "&a/mergedmob debug <true|false> : turn on / off the debug mode."
  15. permission: "mergedmob.debug"
  16.  
  17. MergeCheckInterval: 1 #in second.
  18.  
  19. NumberRegex: "([0-9]+)(X)" #this corresponds to %number%X in DisplayFormat
  20. DisplayFormat: "&d%number%X &6%type%"
  21.  
  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: FULL
  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. - BLOCK_EXPLOSION
  76. - CONTACT
  77. - CUSTOM
  78. - DROWNING
  79. - ENTITY_ATTACK
  80. - ENTITY_EXPLOSION
  81. - FALL
  82. - FALLING_BLOCK
  83. - FIRE
  84. - FIRE_TICK
  85. - LAVA
  86. - LIGHTNING
  87. - MAGIC
  88. - MELTING
  89. - POISON
  90. - PROJECTILE
  91. - STARVATION
  92. - SUFFOCATION
  93. - SUICIDE
  94. - THORNS
  95. - VOID
  96. - WITHER
  97.  
  98. # if this option is true, the plugin will attempt to kill all merged mobs
  99. # when the mergedmob is killed.
  100. EnableKillAll: false
  101.  
  102. # if thie option is true, the drops from kill all will be randomized.
  103. # if it's false, drops will be simply multiplied by the merged count.
  104. RandomizeKillAllDrops: true
  105.  
  106. # Chicken Egg Drop Randomisor
  107. # if one egg is dropped, the percentage represented by the following rate
  108. # would also drop eggs.
  109. # num_of_egg = merged_count * EggDropRate * random (0.0 - 1.0);
  110. EggDropRate: 0.0
  111.  
  112. #
  113. # Sheep related
  114. # if MergeSheard: true, shearing will drop wool * merged count
  115. MergeSheared: false
  116. MergeColored: false
  117.  
  118. # merging will be disabled in the world listed here.
  119. #DisabledWorlds:
  120. # - plotworld
  121.  
  122. #
  123. Mobs:
  124. BLAZE:
  125. radius: 3
  126. leave_pair: false
  127. merge_type: FULL
  128. max: -1 # max number of mobs being stacked, -1 = infinite.
  129. SKELETON:
  130. radius: 3
  131. leave_pair: false
  132. merge_type: FULL
  133. max: -1 # max number of mobs being stacked, -1 = infinite.
  134. ZOMBIE:
  135. radius: 3
  136. leave_pair: false
  137. merge_type: FULL
  138. max: -1 # max number of mobs being stacked, -1 = infinite.
  139. SPIDER:
  140. radius: 3
  141. leave_pair: false
  142. merge_type: FULL
  143. max: -1 # max number of mobs being stacked, -1 = infinite.
  144. CAVE_SPIDER:
  145. radius: 3
  146. leave_pair: false
  147. merge_type: FULL
  148. max: -1 # max number of mobs being stacked, -1 = infinite.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement