Advertisement
Charflow

Untitled

Oct 24th, 2013
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. ##############################################################################
  2. # Permissions: #
  3. # #
  4. # RandomLocation.Use - Permission for the /rSpawn command and /rList #
  5. # RandomLocation.Admin - Permission for the /rSet command and the /rPlayer #
  6. # #
  7. # #
  8. # To add custom permission to a zone, go into the zone config and make 2 #
  9. # spaces then add Permission: <YourPermissionNode> #
  10. # You can also see the example in the Zone.yml #
  11. # #
  12. # #
  13. ##############################################################################
  14. # -
  15. # You can find a more detailed config at http://dev.bukkit.org/server-mods/randomlocation/
  16. # -
  17. # Range.From:
  18. # this is from where the range is, can be "spawn", "rlz"(From the RandomLocationZone)
  19. # -
  20. # -
  21. # Teleporting.SpawnOn:
  22. # If set to "Grass" then players will only spawn on grass
  23. # -
  24. # If set to "Ground" the players will only spawn on the ground,
  25. # but can be in caves and houses
  26. # -
  27. # If set to "Air" the players will spawn in the air with 10 seconds of God mode
  28. # -
  29. # If set to "GroundCustom" then players will only spawn on blocks defined in
  30. # Teleporting.SpawnOnBlocks
  31. # -
  32. # If set to "Top" then players will only spawn on the top location(not under any blocks)
  33. # -
  34. # If set to "TopCustom" then players will only spawn on the top location but will spawn
  35. # under blocks defined in Teleporting.CustomTopBlocks
  36. # -
  37. # -
  38. # Teleporting.SpawnOnBlocks:
  39. # SpawnOnBlocks is which blocks players will be able to spawn on if SpawnOn is set to
  40. # "Custom" and uses ID's
  41. # -
  42. # -
  43. #
  44. # CustomTopBlocks is which blocks the player will spawn under when SpawnOn is set to
  45. # TopCustom, default set to 18(Leaves)
  46. # -
  47. # -
  48. # Teleporting. TeleportOnFirstJoinZone
  49. # This is the zone that players will spawn in on first join
  50. # -
  51. # -
  52. # Teleporting.rSpawnPermission:
  53. # If set to true then player will be ale to do /rHelp and /rSpawn
  54. # -
  55. # -
  56. # AutoUpdater.PromptAdminForUpdateOnLogin:
  57. # Sends a message to every one with RandomLocation.Admin
  58. # that there is and update when they log in
  59. # -
  60. # AutoUpdater.CheckForUpdateInterval:
  61. # How often should RandomLocation check for updates, can use h, m & s like so:
  62. # AutoUpdater.CheckForUpdateInterval: 2h 34m 9s
  63. # Set the return value to 0 (either 0h, 0m or 0s) to disable
  64. # -
  65. # -
  66. # Aliases:
  67. # Add command aliases like shown below
  68. # Alias: ZoneName
  69. # The alias will be ignore case and will override all commands
  70. # So if you say:
  71. # Give: Zone1
  72. # Then it will break the /give command
  73. # -
  74. # -
  75. Range:
  76. Enable: true
  77. Range: 5000
  78. From: rlz
  79. Teleporting:
  80. KeepDirection: true
  81. Checks: 100
  82. SpawnOn: Top
  83. SpawnOnBlocks: [1, 2, 3]
  84. CustomTopBlocks: [18]
  85. TeleportOnFirstJoin: false
  86. TeleportOnFirstJoinZone: SkyGrid
  87. rSpawnPermission: false
  88. OpenSigns: true
  89. OpenPortals: true
  90. DefaultZone: SkyGrid
  91. Invulnerability: 1
  92. CoolDown:
  93. Commands: 120
  94. Signs: 0
  95. Portals: 0
  96. AutoUpdater:
  97. Enable: true
  98. CheckForBetas: false
  99. PromptAdminForUpdateOnLogin: true
  100. CheckForUpdateInterval: 6h
  101. Other:
  102. UseFactionSupport: false
  103. Aliases:
  104. RandomLocation: SkyGrid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement