Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.64 KB | None | 0 0
  1. #######################
  2. # Config ##############
  3. #######################
  4. # Set this to "low" to reduce number of boot messages or to high, highest, extreme for more debugging info
  5. verbosity: normal
  6.  
  7. #######################
  8. # Number of decimal places to round money drops off to (for the drop and message)
  9. money-precision: 2
  10.  
  11. #######################
  12. # Disable anonymous logging - set this to true if you get errors in older Tekkit or Bukkit versions on startup
  13. disable_metrics: false
  14.  
  15. #######################
  16. # Enable WorldGuard BUILD Perms? - set this to true if you want drops to only run where players can build
  17. enable_wg_matching: false
  18.  
  19. #######################
  20. # Should we check for updates? - set this to false if you don't want to be notified of new versions
  21. update_checker: false
  22.  
  23. #######################
  24. # Should items fall onto the ground? - set this to false if you want items to go directly into the player's inventory
  25. item_falls_on_ground: true
  26.  
  27. #######################
  28. # WARNING: ONLY CHANGE THIS IF YOU KNOW WHAT YOU ARE DOING!!!
  29. # Changing this to true will enable dropping Primed TNT from blocks and items interactions.
  30. # Regularly, the plugin only permits dropping primed TNT from a monster/animal mob. Changing this
  31. # to true could result in a chain of non-stop TNT, and may end up breaking the server!
  32. # Only experienced users should change this to true!!!
  33. primed_tnt: false
  34.  
  35. #######################
  36. # Restore standard config/include files if they are deleted
  37. restore_deleted_config_files: true
  38.  
  39.  
  40.  
  41. #######################
  42. # Enchantments ########
  43. #######################
  44. # Ignore level: allow enchantments to ignore start and/or max level (eg. dig_speed#50)
  45. # note: enchantments_ignore_level requires enchantments_use_unsafe to be true
  46.  
  47. enchantments_ignore_level: false
  48.  
  49. # Use unsafe: allow any enchantment on any item/tool (eg. DIRT@!DAMAGE_ALL#3)
  50.  
  51. enchantments_use_unsafe: false
  52.  
  53. # Restrict matching: when true, it will require enchantments to be exactly how they are configured in the drops file
  54. # (for example, A pickaxe defined with Fortune 3 will only let a Fortune 3 pickaxe perform the drop. To allow a
  55. # fortune 3, unbreaking 5, and efficiency 5 pickaxe to perform the drop, set this value to false.
  56.  
  57. enchantments_restrict_matching: true
  58. ####
  59.  
  60.  
  61.  
  62. #######################
  63. # Drops ###############
  64. #######################
  65. # Set this to false if you don't want blocks to drop their custom configs upon explosions (eg. tnt/creepers)
  66. customdropsforexplosions: true
  67.  
  68. #######################
  69. # Set this to false if you want items to drop as a single stack (true=individual item drops, like lapis drops from lapis ore)
  70. default_dropspread: true
  71.  
  72. #######################
  73. # Set this to true if you want XP drops to be cancelled when configuring mob drops (unless there is a default drop)
  74. # - this means you need to set an XP drop yourself if you want any XP to drop
  75. disable_xp_on_non_default: false
  76.  
  77. #######################
  78. # Allow any replacement block (by default non-safe replacements, eg. items, are blocked as they will crash the client)
  79. allow_any_replacementblock: false
  80.  
  81. #######################
  82. # Custom blockbreak events that don't drop the default are cancelled, therefore mcMMO won't generate XP for that break
  83. # This setting tells OtherDrops to manually send these cancelled events to mcMMO, gathering mcMMO-XP & any double-drops, etc.
  84. send_customblockbreak_to_mcmmo: false
  85.  
  86. #######################
  87. ## Override Defaults ##
  88. ##
  89. money_overrides_default: false # set true to have money drops override default drops
  90. xp_overrides_default: false # set true to have xp drops override default drops
  91. loot_overrides_default: true # set true to have loot (anything other than money or xp, includes mobs) drops override default drops
  92. ####
  93.  
  94.  
  95.  
  96. #######################
  97. # Misc ################
  98. #######################
  99. # Override explosion cap (normally capped at max power 100f to avoid crashing server)
  100. override_explosion_cap: false
  101. # Action radius - radius to consider for message, potioneffect, sound, damage & pset actions
  102. action_radius: 10
  103.  
  104. #######################
  105. # Color log messages - disable if they annoy you
  106. color_log_messages: true
  107.  
  108. #######################
  109. # OtherDrops will stop spawning new mobs if the number of living entities in the current world is higher
  110. # this only affects the mobspawn trigger
  111. custom_spawn_limit: 300
  112.  
  113.  
  114.  
  115. #######################
  116. # Time & date format ##
  117. #######################
  118. # For message variables (${time} & ${date})
  119. # see http://docs.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html
  120. # for full details
  121. #
  122. time_format: "HH:mm:ss"
  123. date_format: "yyyy/MM/dd"
  124. ####
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement