Updated World reduction (markdown)

boy0001 2015-02-16 18:50:19 +11:00
parent eabad04b6d
commit d96b74cc4d

@ -1 +1,27 @@
TODO
## Drastically reduce the size of your plotworld
#### World border
To prevent continued exploration, the world border can be enabled in each plotworld. The option can be found in the `settings.yml` at `worlds.<world>.world.border`
The world border is based on the furthest plot from the origin (0,0) and will prevent chunks from being loaded outside this region.
If you already have plots which are far away from the origin, the world border will not be very effective. You may wish to use the condense function (see below).
#### Plot expiry:
In the `settings.yml` look for the following section
```
clear:
'on':
ban: false
check-disk: false
auto:
days: 365
enabled: false
```
To enable it, set it to enabled, and set the expiry delay in days. This clears plots where the owner has been inactive (not logged on) for the amount of days specified.
#### Plot condensation (Added in 2.7.5) (intensive)
__This task is great in conjunction with the world trim function (see below)__
This will move any plots outside a specified radius nearer to the origin (0,0).
To check how many plots are outside a radius: `/plot condense <world> info <radius>`
- It will also display the minimum radius you can specify.
- If you already have thousands of plots outside your desired radius, it can take quite a long time.
#### World trim (intensive)
The world trim function will attempt to delete as many chunks which contain no plots. It will drastically reduce the size of the world on disk. It is an intensive task, so it is recommended to run it only every week or so.