Advertisement
Guest User

tutorial

a guest
Mar 11th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.62 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | Notes | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
  8. # If you receive an error when Essentials loads, ensure that:
  9. # - No tabs are present: YAML only allows spaces
  10. # - Indents are correct: YAML heirarchy is based entirely on indentation
  11. # - 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)
  12. # - List items are prefixed with a hyphen and indented:
  13. # lists:
  14. # - look like this
  15. # not:
  16. # - like this
  17. # - Text with symbols is enclosed in single or double quotation marks
  18. # - CraftBukkit and Permissions have been updated: CraftBukkit and Essentials almost always line up, but sometimes other plugins fall behind CraftBukkit's multiple daily updates
  19. # - You have saved the document as UTF-8, NOT the default, ANSI
  20.  
  21. ############################################################
  22. # +------------------------------------------------------+ #
  23. # | Essentials (Global) | #
  24. # +------------------------------------------------------+ #
  25. ############################################################
  26.  
  27. # A color code between 0-9 or a-f. Set to 'none' to disable.
  28. ops-name-color: ''
  29.  
  30. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  31. nickname-prefix: ''
  32.  
  33. # The delay, in seconds, required between /home, /tp, etc.
  34. teleport-cooldown: 3
  35.  
  36. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  37. teleport-delay: 3
  38.  
  39. # The delay, in seconds, required between /heal attempts
  40. heal-cooldown: 45
  41.  
  42. # The number of items given if the quantity parameter is left out in /item or /give.
  43. default-stack-size: 64
  44.  
  45. # What to prevent from /i /give
  46. # e.g item-spawn-blacklist: 46,11,10
  47. item-spawn-blacklist: 46,11,10
  48.  
  49. # Set this to true if you want permission based item spawn rules
  50. # Permissions:
  51. # - essentials.itemspawn.item-all
  52. # - essentials.itemspawn.item-[itemname]
  53. # - essentials.itemspawn.item-[itemid]
  54. # - essentials.give.item-all
  55. # - essentials.give.item-[itemname]
  56. # - essentials.give.item-[itemid]
  57. permission-based-item-spawn: false
  58.  
  59. # Whether or not to reclaim memory on player logout; this is technical, and should only be changed under special circumstances.
  60. # This generally increases server stability unless very specific runtime configurations are used.
  61. # HOWEVER, it is known to cause lag upon users logging OUT, so beware!
  62. reclaim-onlogout: false
  63.  
  64. # 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.
  65. spawn-protection: false
  66.  
  67. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  68. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  69. nether:
  70. enabled: true
  71. folder: nether
  72. portals-enabled: true
  73. generate-exit-portals: true
  74. ratio: 16
  75.  
  76. # Mob limit on spawnmob
  77. spawnmob-limit: 10
  78.  
  79. #Shall we notify users when using /lightning
  80. warn-on-smite: true
  81.  
  82. # The message of the day, displayed on connect and by typing /motd.
  83. motd:
  84. - '&cDobre Doshyl, {PLAYER}&c! - Tutorial'
  85. - '&fType &c/help&f for a list of commands.'
  86. - '&fType &c/rules&f for a list of behavior expectations.'
  87. - 'Currently online: {PLAYERLIST}'
  88.  
  89. # The server rules, available by typing /rules
  90. rules:
  91. - '[1] Ne igrai s hack v servera . - Nakazanie : Ban 3days'
  92. - '[2] Do not destroy things built by other players'
  93. - '[3] Player versus player allowed only in arenas'
  94. - '[4] All actions and statements are logged, so any infraction of above the rules will result in your being kicked and banned'
  95.  
  96. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take
  97. # priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:
  98. # usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.
  99. # For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god
  100. # will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an "e",
  101. # such as /egod, will always grant Essentials priority.
  102. # Because WorldGuard's /god is broken/unreliable, we should try to take priority over /god. If this doesn't work, use
  103. # /essentials:god or /egod. Do NOT use WorldGuard's /god, or you will likely be stuck in god mode.
  104. overridden-commands:
  105. - god
  106.  
  107. # Disabled commands will be completelly unavailable on the server.
  108. disabled-commands:
  109. # - nick
  110. - ?
  111. - bukkit:?
  112. - pl
  113. - plugins
  114.  
  115. # Restricted commands will only be available to ops.
  116. # These will have NO EFFECT if you have Permissions installed!
  117. # These are here only if you want something simpler than Permissions.
  118. restricted-commands:
  119. - bigtree
  120. - item
  121. - give
  122. - heal
  123. - plugin
  124. - time
  125. - top
  126. - tp
  127. - tphere
  128. - tree
  129. - setspawn
  130. - antioch
  131. - kick
  132. - ban
  133. - unban
  134. - top
  135. - jump
  136. - tpo
  137. - tppos
  138. - tpohere
  139. - economy
  140. - setwarp
  141. - delwarp
  142. - essentials
  143. - gc
  144. - spawnmob
  145. - broadcast
  146. - burn
  147. - ext
  148. - kill
  149. - ping
  150. - banip
  151. - unban
  152. - mute
  153. - kick
  154. - kickall
  155. - unbanip
  156. - togglejail
  157. - setjail
  158.  
  159. # Note: All items MUST be followed by a quantity!
  160. # Times are measured in seconds.
  161. kits:
  162. tools:
  163. delay: 10
  164. items:
  165. - 277 1
  166. - 278 1
  167. - 279 1
  168.  
  169. # Disable all signs
  170. signs-disabled: false
  171.  
  172. # Backup runs a command while saving is disabled
  173. backup:
  174. # Interval in minutes
  175. interval: 60
  176. # Add a command that backups your data, e.g.
  177. # command: 'rdiff-backup World1 backups/World1'
  178.  
  179. # Set this true to enable permission per warp.
  180. per-warp-permission: false
  181.  
  182. # Sort output of /list command by groups
  183. sort-list-by-groups: false
  184.  
  185. # More output to the console
  186. debug: false
  187.  
  188. # Set the locale for all messages
  189. # If you don't set this, the default locale of the server will be used.
  190. #locale: de_DE
  191.  
  192. ############################################################
  193. # +------------------------------------------------------+ #
  194. # | EssentialsHome | #
  195. # +------------------------------------------------------+ #
  196. ############################################################
  197.  
  198. # When users die, should they respawn at their homes, instead of the spawnpoint?
  199. respawn-at-home: true
  200.  
  201. # When a user interacts with a bed, should their home be set to that location?
  202. # If you enable this and remove default user access to the /sethome command, you can make beds the only way for players to set their home location.
  203. bed-sethome: false
  204.  
  205. #if no home is set send you to spawn when /home is used
  206. spawn-if-no-home: true
  207.  
  208. ############################################################
  209. # +------------------------------------------------------+ #
  210. # | EssentialsEco | #
  211. # +------------------------------------------------------+ #
  212. ############################################################
  213.  
  214. # Defines the balance with which new players begin. Defaults to 0.
  215. starting-balance: 1000
  216.  
  217. # worth-# defines the value of an item when it is sold to the server via /sell.
  218. # These are now defined in worth.yml
  219.  
  220. # Defines the cost to use the given commands PER USE
  221. command-costs:
  222. # /example costs $1000 PER USE
  223. #example: 1000
  224. # /kit tools costs $1500 PER USE
  225. # kit-tools: 1500
  226.  
  227. #This defines the name of your currencies, in singular and plural
  228. currency-name: Dollar
  229. currency-name-plural: Dollars
  230.  
  231. ############################################################
  232. # +------------------------------------------------------+ #
  233. # | EssentialsHelp | #
  234. # +------------------------------------------------------+ #
  235. ############################################################
  236.  
  237. #Show other plugins commands in help
  238. non-ess-in-help: true
  239.  
  240. ############################################################
  241. # +------------------------------------------------------+ #
  242. # | EssentialsProtect | #
  243. # +------------------------------------------------------+ #
  244. ############################################################
  245.  
  246. protect:
  247. # Database settings for sign/rail protection
  248. # get mysql.jar and sqlite and place it in your serverroot/lib directory from here:
  249. # http://java.net/projects/essentials/sources/svn/show/lib?rev=435
  250.  
  251. # mysql, sqlite or none
  252. datatype: 'mysql'
  253.  
  254. # If you specified MySQL above, you MUST enter the appropriate details here.
  255. # If you specified SQLite above, these will be IGNORED.
  256. username: 'thenetherman'
  257. password: 'thenetherman231'
  258. mysqlDb: 'jdbc:mysql://localhost:3306/thenetherman'
  259.  
  260. # For which block types would you like to be alerted?
  261. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  262. alert:
  263. # 10: lava
  264. # 11: still lava
  265. # 46: TNT
  266. on-placement: 10,11,46
  267. on-use:
  268. # 46: TNT
  269. on-break: 46
  270.  
  271. # Users cannot PLACE these types of blocks/items.
  272. # < 255 designates a BLOCK
  273. # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.)
  274. blacklist:
  275. placement: 327,326,14,56,46,11,10,9,8
  276. usage: 327,326,325
  277.  
  278. #prevent people from breaking blocks
  279. #break: 20,50
  280. break:
  281.  
  282.  
  283. # General physics/behavior modifications
  284. prevent:
  285. lava-flow: false
  286. water-flow: false
  287. water-bucket-flow: false
  288. fire-spread: false
  289. lava-fire-spread: false
  290. flint-fire: false
  291. lightning-fire-spread: true
  292. portal-creation: false
  293. tnt-explosion: false
  294. creeper-explosion: true
  295. creeper-playerdamage: true
  296. creeper-blockdamage: true
  297. # Monsters won't follow players
  298. # permission essentials.protect.entitytarget.bypass disables this
  299. entitytarget: false
  300. # Prevent the spawning of creatures
  301. spawn:
  302. chicken: false
  303. cow: false
  304. creeper: false
  305. ghast: false
  306. giant: false
  307. monster: false
  308. pig: false
  309. pig_zombie: false
  310. sheep: false
  311. skeleton: false
  312. slime: false
  313. spider: false
  314. squid: false
  315. zombie: false
  316. wolf: false
  317.  
  318. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  319. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  320. creeper:
  321. prevent.creeper-explosion: true
  322. max-height: -1
  323.  
  324. # Protect various blocks.
  325. protect:
  326. # Protect all signs
  327. signs: true
  328.  
  329. # Prevent users from destroying rails
  330. rails: true
  331.  
  332. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  333. # This makes it more difficult to circumvent protection, and should be enabled.
  334. # This only has an effect if "rails" or "signs" is also enabled.
  335. block-below: true
  336.  
  337. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  338. prevent-block-on-rails: false
  339.  
  340. # Disable various default physics and behaviors
  341. disable:
  342. # Should fall damage be disabled?
  343. fall: true
  344.  
  345. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  346. # They will be unable to attack users without that same permission node.
  347. pvp: true
  348.  
  349. # Should drowning damage be disabled?
  350. # (Split into two behaviors; generally, you want both set to the same value)
  351. drown: false
  352. suffocate: false
  353.  
  354. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  355. lavadmg: false
  356.  
  357. # Should arrow damage be disabled
  358. projectiles: false
  359.  
  360. # This will disable damage from touching cacti.
  361. contactdmg: false
  362.  
  363. # Burn, baby, burn! Should fire damage be disabled?
  364. firedmg: false
  365.  
  366. # Should the damage after hit by a lightning be disabled?
  367. lightning: false
  368.  
  369. # Should people with build: false in permissions be allowed to build
  370. # Set true to disable building for those people
  371. build: true
  372.  
  373. #Should we tell people they are not allowed to build
  374. warn-on-build-disallow: true
  375.  
  376.  
  377. #disable weather options
  378. weather:
  379. storm: true
  380. thunder: true
  381. lightning: false
  382.  
  383. ############################################################
  384. # +------------------------------------------------------+ #
  385. # | New Players | #
  386. # +------------------------------------------------------+ #
  387. ############################################################
  388.  
  389. newbies:
  390. # Should we announce to the server when someone logs in for the first time?
  391. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  392. # If not, set to ''
  393. #announce-format: ''
  394. announce-format: '&c&lDobre Doshyl, {PLAYER} v servera. Priqtni momenti.'
  395.  
  396. # When we spawn for the first time, which spawnpoint do we use?
  397. spawnpoint: newbies
  398.  
  399. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement