Advertisement
turt2live

config.yml

Apr 9th, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.51 KB | None | 0 0
  1. # THIS IS A CONFIGURATION LAYOUT I CAME UP WITH.
  2. # IT MAY NOT BE USED OR IT MAY BE MODIFIED.
  3. #
  4. # Feel free to send me suggestions.
  5. # My contact info:
  6. #   BukkitDev: turt2live
  7. #   Bukkit Forums: turt2live
  8. #   GitHub: turt2live
  9. #   Email: turt2live@turt2live.com
  10. #
  11. # There may be stuff here you don't quite understand,
  12. # there is no description on how things work, or what
  13. # they are in this file because this is a concept for
  14. # the configuration, not a "this is your next configuration
  15. # layout. Go learn". I'll add descriptions where required
  16. # when the "final" version of the configuration is planned.
  17. #
  18. # This first section will allow you to turn on/off
  19. # features of AntiShare with extreme ease, so you
  20. # don't have to play with your block lists.
  21. blocked-actions:
  22.   block-place: true
  23.   block-break: true
  24.   drop-items-on-death: true
  25.   pickup-items: true
  26.   drop-items: true
  27.   right-click: true
  28.   use-items: true
  29.   commands: true
  30.   combat-against-players: true
  31.   combat-against-mobs: true
  32. # This section allows you to control what AntiShare
  33. # does, such as inventories. You can turn off features
  34. # regardless of other plugins, so if you don't want
  35. # AntiShare to figure out what people cna go to what
  36. # world without having a world manager on your server,
  37. # you can tell AntiShare to stop it. This is the same
  38. # for the other items in the section.
  39. handled-actions:
  40.   world-transfers: false
  41.   gamemode-inventories: true
  42. # This part allows you to quickly turn on/off features
  43. # in AntiShare without corrupting previous data or having
  44. # to re-work the configuration.
  45. enabled-features:
  46.   gamemode-regions: true
  47.   world-split: true
  48.   sql: false
  49.   auto-kick-when-spamming: false
  50.   allow-break-with-no-drops: true
  51.   no-experience-for-creative: true
  52. # These are your basic settings for AntiShare, such as
  53. # SQL information or whether or not you want to send
  54. # usage statistics.
  55. settings:
  56.   sql:
  57.     host: localhost
  58.     username: MySQLUsername
  59.     password: MySQLPassword
  60.     database: AntiShare
  61.   send-usage-statistics: true
  62.   auto-send-bug-reports: true
  63.   auto-save-interval: 30
  64.   track-blocks: true
  65. # This would be the part where you tell AntiShare what
  66. # to actually block, when an action occurs. The lists
  67. # use actual words to give you an idea of what would
  68. # be blocked by default.
  69. blocked-lists:
  70.   block-place: diamond block, gold block, iron block, bedrock, tnt
  71.   block-break: tnt, diamond block, bedrock
  72.   dropped-items-on-death: all
  73.   picked-up-items: all
  74.   dropped-items: all
  75.   right-click: storage carts, powered carts, chests, furnaces, etc
  76.   use-items: exp bottles, eggs (monster/regular), lighter, etc
  77.   command: /someCommand, /anotherCommand
  78. # This is where the "larger" features come into play
  79. #
  80. # World Split Stuff. Again, stuff is not documented, just
  81. # place holders for a potential configuration layout
  82. worldsplit:
  83.   split-axis: X
  84.   positive: creative
  85.   negative: survival
  86. # Block tracking settings
  87. block-tracking:
  88.   tracked-survival-blocks: all
  89.   tracked-creative-blocks: all
  90. # "Kick for Spam" settings
  91. kick-for-event-spam:
  92.   events-per-second: 25
  93.   kick-message: "Stop it {PLAYER}!"
  94. # Misc settings that are for controlling minor features
  95. # of AntiShare. I put them under "other" because they
  96. # confuse people or don't do anything interesting to
  97. # server admins (like debug mode, no server NEEDS debug
  98. # mode, but it's here for "just in caase")
  99. other:
  100.   debug: false
  101.   silent-startup: false
  102.   silent-shutdown: false
  103.   silent-bugs: true
  104.   silent-conflicts: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement