Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. #CoreProtect Config
  2.  
  3. # If enabled, always displays all data when doing rollbacks and restores.
  4. # If disabled, you can manually trigger it in-game by adding "noisy"
  5. # to the end of your rollback statement.
  6. noisy-default: true
  7.  
  8. # If enabled, double clicking a block with the inspector enabled will pull
  9. # all recent logged block data for that block in the form of a list.
  10. double-click: false
  11.  
  12. # MySQL is optional and not required. It is slower and uses more space.
  13. # If you prefer to use MySQL, enable the following and fill out the fields.
  14. use-mysql: false
  15. table-prefix: co_
  16. mysql-host: localhost
  17. mysql-port: 3306
  18. mysql-database: database
  19. mysql-username: root
  20. mysql-password:
  21.  
  22. # Logs blocks placed by players.
  23. block-place: true
  24.  
  25. # Logs blocks broken by players.
  26. block-break: true
  27.  
  28. # Logs blocks that break off of other blocks; for example, a sign or torch
  29. # falling off of a dirt block that a player breaks. This is required for
  30. # beds/doors to properly rollback.
  31. natural-break: true
  32.  
  33. # Properly track block movement, such as sand or gravel falling.
  34. block-movement: true
  35.  
  36. # Properly track blocks moved by pistons.
  37. pistons: true
  38.  
  39. # Logs blocks that burn up in a fire.
  40. block-burn: true
  41.  
  42. # Logs when a block naturally ignites, such as from fire spreading.
  43. block-ignite: true
  44.  
  45. # Log explosions, such as TNT and Creepers.
  46. explosions: true
  47.  
  48. # Track when an entity changes a block, such as an Enderman destroying blocks.
  49. entity-change: true
  50.  
  51. # Logs text on signs. If disabled, signs will be blank when rolled back.
  52. sign-text: true
  53.  
  54. # Logs lava and water sources placed/removed by players who are using buckets.
  55. buckets: true
  56.  
  57. # Logs natural tree leaf decay.
  58. leaf-decay: true
  59.  
  60. # Log tree growth. Trees are linked to the player who planted the sappling.
  61. tree-growth: true
  62.  
  63. # Logs mushroom growth.
  64. mushroom-growth: true
  65.  
  66. # Logs when portals such as Nether portals generate naturally.
  67. portals: true
  68.  
  69. # Logs water flow. If water destroys other blocks, such as torches,
  70. # this allows it to be properly rolled back.
  71. water-flow: true
  72.  
  73. # Logs lava flow. If lava destroys other blocks, such as torches,
  74. # this allows it to be properly rolled back.
  75. lava-flow: true
  76.  
  77. # Allows liquid to be properly tracked and linked to players.
  78. # For example, if a player places water which flows and destroys torches,
  79. # it can all be properly restored by rolling back that single player.
  80. liquid-tracking: true
  81.  
  82. # Track player interactions, such as when a player opens a door, presses
  83. # a button, or opens a chest. Player interactions can't be rolled back.
  84. player-interact: false
  85.  
  86. # Track item transactions, such as when a player takes items from a
  87. # chest, furnace, or dispenser. Necessary for any item based rollbacks.
  88. item-transactions: true
  89.  
  90. # Logs changes made via the plugin "WorldEdit" if it's in use on your server.
  91. worldedit: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement