Advertisement
Guest User

Untitled

a guest
Feb 1st, 2013
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.98 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | EssentialsHome | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # Allows people to set their bed at daytime
  8. update-bed-at-daytime: true
  9.  
  10. # Set to true to enable per-world permissions for using homes to teleport between worlds
  11. # This applies to the /home only.
  12. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  13. world-home-permissions: false
  14.  
  15. # Allow players to have multiple homes.
  16. # Players need essentials.sethome.multiple before they can have more than 1 home, defaults to 'default' below.
  17. # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip
  18. # People with essentials.sethome.multiple.unlimited are not limited by these numbers.
  19. # For more information, visit http://wiki.ess3.net/wiki/Multihome
  20. sethome-multiple:
  21. default: 3
  22. # essentials.sethome.multiple.vip
  23. vip: 5
  24. # essentials.sethome.multiple.staff
  25. staff: 10
  26.  
  27. # Set timeout in seconds for players to accept tpa before request is cancelled.
  28. # Set to 0 for no timeout
  29. tpa-accept-cancellation: 0
  30.  
  31. ############################################################
  32. # +------------------------------------------------------+ #
  33. # | EssentialsHelp | #
  34. # +------------------------------------------------------+ #
  35. ############################################################
  36.  
  37. # Show other plugins commands in help
  38. non-ess-in-help: true
  39.  
  40. # Hide plugins which do not give a permission
  41. # You can override a true value here for a single plugin by adding a permission to a user/group.
  42. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
  43. # You can use negative permissions to remove access to just a single plugins help if the following is enabled.
  44. hide-permissionless-help: true
  45.  
  46. ############################################################
  47. # +------------------------------------------------------+ #
  48. # | EssentialsChat | #
  49. # +------------------------------------------------------+ #
  50. ############################################################
  51.  
  52. chat:
  53.  
  54. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  55. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  56. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  57. # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  58. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  59. radius: 0
  60.  
  61. # Chat formatting can be done in two ways, you can either define a standard format for all chat
  62. # Or you can give a group specific chat format, to give some extra variation.
  63. # If set to the default chat format which "should" be compatible with ichat.
  64. # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting
  65.  
  66. format: '<{DISPLAYNAME}> {MESSAGE}'
  67. #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'
  68.  
  69. group-formats:
  70. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
  71. # Admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'
  72.  
  73. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  74.  
  75. ############################################################
  76. # +------------------------------------------------------+ #
  77. # | Essentials Spawn / New Players | #
  78. # +------------------------------------------------------+ #
  79. ############################################################
  80.  
  81. newbies:
  82. # Should we announce to the server when someone logs in for the first time?
  83. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  84. # If not, set to ''
  85. #announce-format: ''
  86. announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'
  87.  
  88. # When we spawn for the first time, which spawnpoint do we use?
  89. # Set to "none" if you want to use the spawn point of the world.
  90. spawnpoint: newbies
  91.  
  92. # Do we want to give users anything on first join? Set to '' to disable
  93. # This kit will be given regardless of cost, and permissions.
  94. #kit: ''
  95. kit: tools
  96.  
  97. # Set this to lowest, if you want Multiverse to handle the respawning
  98. # Set this to high, if you want EssentialsSpawn to handle the respawning
  99. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning
  100. respawn-listener-priority: high
  101.  
  102. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  103. respawn-at-home: false
  104.  
  105. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement