Advertisement
Schrado

area shop default

Oct 15th, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.93 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: false
  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. ## Restricts the /as buy and /as rent commands to the world of the region
  29. ## Usefull if you have diffrent economies for different worlds
  30. restrictedToWorld: false
  31. ## Restricts the /as buy and /as rent commands to the region itself (player needs to be inside)
  32. restrictedToRegion: false
  33.  
  34.  
  35. # ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
  36. # │ RENT: Options for rent regions │
  37. # └────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
  38. rent:
  39. ## The default price of a renting region
  40. price: 500
  41. ## The default duration of a renting region, you can find all time indicators in config.yml below the RENTING header
  42. duration: '7 days'
  43. ## The percentage of the renting price you get back if you unrent the region (price of time left will be multiplied by this/100)
  44. moneyBack: 75
  45. ## Maximum number of extends a player can do (-1 for infinite, 0 for no extending)
  46. maxExtends: -1
  47. ## The Maximum time they can have the region rented in advance (minutes, -1 for infinite)
  48. ## If you set this lower then the rent duration then players will not be able to rent the region
  49. ## (because it always exceeds the maxRentTime in that case)
  50. maxRentTime: -1
  51. ## Automatically unrent the region after the specified number of minutes between the last login time of the renter and the current time
  52. ## -1 means never, 1440 is one day, 43200 is one month, 525600 is one year
  53. inactiveTimeUntilUnrent: 43200
  54. ## If a region of a player has less then this time left when he joins the server he will get a warning
  55. ## You can find all time indicators in config.yml below the RENTING header, change to '' to disable
  56. warningOnLoginTime: '1 day'
  57. ## The profile for the expiration warnings as specified in the config
  58. expirationWarningProfile: 'default'
  59.  
  60.  
  61. # ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
  62. # │ BUY: Options for buy regions │
  63. # └────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
  64. buy:
  65. ## The default price of a buying region
  66. price: 2500
  67. ## The percentage of the buying price you get back if you sell the region
  68. moneyBack: 75
  69. ## Automatically sell the region after the specified number of minutes between the last login time of the buyer and the current time
  70. ## -1 mean never, 1440 is one day, 43200 is one month, 525600 is one year
  71. inactiveTimeUntilSell: -1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement