Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.62 KB | None | 0 0
  1. # ╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
  2. # ║ default.yml file of the AreaShop plugin created by NLThijs48, Github can be found at https://github.com/NLthijs48/AreaShop.║
  3. # ║ All settings below are default settings and can be overridden by group settings or individual region settings. ║
  4. # ╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝
  5. # ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
  6. # │ GENERAL: Options for all regions. │
  7. # └────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
  8. general:
  9. ## Set this to true to enable saving/restoring for regions as specified in the profile below, which is specified in the config.
  10. enableRestore: true
  11. ## The schematic profile as specified in the config.
  12. schematicProfile: 'default'
  13. ## The event commands profile as specified in the config.
  14. eventCommandProfile: 'default'
  15. ## The profile for the format of the sign as specified in the config.
  16. signProfile: 'default'
  17. ## The profile for the WorldGuard flags as specified in the config.
  18. flagProfile: 'default'
  19. ## The y location within the region to start searching for safe teleport spots (x and z will be in the middle of the region).
  20. ## Possible values: bottom, middle, top.
  21. teleportLocationY: bottom
  22. ## If true the teleportation algorithm only allows telportation to inside the region, otherwise it will expand algorithm
  23. ## a cube from the starting point to check for safe spots (then it could end outside the region).
  24. ## If you set a teleport location outside of the region with /as settp then setting this to true breaks that teleport (players cannot use it).
  25. teleportIntoRegion: true
  26. ## Same as above, but then for when you teleport to the sign of a region instead of the region itself.
  27. teleportToSignIntoRegion: false
  28. ## Set where the '/as find' command should teleport the player to, set to true for the first sign of the region and set to
  29. ## false to teleport to the location set by '/as settp' or the default location (if not set).
  30. findTeleportToSign: true
  31. ## Restricts the /as buy and /as rent commands to the world of the region .
  32. ## Useful if you have diffrent economies for different worlds.
  33. restrictedToWorld: false
  34. ## Restricts the /as buy and /as rent commands to the region itself (player needs to be inside).
  35. restrictedToRegion: false
  36. ## The UUID of the landlord, this player will receive all money from rents/buys (but not reselling with '/as resell').
  37. ## If you use this value be sure that you set 'moneyBack' to 0, because money will not be substracted from the account
  38. ## of the landlord and the player would get money 'out of thin air'.
  39. landlord: ""
  40. ## Name of the landlord, if the landlord UUID setting is not provided then the name will be used instead
  41. landlordName: ""
  42.  
  43. # ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
  44. # │ RENT: Options for rent regions. │
  45. # └────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
  46. rent:
  47. ## The default price of a renting region.
  48. price: 5000
  49. ## The default duration of a renting region, you can find all time indicators in config.yml below the RENTING header.
  50. duration: '1 day'
  51. ## The percentage of the renting price you get back if you unrent the region (price of time left will be multiplied by this/100).
  52. moneyBack: 0
  53. ## Maximum number of extends a player can do (-1 for infinite, 0 for no extending).
  54. maxExtends: -1
  55. ## The Maximum time they can have the region rented in advance (use times like '1 day' etc, or 'unlimited' for no limit).
  56. ## If you set this lower then the rent duration then players will not be able to rent the region
  57. ## (because it always exceeds the maxRentTime in that case).
  58. maxRentTime: 'unlimited'
  59. ## Automatically unrent the region after the specified number of minutes between the last login time of the renter and the current time.
  60. ## Use times like '1 day' etc, or 'disabled' for never.
  61. inactiveTimeUntilUnrent: 'disabled'
  62. ## If a region of a player has less then this time left when he joins the server he will get a warning.
  63. ## You can find all time indicators in config.yml below the RENTING header, change to '' to disable.
  64. warningOnLoginTime: '1 day'
  65. ## The profile for the expiration warnings as specified in the config.
  66. expirationWarningProfile: 'default'
  67.  
  68.  
  69. # ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
  70. # │ BUY: Options for buy regions. │
  71. # └────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
  72. buy:
  73. ## The default price of a buying region.
  74. price: 1000
  75. ## The percentage of the buying price you get back if you sell the region.
  76. moneyBack: 100
  77. ## Automatically sell the region after the specified number of minutes between the last login time of the buyer and the current time
  78. ## -1 mean never, 1440 is one day, 43200 is one month, 525600 is one year.
  79. inactiveTimeUntilSell: -1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement