Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.63 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 d$
  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: 'c'
  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: 0
  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: 60
  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. # The delay, in seconds, required between /home, /tp, etc.
  41. teleport-cooldown: 0
  42.  
  43. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  44. teleport-delay: 0
  45.  
  46. # The delay, in seconds, required between /heal attempts
  47. heal-cooldown: 60
  48.  
  49. # The number of items given if the quantity parameter is left out in /item or /give.
  50. default-stack-size: 64
  51.  
  52. # Whether or not to reclaim memory on player logout; this is technical, and should only be disabled under special circumstances.
  53. # This generally increases server stability unless very specific runtime configurations are used.
  54. reclaim-onlogout: true
  55.  
  56. # 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.
  57. spawn-protection: false
  58.  
  59. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  60. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  61. nether:
  62. enabled: false
  63. folder: nether
  64. portals-enabled: false
  65.  
  66. # Mob limit on spawnmob
  67. spawnmob-limit: 10
  68.  
  69. #Show other plugins commands in help
  70. non-ess-in-help: true;
  71.  
  72. #JONASUR EDIT
  73. # The message of the day, displayed on connect and by typing /motd.
  74. motd:
  75. - '&cHi, {PLAYER}&c!'
  76. - '&fGib &c/help&f für eine vollständige Liste ein.'
  77. - '&fBitte lies dir &c/rules&f durch!'
  78. - '&fCurrently online: {PLAYERLIST}'
  79.  
  80. #JONASUR EDIT
  81. # The server rules, available by typing /rules
  82. rules:
  83. - '[1] Kein Griefing'
  84. - '[2] Gib /afk ein wenn du weg bist'
  85. - '[3] sei freundlich'
  86.  
  87. # Disabled commands will be completelly unavailable on the server.
  88. disabled-commands:
  89. - nick
  90.  
  91. #JONASUR EDIT
  92. # Restricted commands will only be available to ops.
  93. # These will have NO EFFECT if you have Permissions installed!
  94. # These are here only if you want something simpler than Permissions.
  95. restricted-commands:
  96. - bigtree
  97. - item
  98. - heal
  99. - plugin
  100. - time
  101. - top
  102. - tp
  103. - tphere
  104. - tree
  105. - setspawn
  106. - setwarp
  107.  
  108. # Note: All items MUST be followed by a quantity!
  109. # Times are measured in seconds.
  110. kits:
  111. tools:
  112. delay: 10
  113. items:
  114. - 277 1
  115. - 278 1
  116. - 279 1
  117.  
  118.  
  119. # EssentialsProtect settings requires EssentialsProtect.jar
  120.  
  121. #Database settings
  122.  
  123. #mysql or sqlite
  124. ep-datatype: 'sqlite'
  125.  
  126. #database login details for mysql
  127. ep-username: 'root'
  128. ep-pasword: 'root'
  129. ep-mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  130.  
  131. #Protection settings
  132. ep-protectSigns: true
  133. ep-protectRails: true
  134. ep-protectBlockBelow: true
  135. ep-preventBlockOnRail: false
  136.  
  137. # End Essentials Protect Settings
  138.  
  139. # End of File
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement