Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
  2. # If you receive an error when Essentials loads, ensure that:
  3. # - No tabs are present: YAML only allows spaces
  4. # - Indents are correct: YAML heirarchy is based entirely on indentation
  5. # - You have "escaped" all apostrophes in your text: If you want to write "don't", for example, write "don''t" instead (note the doubled apostrphe)
  6. # - List items are prefixed with a hyphen and indented:
  7. # lists:
  8. # - look like this
  9. # not:
  10. # - like this
  11. # - Text with symbols is enclosed in single or double quotation marks
  12. # - CraftBukkit and Permissions have been updated: CraftBukkit and Essentials almost always line up, but sometimes other plugins fall behind CraftBukkit's multiple daily updates
  13. # - You have saved the document as UTF-8, NOT the default, ANSI
  14.  
  15. # A color code between 0-9 or a-f. Set to 'none' to disable.
  16. ops-name-color: '4'
  17.  
  18. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  19. nickname-prefix: '~'
  20.  
  21. # The delay, in seconds, required between /home, /tp, etc.
  22. teleport-cooldown: 3
  23.  
  24. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  25. teleport-delay: 0
  26.  
  27. # The delay, in seconds, required between /heal attempts
  28. heal-cooldown: 1
  29.  
  30. # The number of items given if the quantity parameter is left out in /item or /give.
  31. default-stack-size: 64
  32.  
  33. # Whether or not to reclaim memory on player logout; this is technical, and should only be disabled under special circumstances.
  34. # This generally increases server stability unless very specific runtime configurations are used.
  35. reclaim-onlogout: true
  36.  
  37. # Should primitive spawn protection be enabled? For most servers, this should be flase; it is better to use a third-party plugin to protect it.
  38. spawn-protection: false
  39.  
  40. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  41. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  42. nether:
  43. enabled: false
  44. folder: nether
  45. portals-enabled: false
  46.  
  47. # Mob limit on spawnmob
  48. spawnmob-limit: 30
  49.  
  50. #Show other plugins commands in help
  51. non-ess-in-help: true;
  52.  
  53. # The message of the day, displayed on connect and by typing /motd.
  54. motd:
  55. - '&3Welcome, &7{PLAYER}.'
  56. - '&3Type &7/help&3 for a list of commands.'
  57. - '&1Currently online: &7{PLAYERLIST}'
  58. - '&dIf you would like more help, Please ask a &8"&7Admin&8".'
  59. - '&4IMPORTANT!&a The server is still under construction&7...'
  60. - '&7...&5So you may get disconnected every now and again.'
  61.  
  62. # The server rules, available by typing /rules
  63. rules:
  64. - '&7Do not try and break any of these rules!'
  65. - '&7[&6Golden Rule&7] Do &4NOT &7Grief!'
  66. - '&7[1] Do not get cocky!'
  67. - '&7[2] Do not try and spawn Banned items!'
  68. - '&7[3] Use common sense!'
  69. - '&7[4] Don''t ask for promotions!'
  70. - '&7[5] Helping a admin may get you ranked!'
  71. - '&7If there are any more rules you are thinking of&f...'
  72. - '&f...&7Please tell a "Admin" and there may be a reward!'
  73.  
  74. # Disabled commands will be completelly unavailable on the server.
  75. disabled-commands:
  76.  
  77. # Restricted commands will only be available to ops.
  78. # These will have NO EFFECT if you have Permissions installed!
  79. # These are here only if you want something simpler than Permissions.
  80. restricted-commands:
  81. - bigtree
  82. - plugin
  83. - time
  84. - top
  85. - tree
  86.  
  87. # Note: All items MUST be followed by a quantity!
  88. # Times are measured in seconds.
  89. kits:
  90. tools:
  91. delay: 10
  92. items:
  93. - 277 1
  94. - 278 1
  95. - 279 1
  96.  
  97.  
  98. # EssentialsProtect settings requires EssentialsProtect.jar
  99.  
  100. #Database settings
  101.  
  102. #mysql or sqlite
  103. ep-datatype: 'sqlite'
  104.  
  105. #database login details for mysql
  106. ep-username: 'root'
  107. ep-pasword: 'root'
  108. ep-mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  109.  
  110. #Protection settings
  111. ep-protectSigns: true
  112. ep-protectRails: true
  113. ep-protectBlockBelow: true
  114. ep-preventBlockOnRail: false
  115.  
  116. # End Essentials Protect Settings
  117.  
  118. # End of File
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement