Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.29 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 hierarchy 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 apostrophe)
  12. # - Text with symbols is enclosed in single or double quotation marks
  13.  
  14. # If you have problems join the Essentials help support channel: http://tiny.cc/EssentialsChat
  15.  
  16. ############################################################
  17. # +------------------------------------------------------+ #
  18. # | Essentials (Global) | #
  19. # +------------------------------------------------------+ #
  20. ############################################################
  21.  
  22. # A color code between 0-9 or a-f. Set to 'none' to disable.
  23. ops-name-color: '4'
  24.  
  25. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  26. nickname-prefix: '~'
  27.  
  28. # The maximum length allowed in nicknames. The nickname prefix is included in this.
  29. max-nick-length: 15
  30.  
  31. # Disable this if you have any other plugin, that modifies the displayname of a user.
  32. change-displayname: true
  33.  
  34. # When this option is enabled, the (tab) player list will be updated with the displayname.
  35. # The value of change-displayname (above) has to be true.
  36. #change-playerlist: true
  37.  
  38. # When EssentialsChat.jar isn't used, force essentials to add the prefix and suffix from permission plugins to displayname.
  39. # This setting is ignored if EssentialsChat.jar is used, and defaults to 'true'.
  40. # The value of change-displayname (above) has to be true.
  41. # Do not edit this setting unless you know what you are doing!
  42. #add-prefix-suffix: false
  43.  
  44. # If the teleport destination is unsafe, should players be teleported to the nearest safe location?
  45. # If this is set to true, Essentials will attempt to teleport players close to the intended destination.
  46. # If this is set to false, attempted teleports to unsafe locations will be cancelled with a warning.
  47. teleport-safety: true
  48.  
  49. # The delay, in seconds, required between /home, /tp, etc.
  50. teleport-cooldown: 0
  51.  
  52. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  53. teleport-delay: 0
  54.  
  55. # The delay, in seconds, a player can't be attacked by other players after they have been teleported by a command.
  56. # This will also prevent the player attacking other players.
  57. teleport-invulnerability: 4
  58.  
  59. # The delay, in seconds, required between /heal or /feed attempts.
  60. heal-cooldown: 60
  61.  
  62. # What to prevent from /item and /give.
  63. # e.g item-spawn-blacklist: 10,11,46
  64. item-spawn-blacklist:
  65.  
  66. # Set this to true if you want permission based item spawn rules.
  67. # Note: The blacklist above will be ignored then.
  68. # Example permissions (these go in your permissions manager):
  69. # - essentials.itemspawn.item-all
  70. # - essentials.itemspawn.item-[itemname]
  71. # - essentials.itemspawn.item-[itemid]
  72. # - essentials.give.item-all
  73. # - essentials.give.item-[itemname]
  74. # - essentials.give.item-[itemid]
  75. # - essentials.unlimited.item-all
  76. # - essentials.unlimited.item-[itemname]
  77. # - essentials.unlimited.item-[itemid]
  78. # - essentials.unlimited.item-bucket # Unlimited liquid placing
  79. #
  80. # For more information, visit http://wiki.ess3.net/wiki/Command_Reference/ICheat#Item.2FGive
  81. permission-based-item-spawn: false
  82.  
  83. # Mob limit on the /spawnmob command per execution.
  84. spawnmob-limit: 10
  85.  
  86. # Shall we notify users when using /lightning?
  87. warn-on-smite: true
  88.  
  89. # The motd and rules are now configured in the files motd.txt and rules.txt.
  90.  
  91. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority.
  92. # Commands in this list, will tell Essentials to 'not give up' the command to other plugins.
  93. # In this state, which plugin 'wins' appears to be almost random.
  94. #
  95. # If you have two plugin with the same command and you wish to force Essentials to take over, you need an alias.
  96. # To force essentials to take 'god' alias 'god' to 'egod'.
  97. # See http://wiki.bukkit.org/Commands.yml#aliases for more information.
  98.  
  99. overridden-commands:
  100. # - god
  101. # - info
  102.  
  103. # Disabling commands here will prevent Essentials handling the command, this will not affect command conflicts.
  104. # You should not have to disable commands used in other plugins, they will automatically get priority.
  105. # See http://wiki.bukkit.org/Commands.yml#aliases to map commands to other plugins.
  106. disabled-commands:
  107. # - nick
  108. # - clear
  109.  
  110. # These commands will be shown to players with socialSpy enabled.
  111. # You can add commands from other plugins you may want to track or
  112. # remove commands that are used for something you dont want to spy on.
  113. # Set - '*' in order to listen on all possible commands.
  114. socialspy-commands:
  115. - msg
  116. - w
  117. - r
  118. - mail
  119. - m
  120. - t
  121. - whisper
  122. - emsg
  123. - tell
  124. - er
  125. - reply
  126. - ereply
  127. - email
  128. - action
  129. - describe
  130. - eme
  131. - eaction
  132. - edescribe
  133. - etell
  134. - ewhisper
  135. - pm
  136. # If you do not wish to use a permission system, you can define a list of 'player perms' below.
  137. # This list has no effect if you are using a supported permissions system.
  138. # If you are using an unsupported permissions system, simply delete this section.
  139. # Whitelist the commands and permissions you wish to give players by default (everything else is op only).
  140. # These are the permissions without the "essentials." part.
  141. player-commands:
  142. - afk
  143. - afk.auto
  144. - back
  145. - back.ondeath
  146. - balance
  147. - balance.others
  148. - balancetop
  149. - build
  150. - chat.color
  151. - chat.format
  152. - chat.shout
  153. - chat.question
  154. - clearinventory
  155. - compass
  156. - depth
  157. - delhome
  158. - getpos
  159. - geoip.show
  160. - help
  161. - helpop
  162. - home
  163. - home.others
  164. - ignore
  165. - info
  166. - itemdb
  167. - kit
  168. - kits.tools
  169. - list
  170. - mail
  171. - mail.send
  172. - me
  173. - motd
  174. - msg
  175. - msg.color
  176. - nick
  177. - near
  178. - pay
  179. - ping
  180. - protect
  181. - r
  182. - rules
  183. - realname
  184. - seen
  185. - sell
  186. - sethome
  187. - setxmpp
  188. - signs.create.protection
  189. - signs.create.trade
  190. - signs.break.protection
  191. - signs.break.trade
  192. - signs.use.balance
  193. - signs.use.buy
  194. - signs.use.disposal
  195. - signs.use.enchant
  196. - signs.use.free
  197. - signs.use.gamemode
  198. - signs.use.heal
  199. - signs.use.info
  200. - signs.use.kit
  201. - signs.use.mail
  202. - signs.use.protection
  203. - signs.use.repair
  204. - signs.use.sell
  205. - signs.use.time
  206. - signs.use.trade
  207. - signs.use.warp
  208. - signs.use.weather
  209. - spawn
  210. - suicide
  211. - time
  212. - tpa
  213. - tpaccept
  214. - tpahere
  215. - tpdeny
  216. - warp
  217. - warp.list
  218. - world
  219. - worth
  220. - xmpp
  221. # Note: All items MUST be followed by a quantity!
  222. # All kit names should be lower case, and will be treated as lower in permissions/costs.
  223. # Syntax: - itemID[:DataValue/Durability] Amount [Enchantment:Level].. [itemmeta:value]...
  224. # For Item Meta information visit http://wiki.ess3.net/wiki/Item_Meta
  225. # 'delay' refers to the cooldown between how often you can use each kit, measured in seconds.
  226. # Set delay to -1 for a one time kit.
  227. # For more information, visit http://wiki.ess3.net/wiki/Kits
  228. kits:
  229. Daily:
  230. delay: 86400
  231. items:
  232. - 267:0 1
  233. - 307:0 1
  234. - 308:0 1
  235. - 309:0 1
  236. - 306:0 1
  237. - 364:0 10
  238. - 46:0 8
  239. - 54:0 1
  240. - 17:0 16
  241. Specialist:
  242. delay: 172800
  243. items:
  244. - 310:0 1
  245. - 311:0 1
  246. - 312:0 1
  247. - 313:0 1
  248. - 276:0 1
  249. - 277:0 1
  250. - 278:0 1
  251. - 279:0 1
  252. - 293:0 1
  253. - 261:0 1
  254. - 373:69 1
  255. - 373:69 1
  256. - 373:69 1
  257. - 373:9 1
  258. - 373:9 1
  259. - 373:9 1
  260. - 373:2 1
  261. - 373:2 1
  262. - 373:2 1
  263. - 364:0 16
  264. - 368:0 10
  265. - 46:0 8
  266. - 49:0 10
  267. - 322:0 3
  268. - 262:0 20
  269. - 130:0 1
  270. Corporal:
  271. delay: 172800
  272. items:
  273. - 310:0 1 protection_environmental:1
  274. - 311:0 1 protection_environmental:1
  275. - 312:0 1 protection_environmental:1
  276. - 313:0 1 protection_environmental:1
  277. - 276:0 1 damage_all:1
  278. - 277:0 1 dig_speed:1
  279. - 278:0 1 dig_speed:1
  280. - 279:0 1 dig_speed:1
  281. - 293:0 1
  282. - 261:0 1 arrow_damage:1
  283. - 373:69 3
  284. - 373:9 3
  285. - 373:2 3
  286. - 373:33 3
  287. - 373:35 3
  288. - 364:0 20
  289. - 368:0 15
  290. - 46:0 12
  291. - 49:0 12
  292. - 262:0 32
  293. - 322:0 6
  294. - 322:1 2
  295. - 17:0 32
  296. - 18:0 64
  297. - 35:0 32
  298. - 89:0 16
  299. - 79:0 64
  300. Sergeant:
  301. delay: 172800
  302. items:
  303. - 310:0 1 durability:1 protection_environmental:1
  304. - 311:0 1 durability:1 protection_environmental:1
  305. - 312:0 1 durability:1 protection_environmental:1
  306. - 313:0 1 durability:1 protection_environmental:1
  307. - 276:0 1 durability:1 damage_all:2
  308. - 277:0 1 durability:1 dig_speed:2
  309. - 278:0 1 durability:1 loot_bonus_blocks:1 dig_speed:2
  310. - 279:0 1 durability:1 dig_speed:2
  311. - 293:0 1
  312. - 261:0 1 arrow_knockback:1 arrow_damage:2
  313. - 373:69 3
  314. - 373:9 3
  315. - 373:2 3
  316. - 373:33 3
  317. - 373:35 3
  318. - 364:0 25
  319. - 368:0 20
  320. - 46:0 15
  321. - 49:0 18
  322. - 262:0 48
  323. - 322:0 12
  324. - 322:1 4
  325. - 17:0 42
  326. - 130:0 1
  327. Officer:
  328. delay: 172800
  329. items:
  330. - 310:0 1 durability:2 protection_environmental:2
  331. - 311:0 1 protection_environmental:2 durability:2
  332. - 312:0 1 durability:2 protection_environmental:2
  333. - 313:0 1 protection_environmental:2 durability:2
  334. - 276:0 1 durability:2 damage_all:2 knockback:1 fire_aspect:1
  335. - 277:0 1 durability:2 dig_speed:2
  336. - 278:0 1 durability:2 loot_bonus_blocks:2 dig_speed:2
  337. - 279:0 1 durability:2 dig_speed:2
  338. - 293:0 1
  339. - 261:0 1 arrow_fire:1 arrow_knockback:2 arrow_damage:2
  340. - 373:69 5
  341. - 373:73 5
  342. - 373:33 5
  343. - 373:2 5
  344. - 373:67 5
  345. - 373:4 2
  346. - 373:72 2
  347. - 322:0 16
  348. - 262:0 64
  349. - 130:0 1
  350. - 364:0 35
  351. - 46:0 20
  352. - 49:0 25
  353. - 368:0 28
  354. - 322:1 6
  355. - 17:0 64
  356. Lieutenant:
  357. delay: 172800
  358. items:
  359. - 310:0 1 protection_environmental:3 durability:3 thorns:1
  360. - 311:0 1 durability:3 protection_environmental:3 thorns:1
  361. - 312:0 1 protection_environmental:3 durability:3 thorns:1
  362. - 313:0 1 durability:3 protection_environmental:3 protection_fall:2 thorns:1
  363. - 276:0 1 durability:3 damage_all:3 knockback:2 loot_bonus_mobs:1 fire_aspect:1
  364. - 277:0 1 durability:3 dig_speed:3
  365. - 278:0 1 durability:3 loot_bonus_blocks:2 dig_speed:3
  366. - 279:0 1 durability:3 dig_speed:3
  367. - 293:0 1
  368. - 261:0 1 arrow_fire:1 arrow_knockback:2 arrow_damage:3
  369. - 262:0 64
  370. - 130:0 1
  371. - 364:0 35
  372. - 46:0 25
  373. - 49:0 30
  374. - 368:0 35
  375. - 322:1 10
  376. - 322:0 20
  377. - 17:0 64
  378. - 373:73 7
  379. - 373:2 7
  380. - 373:35 7
  381. - 373:33 7
  382. - 373:72 4
  383. - 373:4 4
  384. - 373:66 2
  385. Captain:
  386. delay: 172800
  387. items:
  388. - 310:0 1 durability:3 protection_environmental:4 thorns:1
  389. - 311:0 1 protection_environmental:4 durability:3 thorns:1
  390. - 312:0 1 durability:3 protection_environmental:4 thorns:1
  391. - 313:0 1 protection_environmental:4 durability:3 protection_fall:2 thorns:1
  392. - 276:0 1 durability:3 damage_all:4 knockback:2 loot_bonus_mobs:2 fire_aspect:1
  393. - 277:0 1 durability:3 dig_speed:4
  394. - 278:0 1 durability:3 loot_bonus_blocks:2 dig_speed:4
  395. - 279:0 1 durability:3 dig_speed:4
  396. - 293:0 1
  397. - 261:0 1 arrow_fire:1 arrow_knockback:2 arrow_damage:4
  398. - 262:0 64
  399. - 130:0 1
  400. - 364:0 64
  401. - 46:0 30
  402. - 49:0 35
  403. - 368:0 40
  404. - 322:1 12
  405. - 322:0 23
  406. - 17:0 64
  407. - 373:73 7
  408. - 373:2 7
  409. - 373:35 7
  410. - 373:33 7
  411. - 373:4 4
  412. - 373:66 4
  413. - 373:72 4
  414. Major:
  415. delay: 172800
  416. items:
  417. - 310:0 1 protection_environmental:4 durability:3 thorns:2
  418. - 311:0 1 durability:3 protection_environmental:4 thorns:2
  419. - 312:0 1 protection_environmental:4 durability:3 thorns:2
  420. - 313:0 1 durability:3 protection_environmental:4 protection_fall:2 thorns:2
  421. - 276:0 1 durability:3 damage_all:4 knockback:2 loot_bonus_mobs:2 fire_aspect:2
  422. - 277:0 1 durability:3 dig_speed:4
  423. - 278:0 1 durability:3 loot_bonus_blocks:3 dig_speed:4
  424. - 279:0 1 durability:3 dig_speed:4
  425. - 293:0 1
  426. - 261:0 1 arrow_infinite:1 arrow_fire:1 arrow_knockback:2 arrow_damage:4
  427. - 262:0 64
  428. - 130:0 1
  429. - 364:0 64
  430. - 46:0 35
  431. - 49:0 35
  432. - 368:0 40
  433. - 322:1 12
  434. - 322:0 23
  435. - 17:0 64
  436. - 373:73 7
  437. - 373:2 7
  438. - 373:35 7
  439. - 373:33 7
  440. - 373:4 4
  441. - 373:66 4
  442. - 373:72 4
  443. General:
  444. delay: 172800
  445. items:
  446. - 310:0 1 durability:3 protection_environmental:4 thorns:3
  447. - 311:0 1 protection_environmental:4 durability:3 thorns:3
  448. - 312:0 1 durability:3 protection_environmental:4 thorns:3
  449. - 313:0 1 protection_environmental:4 durability:3 protection_fall:4 thorns:3
  450. - 276:0 1 durability:3 damage_all:4 knockback:2 loot_bonus_mobs:3 fire_aspect:2
  451. - 277:0 1 durability:3 dig_speed:5
  452. - 278:0 1 durability:3 loot_bonus_blocks:3 dig_speed:5
  453. - 279:0 1 durability:3 dig_speed:5
  454. - 293:0 1
  455. - 261:0 1 arrow_infinite:1 arrow_fire:1 arrow_knockback:2 arrow_damage:4
  456. - 262:0 64
  457. - 130:0 1
  458. - 364:0 64
  459. - 46:0 35
  460. - 49:0 35
  461. - 368:0 40
  462. - 322:1 15
  463. - 322:0 25
  464. - 17:0 64
  465. - 373:73 7
  466. - 373:2 7
  467. - 373:35 7
  468. - 373:33 7
  469. - 373:4 4
  470. - 373:66 4
  471. - 373:72 4
  472. firework:
  473. delay: 100000000000
  474. items:
  475. - 401 1 name:Angry_Creeper color:red fade:green type:creeper power:1
  476. - 401 1 name:StarryNight color:yellow,orange fade:blue type:star effect:trail,twinkle power:1
  477. - 401 2 name:SolarWind color:yellow,orange fade:red shape:large effect:twinkle color:yellow,orange fade:red shape:ball effect:trail color:red,purple fade:pink shape:star effect:trail power:1
  478. Coal:
  479. delay: 999999
  480. items:
  481. - 267:0 1 durability:1 damage_all:1
  482. - 307:0 1 durability:1 protection_environmental:1
  483. - 308:0 1 durability:1 protection_environmental:1
  484. - 309:0 1 durability:1 protection_environmental:1
  485. - 306:0 1 durability:1 protection_environmental:1
  486. - 364:0 64
  487. - 46:0 32
  488. - 130:0 1
  489. - 17:0 64
  490. - 263:0 64
  491. - 263:0 64
  492. - 263:0 64
  493. - 263:0 64
  494. - 263:0 64
  495. - 263:0 64
  496. - 263:0 64
  497. - 263:0 64
  498. Prismarine:
  499. delay: 9999999
  500. items:
  501. - 267:0 1 durability:1 damage_all:2
  502. - 307:0 1 protection_environmental:2 durability:1
  503. - 308:0 1 protection_environmental:2 durability:1
  504. - 309:0 1 protection_environmental:2 durability:1
  505. - 306:0 1 protection_environmental:2 durability:1
  506. - 364:0 64
  507. - 46:0 32
  508. - 130:0 1
  509. - 17:0 64
  510. - 168:0 64
  511. - 168:0 64
  512. - 168:1 64
  513. - 168:2 64
  514. - 409:0 64
  515. - 410:0 64
  516. Redstone:
  517. delay: 99999999
  518. items:
  519. - 267:0 1 durability:2 fire_aspect:1 damage_all:2
  520. - 307:0 1 durability:2 protection_environmental:2
  521. - 308:0 1 durability:2 protection_environmental:2
  522. - 309:0 1 durability:2 protection_environmental:2
  523. - 306:0 1 durability:2 protection_environmental:2
  524. - 364:0 64
  525. - 46:0 32
  526. - 130:0 1
  527. - 17:0 64
  528. - 76:0 64
  529. - 331:0 64
  530. - 331:0 64
  531. - 331:0 64
  532. - 152:0 64
  533. - 152:0 64
  534. - 152:0 64
  535. - 356:0 64
  536. - 73:0 64
  537. Iron:
  538. delay: 9999999
  539. items:
  540. - 267:0 1 durability:2 damage_all:3 knockback:1 fire_aspect:1
  541. - 307:0 1 protection_environmental:3 durability:2
  542. - 308:0 1 protection_environmental:3 durability:2
  543. - 309:0 1 protection_environmental:3 durability:2
  544. - 306:0 1 protection_environmental:3 durability:2
  545. - 364:0 64
  546. - 46:0 32
  547. - 130:0 1
  548. - 17:0 64
  549. - 42:0 64
  550. - 265:0 64
  551. - 265:0 64
  552. - 330:0 64
  553. - 101:0 64
  554. - 167:0 64
  555. Gold:
  556. delay: 999999
  557. items:
  558. - 267:0 1 durability:3 damage_all:3 knockback:2 fire_aspect:1
  559. - 307:0 1 protection_environmental:3 durability:3
  560. - 308:0 1 protection_environmental:3 durability:3
  561. - 309:0 1 protection_environmental:3 durability:3
  562. - 306:0 1 protection_environmental:3 durability:3
  563. - 364:0 64
  564. - 46:0 32
  565. - 130:0 1
  566. - 17:0 64
  567. - 41:0 64
  568. - 266:0 64
  569. - 322:0 64
  570. - 14:0 64
  571. - 396:0 64
  572. Emerald:
  573. delay: 999999
  574. items:
  575. - 267:0 1 durability:3 damage_all:4 knockback:2 fire_aspect:2
  576. - 307:0 1 protection_environmental:4 durability:3 thorns:1
  577. - 308:0 1 protection_environmental:4 durability:3 thorns:1
  578. - 309:0 1 protection_environmental:4 durability:3 thorns:1
  579. - 306:0 1 protection_environmental:4 durability:3 thorns:1
  580. - 364:0 64
  581. - 46:0 32
  582. - 130:0 1
  583. - 17:0 64
  584. - 129:0 64
  585. - 129:0 64
  586. - 133:0 64
  587. - 133:0 64
  588. - 388:0 64
  589. - 388:0 64
  590. Bedrock:
  591. delay: 999999
  592. items:
  593. - 267:0 1 durability:3 damage_all:5 knockback:2 fire_aspect:2
  594. - 307:0 1 durability:3 protection_environmental:4 thorns:2
  595. - 308:0 1 durability:3 protection_environmental:4 thorns:2
  596. - 309:0 1 durability:3 protection_environmental:4 thorns:2
  597. - 306:0 1 durability:3 protection_environmental:4 thorns:2
  598. - 364:0 64
  599. - 46:0 32
  600. - 130:0 1
  601. - 17:0 64
  602. - 7:0 64
  603. - 7:0 64
  604. - 7:0 64
  605. - 7:0 64
  606. - 355:0 1
  607. Diamond:
  608. delay: 9999999
  609. items:
  610. - 267:0 1 durability:3 damage_all:3 knockback:2 fire_aspect:1
  611. - 307:0 1 durability:3 protection_environmental:3
  612. - 308:0 1 durability:3 protection_environmental:3
  613. - 309:0 1 durability:3 protection_environmental:3
  614. - 306:0 1 durability:3 protection_environmental:3
  615. - 364:0 64
  616. - 46:0 32
  617. - 130:0 1
  618. - 17:0 64
  619. - 57:0 10
  620. - 264:0 64
  621. - 264:0 64
  622. - 419:0 1
  623. # Essentials Sign Control
  624. # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.
  625. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  626. # Essentials colored sign support will be enabled when any sign types are enabled.
  627. # Color is not an actual sign, it's for enabling using color codes on signs, when the correct permissions are given.
  628.  
  629. enabledSigns:
  630. - color
  631. - balance
  632. - buy
  633. - sell
  634. - trade
  635. - free
  636. - disposal
  637. - warp
  638. - kit
  639. - mail
  640. - enchant
  641. - gamemode
  642. - heal
  643. - info
  644. - spawnmob
  645. - repair
  646. - time
  647. - weather
  648.  
  649. # How many times per second can Essentials signs be interacted with per player.
  650. # Values should be between 1-20, 20 being virtually no lag protection.
  651. # Lower numbers will reduce the possibility of lag, but may annoy players.
  652. sign-use-per-second: 4
  653.  
  654. # Backup runs a batch/bash command while saving is disabled.
  655. backup:
  656. # Interval in minutes.
  657. interval: 30
  658. # Unless you add a valid backup command or script here, this feature will be useless.
  659. # Use 'save-all' to simply force regular world saving without backup.
  660. #command: 'rdiff-backup World1 backups/World1'
  661.  
  662. # Set this true to enable permission per warp.
  663. per-warp-permission: false
  664.  
  665. # Sort output of /list command by groups.
  666. # You can hide and merge the groups displayed in /list by defining the desired behaviour here.
  667. # Detailed instructions and examples can be found on the wiki: http://wiki.ess3.net/wiki/List
  668. list:
  669. # To merge groups, list the groups you wish to merge
  670. #Staff: owner admin moderator
  671. Admins: owner admin
  672. # To limit groups, set a max user limit
  673. #builder: 20
  674. # To hide groups, set the group as hidden
  675. #default: hidden
  676. # Uncomment the line below to simply list all players with no grouping
  677. #Players: '*'
  678.  
  679. # More output to the console.
  680. debug: false
  681.  
  682. # Set the locale for all messages.
  683. # If you don't set this, the default locale of the server will be used.
  684. # For example, to set language to English, set locale to en, to use the file "messages_en.properties".
  685. # Don't forget to remove the # in front of the line.
  686. # For more information, visit http://wiki.ess3.net/wiki/Locale
  687. #locale: en
  688.  
  689. # Turn off god mode when people leave the server.
  690. remove-god-on-disconnect: false
  691.  
  692. # Auto-AFK
  693. # After this timeout in seconds, the user will be set as AFK.
  694. # This feature requires the player to have essentials.afk.auto node.
  695. # Set to -1 for no timeout.
  696. auto-afk: 300
  697.  
  698. # Auto-AFK Kick
  699. # After this timeout in seconds, the user will be kicked from the server.
  700. # essentials.afk.kickexempt node overrides this feature.
  701. # Set to -1 for no timeout.
  702. auto-afk-kick: -1
  703.  
  704. # Set this to true, if you want to freeze the player, if the player is AFK.
  705. # Other players or monsters can't push the player out of AFK mode then.
  706. # This will also enable temporary god mode for the AFK player.
  707. # The player has to use the command /afk to leave the AFK mode.
  708. freeze-afk-players: false
  709.  
  710. # When the player is AFK, should he be able to pickup items?
  711. # Enable this, when you don't want people idling in mob traps.
  712. disable-item-pickup-while-afk: false
  713.  
  714. # This setting controls if a player is marked as active on interaction.
  715. # When this setting is false, the player would need to manually un-AFK using the /afk command.
  716. cancel-afk-on-interact: true
  717.  
  718. # Should we automatically remove afk status when a player moves?
  719. # Player will be removed from AFK on chat/command regardless of this setting.
  720. # Disable this to reduce server lag.
  721. cancel-afk-on-move: true
  722.  
  723. # You can disable the death messages of Minecraft here.
  724. death-messages: true
  725.  
  726. # Should players with permissions be able to join and part silently?
  727. # You can control this with essentials.silentjoin and essentials.silentquit permissions if it is enabled.
  728. # In addition, people with essentials.silentjoin.vanish will be vanished on join.
  729. allow-silent-join-quit: false
  730.  
  731. # You can set a custom join message here, set to "none" to disable.
  732. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  733. custom-join-message: "none"
  734.  
  735. # You can set a custom quit message here, set to "none" to disable.
  736. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  737. custom-quit-message: "none"
  738.  
  739. # Add worlds to this list, if you want to automatically disable god mode there.
  740. no-god-in-worlds:
  741. # - world_nether
  742.  
  743. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands.
  744. # This applies to /world, /back, /tp[a|o][here|all], but not warps.
  745. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  746. # This does not affect the /home command, there is a separate toggle below for this.
  747. world-teleport-permissions: false
  748.  
  749. # The number of items given if the quantity parameter is left out in /item or /give.
  750. # If this number is below 1, the maximum stack size size is given. If over-sized stacks.
  751. # are not enabled, any number higher than the maximum stack size results in more than one stack.
  752. default-stack-size: -1
  753.  
  754. # Over-sized stacks are stacks that ignore the normal max stack size.
  755. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  756. # How many items should be in an over-sized stack?
  757. oversized-stacksize: 64
  758.  
  759. # Allow repair of enchanted weapons and armor.
  760. # If you set this to false, you can still allow it for certain players using the permission.
  761. # essentials.repair.enchanted
  762. repair-enchanted: true
  763.  
  764. # Allow 'unsafe' enchantments in kits and item spawning.
  765. # Warning: Mixing and overleveling some enchantments can cause issues with clients, servers and plugins.
  766. unsafe-enchantments: false
  767.  
  768. #Do you want Essentials to keep track of previous location for /back in the teleport listener?
  769. #If you set this to true any plugin that uses teleport will have the previous location registered.
  770. register-back-in-listener: false
  771.  
  772. #Delay to wait before people can cause attack damage after logging in.
  773. login-attack-delay: 5
  774.  
  775. #Set the max fly speed, values range from 0.1 to 1.0
  776. max-fly-speed: 0.8
  777.  
  778. #Set the max walk speed, values range from 0.1 to 1.0
  779. max-walk-speed: 0.8
  780.  
  781. #Set the maximum amount of mail that can be sent within a minute.
  782. mails-per-minute: 1000
  783.  
  784. # Set the maximum time /tempban can be used for in seconds.
  785. # Set to -1 to disable, and essentials.tempban.unlimited can be used to override.
  786. max-tempban-time: -1
  787.  
  788. ############################################################
  789. # +------------------------------------------------------+ #
  790. # | EssentialsHome | #
  791. # +------------------------------------------------------+ #
  792. ############################################################
  793.  
  794. # Allows people to set their bed at daytime.
  795. update-bed-at-daytime: true
  796.  
  797. # Set to true to enable per-world permissions for using homes to teleport between worlds.
  798. # This applies to the /home only.
  799. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  800. world-home-permissions: false
  801.  
  802. # Allow players to have multiple homes.
  803. # Players need essentials.sethome.multiple before they can have more than 1 home.
  804. # You can set the default number of multiple homes using the 'default' rank below.
  805. # To remove the home limit entirely, give people 'essentials.sethome.multiple.unlimited'.
  806. # To grant different home amounts to different people, you need to define a 'home-rank' below.
  807. # Create the 'home-rank' below, and give the matching permission: essentials.sethome.multiple.<home-rank>
  808. # For more information, visit http://wiki.ess3.net/wiki/Multihome
  809. sethome-multiple:
  810. default: 3
  811. vip: 5
  812. staff: 10
  813.  
  814. # In this example someone with 'essentials.sethome.multiple' and 'essentials.sethome.multiple.vip' will have 5 homes.
  815. # Remember, they MUST have both permission nodes in order to be able to set multiple homes.
  816.  
  817. # Set the timeout, in seconds for players to accept a tpa before the request is cancelled.
  818. # Set to 0 for no timeout.
  819. tpa-accept-cancellation: 120
  820.  
  821. ############################################################
  822. # +------------------------------------------------------+ #
  823. # | EssentialsEco | #
  824. # +------------------------------------------------------+ #
  825. ############################################################
  826.  
  827. # For more information, visit http://wiki.ess3.net/wiki/Essentials_Economy
  828.  
  829. # Defines the balance with which new players begin. Defaults to 0.
  830. starting-balance: 0
  831.  
  832. # worth-# defines the value of an item when it is sold to the server via /sell.
  833. # These are now defined in worth.yml
  834.  
  835. # Defines the cost to use the given commands PER USE.
  836. # Some commands like /repair have sub-costs, check the wiki for more information.
  837. command-costs:
  838. # /example costs $1000 PER USE
  839. #example: 1000
  840. # /kit tools costs $1500 PER USE
  841. #kit-tools: 1500
  842.  
  843. # Set this to a currency symbol you want to use.
  844. # Remember, if you want to use special characters in this document,
  845. # such as accented letters, you MUST save the file as UTF-8, not ANSI.
  846. currency-symbol: '$'
  847.  
  848. # Set the maximum amount of money a player can have.
  849. # The amount is always limited to 10 trillion because of the limitations of a java double.
  850. max-money: 10000000000000
  851.  
  852. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  853. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  854. min-money: -10000
  855.  
  856. # Enable this to log all interactions with trade/buy/sell signs and sell command.
  857. economy-log-enabled: false
  858.  
  859. ############################################################
  860. # +------------------------------------------------------+ #
  861. # | EssentialsHelp | #
  862. # +------------------------------------------------------+ #
  863. ############################################################
  864.  
  865. # Show other plugins commands in help.
  866. non-ess-in-help: true
  867.  
  868. # Hide plugins which do not give a permission.
  869. # You can override a true value here for a single plugin by adding a permission to a user/group.
  870. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
  871. # You can use negative permissions to remove access to just a single plugins help if the following is enabled.
  872. hide-permissionless-help: true
  873.  
  874. ############################################################
  875. # +------------------------------------------------------+ #
  876. # | EssentialsChat | #
  877. # +------------------------------------------------------+ #
  878. ############################################################
  879.  
  880. # This section requires the EssentialsChat.jar to work.
  881.  
  882. chat:
  883.  
  884. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  885. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  886. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  887. # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  888. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  889. radius: 0
  890.  
  891. # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  892. # Or you can give a group specific chat format, to give some extra variation.
  893. # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting
  894.  
  895. format: '<{DISPLAYNAME}> {MESSAGE}'
  896. #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'
  897.  
  898. group-formats:
  899. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
  900. # Admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'
  901.  
  902. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  903.  
  904. ############################################################
  905. # +------------------------------------------------------+ #
  906. # | EssentialsProtect | #
  907. # +------------------------------------------------------+ #
  908. ############################################################
  909.  
  910. # This section requires the EssentialsProtect.jar to work.
  911.  
  912. protect:
  913.  
  914. # General physics/behavior modifications.
  915. prevent:
  916. lava-flow: false
  917. water-flow: false
  918. water-bucket-flow: false
  919. fire-spread: true
  920. lava-fire-spread: true
  921. flint-fire: false
  922. lightning-fire-spread: true
  923. portal-creation: false
  924. tnt-explosion: false
  925. tnt-playerdamage: false
  926. tnt-minecart-explosion: false
  927. tnt-minecart-playerdamage: false
  928. fireball-explosion: false
  929. fireball-fire: false
  930. fireball-playerdamage: false
  931. witherskull-explosion: false
  932. witherskull-playerdamage: false
  933. wither-spawnexplosion: false
  934. wither-blockreplace: false
  935. creeper-explosion: false
  936. creeper-playerdamage: false
  937. creeper-blockdamage: false
  938. enderdragon-blockdamage: true
  939. enderman-pickup: false
  940. villager-death: false
  941. # Monsters won't follow players.
  942. # permission essentials.protect.entitytarget.bypass disables this.
  943. entitytarget: false
  944. # Prevent the spawning of creatures.
  945. spawn:
  946. creeper: false
  947. skeleton: false
  948. spider: false
  949. giant: false
  950. zombie: false
  951. slime: false
  952. ghast: false
  953. pig_zombie: false
  954. enderman: false
  955. cave_spider: false
  956. silverfish: false
  957. blaze: false
  958. magma_cube: false
  959. ender_dragon: false
  960. pig: false
  961. sheep: false
  962. cow: false
  963. chicken: false
  964. squid: false
  965. wolf: false
  966. mushroom_cow: false
  967. snowman: false
  968. ocelot: false
  969. iron_golem: false
  970. villager: false
  971. wither: false
  972. bat: false
  973. witch: false
  974. horse: false
  975.  
  976. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  977. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  978. creeper:
  979. max-height: -1
  980.  
  981. # Disable various default physics and behaviors.
  982. disable:
  983. # Should fall damage be disabled?
  984. fall: false
  985.  
  986. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  987. # They will be unable to attack users without that same permission node.
  988. pvp: false
  989.  
  990. # Should drowning damage be disabled?
  991. # (Split into two behaviors; generally, you want both set to the same value.)
  992. drown: false
  993. suffocate: false
  994.  
  995. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  996. lavadmg: false
  997.  
  998. # Should arrow damage be disabled?
  999. projectiles: false
  1000.  
  1001. # This will disable damage from touching cacti.
  1002. contactdmg: false
  1003.  
  1004. # Burn, baby, burn! Should fire damage be disabled?
  1005. firedmg: false
  1006.  
  1007. # Should the damage after hit by a lightning be disabled?
  1008. lightning: false
  1009.  
  1010. # Should Wither damage be disabled?
  1011. wither: false
  1012.  
  1013. # Disable weather options?
  1014. weather:
  1015. storm: false
  1016. thunder: false
  1017. lightning: false
  1018.  
  1019. ############################################################
  1020. # +------------------------------------------------------+ #
  1021. # | EssentialsAntiBuild | #
  1022. # +------------------------------------------------------+ #
  1023. ############################################################
  1024.  
  1025. # This section requires the EssentialsAntiBuild.jar to work.
  1026.  
  1027. # Disable various default physics and behaviors
  1028. # For more information, visit http://wiki.ess3.net/wiki/AntiBuild
  1029.  
  1030. # Should people with build: false in permissions be allowed to build?
  1031. # Set true to disable building for those people.
  1032. # Setting to false means EssentialsAntiBuild will never prevent you from building.
  1033. build: true
  1034.  
  1035. # Should people with build: false in permissions be allowed to use items?
  1036. # Set true to disable using for those people.
  1037. # Setting to false means EssentialsAntiBuild will never prevent you from using items.
  1038. use: true
  1039.  
  1040. # Should we tell people they are not allowed to build?
  1041. warn-on-build-disallow: true
  1042.  
  1043. # For which block types would you like to be alerted?
  1044. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  1045. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  1046. alert:
  1047. on-placement: 10,11,46,327
  1048. on-use: 327
  1049. on-break:
  1050.  
  1051. blacklist:
  1052.  
  1053. # Which blocks should people be prevented from placing?
  1054. placement: 10,11,46,327
  1055.  
  1056. # Which items should people be prevented from using?
  1057. usage: 327
  1058.  
  1059. # Which blocks should people be prevented from breaking?
  1060. break:
  1061.  
  1062. # Which blocks should not be pushed by pistons?
  1063. piston:
  1064.  
  1065. # Which blocks should not be dispensed by dispensers
  1066. dispenser:
  1067.  
  1068. ############################################################
  1069. # +------------------------------------------------------+ #
  1070. # | Essentials Spawn / New Players | #
  1071. # +------------------------------------------------------+ #
  1072. ############################################################
  1073.  
  1074. # This section requires essentialsspawn.jar to work.
  1075.  
  1076. newbies:
  1077. # Should we announce to the server when someone logs in for the first time?
  1078. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  1079. # If not, set to ''
  1080. #announce-format: ''
  1081. announce-format: '&5Welcome &3{DISPLAYNAME}&5 to the &3[&2Winch&6Ville&3]&5 Server!'
  1082.  
  1083. # When we spawn for the first time, which spawnpoint do we use?
  1084. # Set to "none" if you want to use the spawn point of the world.
  1085. spawnpoint: newbies
  1086.  
  1087. # Do we want to give users anything on first join? Set to '' to disable
  1088. # This kit will be given regardless of cost and permissions, and will not trigger the kit delay.
  1089. #kit: ''
  1090. kit: tools
  1091.  
  1092. # Set this to lowest, if you want Multiverse to handle the respawning.
  1093. # Set this to high, if you want EssentialsSpawn to handle the respawning.
  1094. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning.
  1095. respawn-listener-priority: high
  1096.  
  1097. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  1098. respawn-at-home: false
  1099.  
  1100. # End of file <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement