Advertisement
Dhannyjsb

Untitled

Jul 26th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.24 KB | None | 0 0
  1. #
  2. # SecurityVillagers configuration file
  3. #
  4. # For a better configuration:
  5. # - Use Notepad++
  6. # - View -> Symbols -> Show White Space and TAB (Active)
  7. # - Don't use arrows (tabs), but spaces
  8. # - Set format (syntax) editor to YAML
  9. #
  10.  
  11. # / = = = = = = = = = = = = = = = = \
  12. # | SECURITYVILLAGERS SETTINGS |
  13. # \ = = = = = = = = = = = = = = = = /
  14. securityvillagers:
  15. updates:
  16. # Check for updates, recommended. SecurityVillagers will check for updates when the server finish to load
  17. check: true
  18. # Send a message to admins if an update is available
  19. warn: true
  20. selection:
  21. # Enable selection system, you can select a villager to edit it
  22. enable: true
  23. # Choose the item to select villagers
  24. item: BLAZE_ROD
  25.  
  26. # / = = = = = = = = = = = = = = = = \
  27. # | SECURITYVILLAGERS PREVENTIONS |
  28. # \ = = = = = = = = = = = = = = = = /
  29. preventions:
  30. # Prevent villagers to spawn
  31. spawn: false
  32. # Prevent villagers to be target (for example: from zombies if zombie protection enabled)
  33. target: false
  34. # Mute villager ambient sound (Damage/trades/etc.. enabled)
  35. # REQUIRES ProtocolLib PLUGIN
  36. # Give permission "securityvillagers.admin.bypass-mute" to bypass it
  37. mute-villager-sounds: true
  38.  
  39. # / = = = = = = = = = = = = = = = = \
  40. # | GENERAL SETTINGS |
  41. # \ = = = = = = = = = = = = = = = = /
  42. general:
  43. damage:
  44. # Prevent basic attack damage from a player
  45. disable-hit-damage: true
  46. # Prevent arrow shooting damage from a player
  47. disable-arrow-damage: true
  48. # Prevent damages in these worlds (For every world use '*')
  49. prevent-worlds:
  50. - '*'
  51. interact:
  52. # Disable tradings
  53. disable-trade: true
  54. # Disable egg use on villagers
  55. disable-egg: true
  56. # Disable interact preventions n these worlds (For every world use '*')
  57. prevent-worlds:
  58. - Tabalong
  59.  
  60. # / = = = = = = = = = = = = = = = = \
  61. # | FACTIONS SETTINGS |
  62. # \ = = = = = = = = = = = = = = = = /
  63. factions:
  64. # Enable Factions support
  65. # Supported: Factions, HCfactions, SavageFactions, FactionsOne
  66. # Bypass with permission 'securityvillagers.admin.bypass' (Potions still works)
  67. enable: false
  68. prevent-hit: true
  69. prevent-interact: true
  70.  
  71. # / = = = = = = = = = = = = = = = = \
  72. # | DAMAGE SETTINGS |
  73. # \ = = = = = = = = = = = = = = = = /
  74. damage:
  75. # Prevent these damages
  76. mobs:
  77. skeleton: false
  78. wither: false
  79. zombie: false
  80. other:
  81. # Contact Damage = Damage on contact with an entity, cactus
  82. contact: false
  83. dragon: false
  84. drowning: false
  85. explosion: false
  86. fall: false
  87. falling-block: false
  88. fire: false
  89. hot-floor: false
  90. lava: false
  91. # Doesn't work in 1.8+ (The villager will be turned into Witch)
  92. lightning: false
  93. # Magic Damage = Damage Potion or Spells
  94. magic: false
  95. # Melting Damage = Damage on contact with fired entity
  96. melting: false
  97. poison: false
  98. suffocation: false
  99. thorns: false
  100. void: false
  101.  
  102. # / = = = = = = = = = = = = = = = = \
  103. # | IRON GOLEM SETTINGS |
  104. # \ = = = = = = = = = = = = = = = = /
  105. iron-golem:
  106. # Protect iron golems
  107. protect: false
  108. # Prevent spawn of iron golems
  109. prevent-spawn: true
  110.  
  111. # / = = = = = = = = = = = = = = = = \
  112. # | PROFESSION SETTINGS |
  113. # \ = = = = = = = = = = = = = = = = /
  114. profession:
  115. # Change profession's villager with a command
  116. enable: true
  117. # Rename commands
  118. professions:
  119. blacksmith: "Blacksmith"
  120. butcher: "Butcher"
  121. farmer: "Farmer"
  122. librarian: "Librarian"
  123. nitwit: "Nitwit"
  124. priest: "Priest"
  125.  
  126. # / = = = = = = = = = = = = = = = = \
  127. # | CHANGE AGE SETTINGS |
  128. # \ = = = = = = = = = = = = = = = = /
  129. changeage:
  130. # Convert a villager from baby to adult, or viceversa
  131. # REQUIRES selection enabled
  132. enable: true
  133. item:
  134. # Use an item to convert the villager
  135. enable: false
  136. item: COMPASS
  137. # In which worlds enable the converter (For all worlds use '*')
  138. allowed-worlds:
  139. - '*'
  140.  
  141. # / = = = = = = = = = = = = = = = = \
  142. # | RENAME SETTINGS |
  143. # \ = = = = = = = = = = = = = = = = /
  144. rename:
  145. # You can edit the name of a villager
  146. # REQUIRES selection enabled
  147. enable: true
  148.  
  149. dont-edit-this:
  150. config-version: 8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement