Created
August 3, 2013 10:51
-
-
Save Ribesg/6146075 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################################################################### | |
## Config file for NWorld plugin ## | |
## If you don't understand something, please ask on dev.bukkit.org ## | |
## Ribesg ## | |
##################################################################### | |
############# | |
## General ## | |
############# | |
# Configures the behaviour of the /spawn command. Two possibilities: | |
# - 0 = Teleports the player to the current world's spawn point | |
# - 1 = Teleports the player to a "Global" spawn point | |
# Default : 1 | |
spawnCommandBehaviour: 1 | |
# The default permission required to warp to a point, set if | |
# not provided in "/nworld create" or "/setwarp" commands | |
# Default : nworld.admin | |
defaultRequiredPermission: "nworld.admin" | |
# The default value for any new World or Warp created, set if | |
# not provided in "/nworld create" or "/setwarp" commands | |
# Default : true | |
defaultHidden: true | |
# You can use those shortcuts when setting a required Permission | |
# to a world or a warp >>> VIA IN GAME COMMANDS <<< /!\ | |
# Note: every key should be lowercase. | |
permissionShortcuts: | |
user: "nworld.user" | |
admin: "nworld.admin" | |
############## | |
## Messages ## | |
############## | |
# Do we broadcast a message on World creation. Possible values: 0,1 | |
# Default : 0 | |
broadcastOnWorldCreate: 0 | |
# Do we broadcast a message on World load. Possible values: 0,1 | |
# Default : 0 | |
broadcastOnWorldLoad: 0 | |
# Do we broadcast a message on World unload. Possible values: 0,1 | |
# Default : 0 | |
broadcastOnWorldUnload: 0 | |
############ | |
## Worlds ## | |
############ | |
# Values for stock worlds (Handled by Bukkit config files) | |
# - Spawn Location | |
# - Required Permission for direct warp to this world's spawn point | |
# - If this world will be hidden to those that are not allowed to directly warp to it | |
stockWorlds: | |
"world": | |
spawnLocation: | |
x: 70.4852633448827 | |
y: 68.0 | |
z: 413.469017218467 | |
yaw: -0.44998625 | |
pitch: 17.549986 | |
seed: -445344380136228008 | |
requiredPermission: "nworld.user" | |
hidden: false | |
# Values for additional worlds | |
# - Spawn Location | |
# - Required Permission for direct warp to this world's spawn point | |
# - If this world: | |
# * was loaded at last server stop | |
# * will be loaded at next server start | |
# - If this world will be hidden to those that are not allowed to directly warp to it | |
# - If this world has an associated Nether world, and the associated parameters | |
# - If this world has an associated End world, and the associated parameters | |
additionalWorlds: | |
"world1": | |
spawnLocation: | |
x: 70.4852633448827 | |
y: 68.0 | |
z: 413.469017218467 | |
yaw: -0.44998625 | |
pitch: 17.549986 | |
seed: -445344380136228008 | |
requiredPermission: "nworld.user" | |
enabled: true | |
hidden: false | |
hasNether: false | |
netherWorld: # Ignore this category if this world has no Nether sub-world | |
spawnLocation: | |
x: 70.4852633448827 | |
y: 68.0 | |
z: 413.469017218467 | |
yaw: -0.44998625 | |
pitch: 17.549986 | |
requiredPermission: "nworld.user" | |
enabled: true | |
hidden: false | |
hasEnd: false | |
endWorld: # Ignore this category if this world has no End sub-world | |
spawnLocation: | |
x: 70.4852633448827 | |
y: 68.0 | |
z: 413.469017218467 | |
yaw: -0.44998625 | |
pitch: 17.549986 | |
requiredPermission: "nworld.user" | |
enabled: true | |
hidden: false | |
"world2": | |
spawnLocation: | |
x: -354.5207512059457 | |
y: 62.0 | |
z: 368.3692207504754 | |
yaw: 110.10005 | |
pitch: -13.350007 | |
seed: 2880691746977547361 | |
requiredPermission: "nworld.user" | |
enabled: true | |
hidden: false | |
hasNether: false | |
netherWorld: # Ignore this category if this world has no Nether sub-world | |
spawnLocation: | |
x: -354.5207512059457 | |
y: 62.0 | |
z: 368.3692207504754 | |
yaw: 110.10005 | |
pitch: -13.350007 | |
requiredPermission: "nworld.user" | |
enabled: true | |
hidden: false | |
hasEnd: false | |
endWorld: # Ignore this category if this world has no End sub-world | |
spawnLocation: | |
x: -354.5207512059457 | |
y: 62.0 | |
z: 368.3692207504754 | |
yaw: 110.10005 | |
pitch: -13.350007 | |
requiredPermission: "nworld.user" | |
enabled: true | |
hidden: false | |
########### | |
## Warps ## | |
########### | |
# Everything warp related | |
# - Location | |
# - Required Permission to warp | |
# - If it is hidden to those who do not have the required permission | |
warps: | |
"warp1": | |
location: | |
worldName: world | |
x: -147.77499560712644 | |
y: 73.0 | |
z: 512.5220555731207 | |
yaw: -90.89985 | |
pitch: -5.4000087 | |
requiredPermission: "nworld.user" | |
hidden: false | |
"warp2": | |
location: | |
worldName: world | |
x: -568.2510138918271 | |
y: 67.0 | |
z: -14.558524158439218 | |
yaw: -180.90057 | |
pitch: 2.699977 | |
requiredPermission: "nworld.user" | |
hidden: false | |
"warp3": | |
location: | |
worldName: world | |
x: -214.62308705631241 | |
y: 69.5 | |
z: -247.54651861599785 | |
yaw: -90.1508 | |
pitch: -6.30004 | |
requiredPermission: "nworld.user" | |
hidden: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment