Advertisement
LeftyTyomka

Untitled

Jun 20th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.28 KB | None | 0 0
  1. # 2.3.1
  2. # # If you need help with the configuration or have any questions related to GriefPrevention,
  3. # # join us at the IRC or drop by our forums and leave a post.
  4. # # IRC: #griefprevention @ irc.esper.net ( http://webchat.esper.net/?channel=griefprevention )
  5. # # Forums: https://forums.spongepowered.org/t/griefprevention-official-thread-1-8-9-1-10-2/1123/
  6. #
  7.  
  8. GriefPrevention {
  9. claim {
  10. # The list of slashcommands requiring access trust when in a claim.
  11. accesstrust-commands=[]
  12. # Radius used for auto-created claims. Set to -1 to disable.
  13. auto-claim-radius=-1
  14. # Whether survival claims will be automatically restored to nature when auto-deleted.
  15. auto-nature-restore=false
  16. # Contains list of banned item ids on server.
  17. banned-item-ids=[]
  18. # Limit on how deep claims can go.
  19. claim-max-depth=0
  20. # The mode used when creating claims. (0 = Disabled, 1 = Survival, 2 = Creative)
  21. claims-mode=1
  22. # The interval in minutes for restoring blocks in an expired claim. Set to 0 to disable. Note: This only supports vanilla blocks. Use with caution if using custom biomes.
  23. cleanup-task-interval=0
  24. # Send players manuals on claim creation.
  25. deliver-manuals=true
  26. # How far below the shoveled block a new claim will reach. Set to 255 if you want to always extend to bedrock.
  27. extend-into-ground-distance=50
  28. # The item used to investigate claims with a right-click.
  29. investigation-tool="minecraft:stick"
  30. # Minimum area for non-admin claims.
  31. minimum-area=50
  32. # Minimum width for non-admin claims.
  33. minimum-width=2
  34. # The item used to create/resize claims with a right click.
  35. modification-tool="minecraft:golden_shovel"
  36. }
  37. database {
  38. # password
  39. password=""
  40. # url
  41. url=""
  42. # username
  43. username=""
  44. }
  45. economy {
  46. # Cost to purchase a claim block. set to zero to disable purchase.
  47. claim-block-cost=0.0
  48. # Return on a sold claim block. set to zero to disable sale.
  49. claim-block-sell=0.0
  50. }
  51. flags {
  52. # The default flag settings used when an admin claim is created.
  53. default-admin {
  54. block-break=false
  55. block-place=false
  56. collide-block=false
  57. collide-entity=false
  58. command-execute=true
  59. command-execute-pvp=true
  60. enter-claim=true
  61. entity-damage=false
  62. entity-fall=true
  63. entity-riding=true
  64. entity-spawn=true
  65. entity-teleport-from=true
  66. entity-teleport-to=true
  67. exit-claim=true
  68. explosion=false
  69. explosion-surface=false
  70. fire-spread=false
  71. interact-block-primary=false
  72. interact-block-secondary=true
  73. interact-entity-primary=false
  74. interact-entity-secondary=true
  75. interact-inventory=true
  76. interact-item-primary=false
  77. interact-item-secondary=false
  78. item-drop=true
  79. item-pickup=true
  80. item-spawn=true
  81. item-use=true
  82. liquid-flow=false
  83. portal-use=true
  84. projectile-impact-block=false
  85. projectile-impact-entity=false
  86. }
  87. # The default flag settings used when a basic claim is created.
  88. default-basic {
  89. block-break=false
  90. block-place=false
  91. collide-block=false
  92. collide-entity=false
  93. command-execute=true
  94. command-execute-pvp=true
  95. enter-claim=true
  96. entity-damage=false
  97. entity-fall=true
  98. entity-riding=false
  99. entity-spawn=true
  100. entity-teleport-from=true
  101. entity-teleport-to=true
  102. exit-claim=true
  103. explosion=false
  104. explosion-surface=false
  105. fire-spread=false
  106. interact-block-primary=false
  107. interact-block-secondary=false
  108. interact-entity-primary=false
  109. interact-entity-secondary=false
  110. interact-inventory=false
  111. interact-item-primary=false
  112. interact-item-secondary=false
  113. item-drop=true
  114. item-pickup=true
  115. item-spawn=true
  116. item-use=false
  117. liquid-flow=false
  118. portal-use=false
  119. projectile-impact-block=false
  120. projectile-impact-entity=false
  121. }
  122. # The default flag settings used for wilderness.
  123. default-wilderness {
  124. block-break=true
  125. block-place=true
  126. collide-block=true
  127. collide-entity=true
  128. command-execute=true
  129. command-execute-pvp=true
  130. enter-claim=true
  131. entity-damage=true
  132. entity-fall=true
  133. entity-riding=true
  134. entity-spawn=true
  135. entity-teleport-from=true
  136. entity-teleport-to=true
  137. exit-claim=true
  138. explosion=false
  139. explosion-surface=false
  140. fire-spread=false
  141. interact-block-primary=true
  142. interact-block-secondary=true
  143. interact-entity-primary=true
  144. interact-entity-secondary=true
  145. interact-inventory=true
  146. interact-item-primary=true
  147. interact-item-secondary=true
  148. item-drop=true
  149. item-pickup=true
  150. item-spawn=true
  151. item-use=true
  152. liquid-flow=true
  153. portal-use=true
  154. projectile-impact-block=true
  155. projectile-impact-entity=true
  156. }
  157. # A list of flags standard users can manage in their claims with the /cf, /cfg, and /cfp commands.
  158. # Note: All flags in this list will be used to determine which user permission to check such as 'griefprevention.user.flag.block-break'.
  159. user-claim-flags=[
  160. block-break,
  161. block-place,
  162. collide-block,
  163. collide-entity,
  164. entity-riding,
  165. interact-block-primary,
  166. interact-block-secondary,
  167. interact-entity-primary,
  168. interact-entity-secondary,
  169. interact-item-primary,
  170. interact-item-secondary,
  171. item-drop,
  172. item-pickup,
  173. item-use,
  174. portal-use,
  175. projectile-impact-block,
  176. projectile-impact-entity
  177. ]
  178. }
  179. general {
  180. # Enable sign notifications for admins.
  181. admin-sign-notifications=false
  182. # List of whisper commands to eavesdrop on.
  183. admin-whisper-commands=[]
  184. # Enable whisper notifications for admins.
  185. admin-whisper-notifications=false
  186. # Whether whispered messages will broadcast to administrators in game.
  187. admin-whispers=false
  188. # Whether chat should be monitored and filtered by rules.
  189. chat-rules-enabled=false
  190. # Whether pistons are limited to only move blocks located within the piston's land claim.
  191. limit-pistons-to-claims=false
  192. # Whether players can build trees on platforms in the sky.
  193. limit-sky-trees=true
  194. # Whether trees should be prevented from growing into a claim from outside.
  195. limit-tree-growth=false
  196. # The max claim inspection block distance. (Default: 100)
  197. max-claim-inspection-distance=100
  198. # How many players can share an IP address. (Default: 3)
  199. max-players-per-ip=3
  200. # Whether players' dropped on death items are protected in non-pvp worlds.
  201. protect-item-drops-death-non-pvp=true
  202. # Whether to ban accounts which very likely owned by a banned player.
  203. smart-ban=false
  204. }
  205. logging {
  206. # Log admin activity.
  207. admin-activity=true
  208. # How many days to keep logs in storage.
  209. days-stored=4
  210. # Log social activity.
  211. social-acitivity=true
  212. # Log suspicious activity.
  213. suspicious-activity=true
  214. }
  215. # List of migrators that convert other protection data into GP claim data.
  216. # Note: These migrators will NOT change or delete your data. It simply reads and creates new data for GriefPrevention.
  217. migrator {
  218. # Set to true to enable Polis data migrator.
  219. # Note: All Polis data will be converted into basic claim data. Town balance will transfer to leaders.
  220. polis=false
  221. # Set to true to enable RedProtect data migrator.
  222. # Note: All RedProtect data will be converted into basic claim data.
  223. red-protect=false
  224. }
  225. playerdata {
  226. # Whether player data should be stored globally. False will store all data per world.
  227. use-global-storage=true
  228. }
  229. pvp {
  230. # Whether a player can drop items during combat to hide them.
  231. allow-combat-item-drops=false
  232. # How long combat is considered to continue after the most recent damage.
  233. combat-timeout=15
  234. # Whether to make newly spawned players immune until they pick up an item.
  235. protect-fresh-spawns=true
  236. # Whether player's dropped on death items are protected in pvp worlds.
  237. protect-item-drops-death=false
  238. # Whether players may fight in admin-owned land claims.
  239. protect-players-in-adminclaims=true
  240. # Whether players may fight in player-owned land claims.
  241. protect-players-in-claims=true
  242. # Whether players may fight in subdivisions of admin-owned land claims.
  243. protect-players-in-subdivisions=false
  244. # Whether players may fight in wilderness.
  245. protect-players-in-wilderness=false
  246. # Whether to kill players who log out during PvP combat.
  247. punish-logout=true
  248. # Whether or not pvp anti-grief rules apply.
  249. rules-enabled=true
  250. }
  251. siege {
  252. # which blocks will be breakable in siege mode.
  253. breakable-blocks=[
  254. "minecraft:sand",
  255. "minecraft:gravel",
  256. "minecraft:grass",
  257. "minecraft:tallgrass",
  258. "minecraft:glass",
  259. "minecraft:dye",
  260. "minecraft:snow",
  261. "minecraft:stained_glass",
  262. "minecraft:cobblestone"
  263. ]
  264. # Whether sieges are allowed or not.
  265. enable-sieges=true
  266. # which blocks the siege winner can access in the loser's claim.
  267. winner-accessible-blocks=[]
  268. }
  269. spam {
  270. # IP addresses which will not be censored.
  271. allowed-ips=[]
  272. # Whether or not to ban spammers automatically.
  273. autoban-offenders=false
  274. # Message to show an automatically banned player.
  275. ban-message="Banned for spam."
  276. # Message to show a player who is close to spam level.
  277. ban-warning-message="Please reduce your noise level. Spammers will be banned."
  278. # Cooldown period for death messages (per player) in seconds.
  279. death-message-cooldown=60
  280. # Whether or not to monitor for spam.
  281. enable-spam-monitor=true
  282. # How long players must wait between logins. combats login spam.
  283. login-cooldown=60
  284. # the list of slash commands monitored for spam,
  285. monitor-commands=[]
  286. }
  287. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement