Advertisement
Guest User

Untitled

a guest
Jul 20th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.47 KB | None | 0 0
  1. # Visit Bukkit Page (http://dev.bukkit.org/bukkit-plugins/islandworld/) for more informations about all config options
  2.  
  3. # Print debug messages?
  4. debug: false
  5.  
  6. # Log island changes to file?
  7. island-debug: false
  8.  
  9. # That option will allow you run latest IslandWorld
  10. # with 1.2.5 bukkit or similar versions
  11. old-version: false
  12.  
  13. # You can decide if plugin should check for
  14. # new versions and inform you about it
  15. version-check: true
  16.  
  17. # Language. It will need messages_<language>.yml file in plugin folder
  18. # Default en (english) included
  19. language: en
  20.  
  21. # Name of world where you will have islands
  22. world-isle: IslandWorld
  23.  
  24. # Name of world where you have spawn
  25. # Player will be moved there on island delete
  26. world-spawn: IslandWorld
  27.  
  28. # Block id what you use to generate world
  29. # Air: 0, Water: 9
  30. world-block-id: 0
  31.  
  32. # y coord for island (Number which you use to generate world with water)
  33. # Or just height for isle in air
  34. island-height: 20
  35.  
  36. # Maximum island size
  37. # Value will be used for protecting regions.
  38. # Cannot be changed if you have islands already in world !
  39. island-size: 100
  40.  
  41. # Region spacing
  42. # For example if spacing is 1 and island-size 100
  43. # Island box will have 100 x 100 size
  44. # but WG region will have coords 1 x 99 and will be 1 block space
  45. # between regions. (in fact two because island near will also have 1 block space)
  46. region-spacing: 1
  47.  
  48. # Maximum islands in row/col (will be x * z)
  49. # Islands are pregenerated, you can change it later
  50. max-count: 100
  51.  
  52. # How new islands should be generated ?
  53. # Snail : 0-0 0-1 1-0 1-1, 1-2 2-0 2-1 etc.
  54. # Normal: 0-1 0-2 0-3 0-4 0-5 etc.
  55. # Snail mode can take lots of time !
  56. snail-mode: false
  57.  
  58. # Teleport delay (on home, spawn, tp commands)
  59. # 0 to disable delay
  60. teleport-delay: 0
  61.  
  62. # Works only with teleport delay > 0
  63. # Any movement will break teleport wait
  64. movement-break-tp: false
  65.  
  66. # Time limit in minutes between possible delete/clear commands
  67. # 0 to disable option
  68. time-limit: 0
  69.  
  70. # Time limit in minutes between possible calc commands
  71. calc-limit: 10
  72.  
  73. # Autosave time - in minutes, 0 to disable
  74. auto-save: 60
  75.  
  76. # Determine if plugin should make backup on every
  77. # startup
  78. backup-on-start: true
  79.  
  80. # After how much days backup files should be deleted?
  81. # 0 to disable and keep all backups
  82. backup-max-days: 0
  83.  
  84. # Use /sethome on island create?
  85. set-home: false
  86.  
  87. # Clean player inventory on island clear/delete?
  88. clean-inventory: true
  89.  
  90. # Clean inventory on island leave?
  91. clean-inventory-leave: true
  92.  
  93. # Clean player inventory on island exit from island?
  94. # Right now only island spawn command is handled
  95. clean-inventory-exit: false
  96.  
  97. # Delete challenges on island delete?
  98. delete-challenges: true
  99.  
  100. # Allow visit command?
  101. allow-visit: true
  102.  
  103. # If true player added to one island cannot make own island
  104. # or cannot be added to other island as helper
  105. strict-party: true
  106.  
  107. # Players limit in party (without owner)
  108. # 0 to disable limit
  109. party-limit: 4
  110.  
  111. # Players limit in party (without owner)
  112. # for players with islandworld.vip.party permission
  113. party-limit-vip: 6
  114.  
  115. # How much homes player can setup
  116. home-limit: 3
  117.  
  118. # How much homes player with 'islandworld.vip.homes' perm can setup
  119. home-limit-vip: 6
  120.  
  121. # List of challenges should skip already completed ?
  122. # Otherwise it will print number of challenge:
  123. # Green if completed, Red if not completed yet
  124. skip-completed: false
  125.  
  126. # If true players need to finish challenges in order
  127. # They need to have finished 1,2,3 to finish 4
  128. challenges-order: false
  129.  
  130. # If sign-use should be allowed?
  131. use-signs: true
  132.  
  133. # If true it will allow to get lava from obsidian using empty bucket
  134. obsidian-break: false
  135.  
  136. # If true it will work only for one block of obsidian if near there is
  137. # no other obsidian block
  138. obsidian-limit: true
  139.  
  140. # Request time in seconds when we will wait for player reply
  141. # Used in delete or visit command
  142. request-time: 10
  143.  
  144. # Island ranking is cached and loaded only once per
  145. # reload-time minutes
  146. reload-time: 30
  147.  
  148. # Auto purge in days. 0 to disable that option
  149. auto-purge: 0
  150.  
  151. # If true Purge command will check also last visit of
  152. # members not only owner.
  153. purge-check-members: true
  154.  
  155. # Delay between island delete in seconds
  156. purge-delay: 5
  157.  
  158. # Block teleport commands while falling
  159. # It will block home,tp,visit commands
  160. falling-block-tp: true
  161.  
  162. # That config will remove all mobs near teleport point
  163. # on /is home - so player will be safe after teleport
  164. remove-mob-on-tp: false
  165.  
  166. # If 'true' player will be respawned on own island
  167. # If 'false' will be spawned in spawnpoint of spawn-world
  168. # If 'skip' island world will not modify respawns at all
  169. respawn-on-island: 'skip'
  170.  
  171. # That option will teleport all players to spawn point
  172. # of spawn world when they quit from server
  173. spawn-on-quit: false
  174.  
  175. # Chat prefix
  176. # If message will start with that part for exaple '!' -> !hello
  177. # Only members of island will see it
  178. # use "none" to disable that feature
  179. chat-prefix: 'none'
  180.  
  181. # Is protection sings are allowed on server?
  182. item-protection: false
  183.  
  184. # Players will have ability to lock islands
  185. # When island is locked only owner and members can enter.
  186. island-lock: false
  187.  
  188. # Protection for area under negative coords (-100 x -100) (usually spawn)
  189. # If true - player will be able to build, break, use sings, chests etc
  190. # and you need other plugin to protect that area if you have spawn there
  191. # If false - only OPs can build. You don't need any additional plugins to protect
  192. # spawn but also you cannot use there signs, chests etc.
  193. negative-build: true
  194.  
  195. # Default biome for created islands. Use /islandev biomelist for whole list
  196. default-biome: forest
  197.  
  198. # If false player need only islandworld.island.biomeset permission
  199. # If true player need also islandworld.island.biomeset.biomename permission
  200. # So you can limit possible biomes using perms
  201. per-biome-perms: false
  202.  
  203. # Calculate points for island on player enter
  204. calc-on-enter: false
  205.  
  206. # Protection flags
  207. flags:
  208. # Display welcome message?
  209. move-info: true
  210. # Pvp on islands are enabled ?
  211. pvp: false
  212. # Chest access?
  213. chest-acces: false
  214. # Monster Eggs?
  215. use-egg: false
  216. # Use vehicle?
  217. use-vehicle: false
  218. # Can other players pickup items from ground?
  219. item-pickup: false
  220. # Can other players can drop item on ground?
  221. item-drop: true
  222. # Can other players use portals ?
  223. use-portal: false
  224. # Can other players kill animals?
  225. kill-animals: false
  226. # Can other players kill monsters? (not animals)
  227. kill-monster: false
  228. # Can other players throw potions ?
  229. potion-throw: false
  230.  
  231. # Allowed item/blocks for non-members on islands
  232. allowed-list:
  233. - '26'
  234.  
  235. # Blocked items/blocks for non-memebers on island
  236. blocked-list:
  237. - '383:56'
  238.  
  239. # Blocks here will be ingnored on island detele/create
  240. # If cuboid constains some blocks they will stay there
  241. ignored-list:
  242. - '7'
  243.  
  244. # Points per material for calculations <blockId>: points
  245. # by default all blocks have 1 point value
  246. # in example dirt (id 4) will have 2 points value
  247. material-points:
  248. '4': 2
  249.  
  250. # Mysql Database
  251. # Database is used to store points
  252. database:
  253. host: localhost
  254. port: 3306
  255. user: islandworld
  256. pass: password
  257. base: islandworld
  258.  
  259. # Pathway between islands
  260. # If you prefer have pathways protected set region-spacing and
  261. # pathway width to same value
  262. # If pathway.schematic will exists will be used
  263. pathway:
  264. # Size of pathway. 0 to disable that option
  265. width: 0
  266. # height
  267. height: 150
  268. # Id of Block
  269. block: '44:2'
  270.  
  271. # ECONOMY SETTINGS
  272. # You need to have VAULT installed to use
  273. # economy settings
  274.  
  275. # Determine if economy is enabled
  276. economy-enabled: false
  277.  
  278. # Cost of commands
  279. # Use commandname: cost eg. create : 100
  280. # you can also use global: 200 - all commands will cost 200
  281. command-cost:
  282. commandname: 200
  283.  
  284. # If used items will be inserted into chest from config
  285. # and not fro schematic, you need to make list with items named
  286. # schematicname-items
  287. #
  288. use-config-items: false
  289.  
  290. # Items for 'normal' schematic
  291. #
  292. normal-items:
  293. - LAVA_BUCKET 1
  294. - WATER_BUCKET 2
  295. - SEEDS 2
  296. - PUMPKIN_SEEDS 2
  297. - MELON_SEEDS 2
  298. - INK_SACK 2 3
  299. - SAPLING 1
  300. - SAPLING 1 1
  301. - SAPLING 1 2
  302. - RED_MUSHROOM 2
  303. - BROWN_MUSHROOM 2
  304. - APPLE 10
  305. - CARROT 10
  306. - MELON 10
  307. - STRING 10
  308. - BONE 10
  309.  
  310. special-items:
  311. - LAVA_BUCKET 1
  312. - WATER_BUCKET 2
  313. - SEEDS 4
  314. - PUMPKIN_SEEDS 4
  315. - MELON_SEEDS 4
  316. - INK_SACK 4 3
  317. - SAPLING 3
  318. - SAPLING 3 1
  319. - SAPLING 3 2
  320. - RED_MUSHROOM 10
  321. - BROWN_MUSHROOM 10
  322. - APPLE 10
  323. - CARROT 10
  324. - MELON 10
  325. - STRING 20
  326. - BONE 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement