Advertisement
Guest User

Config

a guest
Jan 12th, 2014
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. # +----------------------------------------------------+
  2. # < Houses config >
  3. # +----------------------------------------------------+
  4.  
  5. # DO NOT USE TAB INDENTION. Indent with spaces instead
  6. # This will make players get the specified rank (permission group) for the class he/she buys
  7. use-class-ranks: true
  8.  
  9. # Enabling this will let you leave the price row blank on signs and let the plugin automatically set the right price
  10. use-class-prices: true
  11.  
  12. # It is recommended to have autoclosing doors to avoid griefing
  13. autoclose-door-delay: 2.5
  14.  
  15. # Cooldown for "/house home" command in seconds. Use -1 for no cooldown
  16. home-teleport-cooldown: 3
  17.  
  18. # Put -1 to allowed unlimited houses
  19. maximum-houses: 1
  20.  
  21. # It is recommended to clean the database on start because a corrupt database
  22. # will cause trouble when doing database syncronization
  23. clean-database-on-start: true
  24.  
  25. # This is the rank (permissions group) the players will get if they become homeless
  26. homeless:
  27.  
  28. # If using class prices, Houses will use this percentage to calculate sell prices on signs
  29. sell-percentage: 75
  30.  
  31. # This is where you configure your classes. The staff classses (owner/admin/mod) can not be configured below
  32. # as they should be added by other staff manually for security reasons.
  33. # There are two example of how classes can be configured below.
  34. classes:
  35. '1':
  36. rank: Rich
  37. price: 500000
  38. per-day-cost: 20000
  39. info: The best house there is
  40. '2':
  41. rank: Wealthy
  42. price: 250000
  43. per-day-cost: 10000
  44. info: Seccond best house you can rent
  45. '3':
  46. rank: average
  47. price: 500000
  48. per-day-cost: 3000
  49. info: Just a normal house.
  50. '4':
  51. rank: poor
  52. price: 5000
  53. per-day-cost: 500
  54. info: A poor sh!t house.
  55. '5':
  56. rank: Homeless
  57. price: 0
  58. per-day-cost: 0
  59. info: You have no house. Deal with it
  60.  
  61.  
  62.  
  63. worlds:
  64. display-worlds: true
  65. CreeperRP:
  66. display-name: CreeperRP
  67. CreeperRP_nether:
  68. display-name: CreeperRP_nether
  69. CreeperRP_the_end:
  70. display-name: CreeperRP_the_end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement