Created worlds.yml (markdown)

Jesse Boyd 2016-06-19 13:22:07 +10:00
parent cd0054540e
commit 4a30d40f45
1 changed files with 81 additions and 0 deletions

81
worlds.yml.md Normal file

@ -0,0 +1,81 @@
Located in: `PlotSquared/config/worlds.yml`
This file contains the configuration for each world.
```YML
worlds:
# The name of the world
plotworld:
# Configure what generates in the plot
plot:
height: 64
biome: FOREST
size: 42
# Can use item names or numbers
filling:
- 'stone'
- '5:5'
auto_merge: false
bedrock: true
create_signs: true
floor:
- '2:0'
# Configure the wall
wall:
filling: '1:0'
block_claimed: '44:1'
height: 64
block: '44:0'
# Configure the road
road:
block: '155:0'
height: 64
width: 7
# Configure the home
home:
# side or center or 5,6
default: side
# Allows people not added to the plot to use the home set by `/plot sethome`
allow-nonmembers: false
# Paste a schematic on claim
schematic:
specify_on_claim: false
on_claim: false
file: 'null'
# Command costs
economy:
use: false
prices:
# Can use javascript for dynamic prices
claim: 100*{arg}+50
sell: 100
merge: 100
# Default plot chat mode (toggled with `/plot toggle chat`)
chat:
enabled: false
# Limit the number of people that can be added to a plot
limits:
max-members: 128
world:
# Build height
min_height: 1
max_height: 256
# Used for the gamemode flag
gamemode: creative
# World border expands dynamically
border: false
# False = disabled
event:
spawn:
egg: false
breeding: false
custom: true
natural_mob_spawning: false
mob_spawner_spawning: false
# Controls the world type / terrain / generator used
generator:
type: 0
terrain: 0
plugin: PlotSquared
# See: https://github.com/IntellectualSites/PlotSquared/wiki/Usage:-Plot-flags#default-flags
flags: {}
```