Advertisement
CoolLord22

Untitled

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