Advertisement
Guest User

Untitled

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