Advertisement
Guest User

Untitled

a guest
Aug 14th, 2011
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. #BigBrother Configuration file
  2. # For build 638+
  3. #
  4. # Edit and Rename to BigBrother.yml
  5. # <-- This is a comment, meaning BigBrother will ignore it.
  6. # It'll also ignore empty lines.
  7. # FOR THE LOVE OF GOD, DO NOT USE TABS. INDENTING IS EXTREMELY IMPORTANT.
  8. #
  9. # You can test if this file works at http://yaml-online-parser.appspot.com/
  10.  
  11. #General BigBrother Settings
  12. general:
  13. # Store a map of block owners (for fire, lava, and water, used for tracking flowing block ownership)
  14. store-owners: true
  15.  
  16. # IDs of ignored block types (1 for stone, etc.)
  17. excluded-blocks: []
  18.  
  19. # The names of worlds you do not want to record
  20. excluded-worlds:
  21. - Spleef
  22.  
  23. # Not used.
  24. rollbacks-per-tick: 2000
  25.  
  26. # Log stuff about each person in an individual file?
  27. personal-log-files: false
  28.  
  29. #Automatically start watching people as they join the server?
  30. auto-watch: true
  31.  
  32. # Spam developer-targeted debugging information to console.
  33. debug-mode: false
  34.  
  35. # Default radius for /bb here.
  36. default-search-radius: 5
  37.  
  38. # Rollback fire
  39. restore-fire: false
  40.  
  41. # Item ID of the SuperStick. 280 = stick
  42. stick-item: 280
  43.  
  44. # Automatically download database libraries?
  45. library-autodownload: true
  46.  
  47. # What actions are disabled on this server?
  48. # For a list, look at your server log.
  49. disabled-actions:
  50. - LeafDecay
  51. - DropItem
  52. - PickupItem
  53.  
  54. # Database settings
  55. database:
  56. # Type of database. Possible values:
  57. # H2 = file-based database, easiest to set up, but clumsy, slow, and buggy.
  58. # MySQL = Most tested and optimized database for BB, a remote server process. See wiki for details. RECOMMENDED.
  59. # Postgres = Similar to MySQL, preferred by some. Not tested very well.
  60. type: MySQL
  61.  
  62. # Address/hostname of the server, if applicable. Use localhost if the server is on the same machine.
  63. hostname: 'localhost'
  64.  
  65. # Port of the server, if applicable.
  66. port: 3306
  67.  
  68. # Username to use when connecting to the server. Leave as "sa" if on H2.
  69. username: minecraft
  70.  
  71. # Password to use when connecting to your database server. Leave as blank if on H2
  72. password: 'PASSWORD'
  73.  
  74. # Prefix of the database tables (bbdata would become bb_bbdata if prefix is set to 'bb_', for example.
  75. prefix: ''
  76.  
  77. # Database (AKA "schema") to connect to. Ignored on H2
  78. database: 'bigbrother'
  79.  
  80. # Database cleaner settings
  81. cleanser:
  82.  
  83. # Clean all items older than 3 days (by default). Can be a mixture of #d,h,m,s. ('0s' or 'off' to disable)
  84. age: 5d
  85.  
  86. # Maximum number of records to delete per cleansing.
  87. deletes-per-operation: 20000
  88.  
  89. # Delay in seconds between sending blocks to the server.
  90. send-delay: 4
  91.  
  92. # MySQL-specific settings.
  93. mysql:
  94. # Table storage engine to use.
  95. engine: INNODB
  96.  
  97. # Use LOW_PRIORITY when INSERTing records.
  98. low-priority-insert: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement