Advertisement
Guest User

HSP

a guest
Nov 20th, 2012
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. # While the comments in here try to be helpful, the most up-to-date
  2. # documentation for these options can always be found on the web at:
  3. #
  4. # 'http://dev.bukkit.org/server-mods/homespawnplus/pages/config-params'
  5. #
  6. # This is the simplified "basic" configuration. See the
  7. # "config_defaults.yml" file for full options listing.
  8.  
  9. core:
  10. # EBEANS - Use SqlLite or MySQL, as defined by bukkit.yml
  11. # YAML - Use yaml storage files
  12. storage: EBEANS
  13.  
  14. # set to true to enable players setting their homes by clicking beds.
  15. # they must also have the 'hsp.home.bedsethome' permission.
  16. bedsethome: true
  17.  
  18. # locales available: en, de, fr, nl, ru, pt
  19. locale: de
  20.  
  21. verboseLogging: false
  22. verboseStrategyLogging: false
  23.  
  24. # HSP warnings which help you find possible errors in your config.
  25. # Leave on unless you're getting warnings in your server.log that
  26. # you know you want to disable & ignore.
  27. warnConflicts: true
  28. warnNullStrategy: true
  29. warnLocationChange: true
  30.  
  31. # Web doc reference for event strategies:
  32. # http://dev.bukkit.org/server-mods/homespawnplus/pages/strategy-doc/
  33. #
  34. events:
  35. # strategies to use when player is joining the game
  36. onJoin:
  37. - spawnNewPlayer
  38. - default
  39.  
  40. # strategies to use when player is respawning after a death
  41. onDeath:
  42. - homeMultiWorld
  43. - spawnLocalWorld
  44.  
  45. # strategies to use when player types "/spawn"
  46. onSpawnCommand:
  47. - spawnLocalWorld
  48.  
  49. # strategies to use when player types "/groupspawn"
  50. onGroupSpawnCommand:
  51. - spawnGroup
  52.  
  53. # strategies to use when player types "/home"
  54. onHomeCommand:
  55. - homeMultiWorld
  56.  
  57. # cooldowns for various commands can be defined here
  58. # A cooldown of 0 is no cooldown at all.
  59. cooldown:
  60. home: 60
  61. spawn: 60
  62. groupspawn: 60
  63.  
  64. warmup:
  65. # globally enable or disable warmups.
  66. enabled: false
  67.  
  68. # set to true if movement should cancel a warmup
  69. onMoveCancel: false
  70.  
  71. # set to true if receiving damage should cancel a warmup
  72. onDamageCancel: false
  73.  
  74. # individual command warmup timers
  75. home: 5
  76. spawn: 5
  77. groupspawn: 5
  78.  
  79. # Define limits on number of homes (-1 = unlimited)
  80. homeLimits:
  81. # If true, players can only have a single global home (set
  82. # either by /sethome or a bed)
  83. singleGlobalHome: false
  84.  
  85. default:
  86. perWorld: 1
  87. global: -1
  88.  
  89. # If you have Vault installed, HSP can use that to charge prices for
  90. # commands using whatever economy plugin you happen to have installed.
  91. # Costs will not work if you do not have Vault installed.
  92. #
  93. # http://dev.bukkit.org/server-mods/vault/
  94. cost:
  95. # if verbose is true, the player will get a message stating that their
  96. # account has been charged whenever they use a command with a cost.
  97. verbose: false
  98.  
  99. home: 0
  100. sethome: 0
  101. spawn: 0
  102. groupspawn: 0
  103.  
  104. # If you want to use home invites, please read documentation:
  105. # http://goo.gl/sc6oa
  106. homeInvite:
  107. timeout: 30
  108. useHomeCooldown: true
  109. useHomeWarmup: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement