doitliketyler

Untitled

Sep 10th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. GriefDefender {
  2. default-options {
  3. # The default options applied to users for basic claims.
  4. # Note: These options override default global options.
  5. default-user-basic-options {
  6. max-size-x="0"
  7. max-size-y="256"
  8. max-size-z="0"
  9. min-size-x="5"
  10. min-size-y="5"
  11. min-size-z="5"
  12. }
  13. # The default user options for all players.
  14. # Note: Setting default claim type options will override this.
  15. default-user-options {
  16. abandon-delay="0"
  17. abandon-return-ratio="1.0"
  18. accrued-blocks="0"
  19. blocks-accrued-per-hour="120"
  20. bonus-blocks="0"
  21. chest-expiration="7"
  22. create-limit="-1"
  23. create-mode=undefined
  24. economy-block-cost="0.0"
  25. economy-block-sell-return="0.0"
  26. expiration="14"
  27. initial-blocks="120"
  28. max-accrued-blocks="80000"
  29. max-level="255"
  30. min-level="0"
  31. player-deny-flight="false"
  32. player-deny-godmode="false"
  33. player-deny-hunger="false"
  34. player-fly-speed="0"
  35. player-gamemode=undefined
  36. player-health-regen="0"
  37. player-keep-inventory=undefined
  38. player-keep-level=undefined
  39. player-teleport-delay="0"
  40. player-walk-speed="0"
  41. player-weather=undefined
  42. pvp=undefined
  43. pvp-combat-command="false"
  44. pvp-combat-teleport="false"
  45. pvp-combat-timeout="15"
  46. radius-inspect="100"
  47. raid="true"
  48. rent-expiration="7"
  49. rent-expiration-days-keep="7"
  50. rent-restore="false"
  51. spawn-limit="-1"
  52. tax-expiration="7"
  53. tax-expiration-days-keep="7"
  54. tax-rate="0.1"
  55. }
  56. # The default options applied to users for subdivisions.
  57. # Note: These options override default global options.
  58. default-user-subdivision-options {
  59. max-size-x="1000"
  60. max-size-y="256"
  61. max-size-z="1000"
  62. min-size-x="1"
  63. min-size-y="1"
  64. min-size-z="1"
  65. }
  66. # The default options applied to users for towns.
  67. # Note: These options override default global options.
  68. default-user-town-options {
  69. create-limit="1"
  70. max-level="255"
  71. max-size-x="0"
  72. max-size-y="256"
  73. max-size-z="0"
  74. min-level="0"
  75. min-size-x="32"
  76. min-size-y="32"
  77. min-size-z="32"
  78. tax-expiration="7"
  79. tax-expiration-days-keep="7"
  80. tax-rate="0.1"
  81. }
  82. }
  83. # Controls which options are enabled.
  84. # Note: To enable an option, set the value to 'true'.
  85. # See https://github.com/bloodmc/GriefDefender/wiki/Options for info on how each option works.
  86. option-control {
  87. player-command-enter=false
  88. player-command-exit=false
  89. player-deny-flight=false
  90. player-deny-godmode=false
  91. player-deny-hunger=false
  92. player-fly-speed=false
  93. player-gamemode=false
  94. player-health-regen=false
  95. player-keep-inventory=false
  96. player-keep-level=false
  97. player-teleport-delay=false
  98. player-walk-speed=false
  99. player-weather=false
  100. pvp=false
  101. pvp-combat-command=false
  102. pvp-combat-teleport=false
  103. pvp-combat-timeout=false
  104. spawn-limit=false
  105. }
  106. # Controls the default vanilla fallback values used to for resetting options such as player walking and flying speed.
  107. # For example: If no option value is found for a player, the values set here will be used instead.
  108. vanilla-fallback-values {
  109. player-fly-speed="0.1"
  110. player-walk-speed="0.2"
  111. }
  112. }
  113.  
Add Comment
Please, Sign In to add comment