diff --git a/README b/README index b424b88..a6aee05 100644 --- a/README +++ b/README @@ -196,6 +196,11 @@ createConflict=Gate conflicts with existing gate ============= Changes ============= +[Version 0.7.0] + - Minecraft 1.0.0 support + - New FileConfiguration implemented + - Stop gates being destroyed on right-click in Creative mode + - Fixed signs not updating with a hackish workaround until Bukkit is fixed [Version 0.6.10] - Added Register support as opposed to iConomy [Version 0.6.9] diff --git a/src/config.yml b/src/config.yml new file mode 100644 index 0000000..cf5bf8e --- /dev/null +++ b/src/config.yml @@ -0,0 +1,37 @@ +# Stargate Configuration File +# Main Stargate config + +# The folder for storing portals +portal-folder: plugins/Stargate/portals/ +# The folder for storing gate layouts +gate-folder: plugins/Stargate/gates/ +# The default gate network +default-gate-network: central +# Whether or not to destroy gates with explosions (Creeper, TNT, etc) +destroyexplosion: false +# The maximum number of gates allowed on a network - 0 for unlimited +maxgates: 0 +# The language file to load for messages +lang: en + +# Stargate economy options + +# Whether to use an economy plugin (Uses Register to interact with all economy plugins) +useiconomy: +# The cost to create a gate +createcost: 0 +# The cost to destroy a gate +destroycost: 0 +# The cost to use a gate +usecost: 0 +# Whether the charge for using a gate goes to the gates owner +toowner: false +# Whether a gate whose destination is a free gate is still charged +chargefreedestination: true +# Whether a free gate in the destination list is drawn green +freegatesgreen: false + +# Debug -- Only enable if you have issues, massive console output +debug: false +# This will output any and all Permissions checks to console, used for permissions debugging +permdebug: false \ No newline at end of file