Advertisement
Guest User

Untitled

a guest
Feb 7th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. Command {
  2. # The alias to use as the base admin command.
  3. Admin-Command-Alias=[
  4. sc,
  5. isa
  6. ]
  7. # The alias to use as the base command.
  8. Base-Command-Alias=[
  9. is,
  10. island
  11. ]
  12. }
  13. Config-Version=1
  14. Entity {
  15. # Whether SkyClaims should limit island entity spawns.
  16. Limit-Spawning=false
  17. # The max number of hostile mob spawns allowed per island. 0 to disable.
  18. # Can be overridden with the 'skyclaims.max-spawns.hostile' option.
  19. Max-Hostile=50
  20. # The max number of passive mob spawns allowed per island. 0 to disable.
  21. # Can be overridden with the 'skyclaims.max-spawns.passive' option.
  22. Max-Passive=30
  23. # The overall max number of mob spawns allowed per island. 0 to disable.
  24. # Can be overridden with the 'skyclaims.max-spawns' option.
  25. Max-Spawns=70
  26. }
  27. Integration {
  28. Grief-Prevention {
  29. # Trust types to disable use on Islands.
  30. Disabled-Trust-Types=[
  31. ACCESSOR,
  32. CONTAINER
  33. ]
  34. # Use to set up default flags to be set on the Wilderness claim.
  35. Wilderness-Flags {
  36. "BLOCK_BREAK"=FALSE
  37. "BLOCK_PLACE"=FALSE
  38. }
  39. }
  40. Nucleus {
  41. # Set to enable/disable integration.
  42. Enabled=true
  43. # Not Implemented. Add "kit give @p firstJoinKit" to Reset-Commands.
  44. # Set to enable/disable redeeming Nucleus' FirstJoinKit when using /is reset.
  45. First-Join-Kit=true
  46. # Set to enable/disable /is sethome & /is home as a configurable home separate from an island spawn.
  47. Island-Home=true
  48. }
  49. }
  50. Island-Expiration {
  51. # Whether SkyClaims should remove inactive islands that exceed the expiration threshold.
  52. Enabled=false
  53. # The frequency, in minutes, that islands will be considered for removal.
  54. Interval=15
  55. # The amount of time, in days, that an island must be inactive before removal.
  56. # Can be overridden with the 'skyclaims.expiration' option.
  57. Threshold=30
  58. }
  59. Misc {
  60. # Commands to run on island creation and reset. Use @p in place of the player's name.
  61. Create-Commands=[]
  62. # The date format used throughout the plugin.
  63. # http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
  64. Date-Format="MMMM d, yyyy h:mm a"
  65. # Automatically create an island for a player on join.
  66. Island-on-Join=false
  67. # Whether players with access to multiple schematics see a list when not specifying a schematic.
  68. List-Schematics=false
  69. # Whether a list of biomes and their permissions should be logged.
  70. Log-Biomes=false
  71. # Commands to run on island resets only. Use @p in place of the player's name.
  72. Reset-Commands=[]
  73. # Automatically teleport the owner to their island on creation.
  74. Teleport-on-Creation=true
  75. }
  76. Permission {
  77. # Enable permission checking for the Biome Type Argument.
  78. Separate-BiomeType-Permissions=false
  79. # Enable permission checking for the Schematic Argument.
  80. Separate-Schematic-Permissions=false
  81. # Enable permission checking for the Target Argument.
  82. Separate-Target-Permissions=false
  83. }
  84. Storage {
  85. # The location to store SkyClaims data. Default: ${CONFIG}/data
  86. Location="${CONFIG}/data"
  87. # MySQL Not Yet Implemented!
  88. MySQL {
  89. Location=localhost
  90. Name=skyclaims
  91. Password=skyclaims
  92. Port=3306
  93. Table-Prefix=""
  94. Username=skyclaims
  95. }
  96. # The type of data storage to use. Supports [SQLite, MySQL]
  97. Type=SQLite
  98. }
  99. World {
  100. # Height to build islands at (1-255). Default: 72
  101. Island-Height=72
  102. # Name of the world to manage islands in. Default: world
  103. SkyClaims-World=world
  104. # The height & width of regions to reserve for spawn (min 1). Default: 1
  105. Spawn-Regions=1
  106. # Use to override the world used when sending players to spawn.
  107. Spawn-World=""
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement