Guest User

Untitled

a guest
Aug 1st, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.17 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: '9'
  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: 150
  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: 4
  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.  
  137. # If you do not wish to use a permission system, you can define a list of 'player perms' below.
  138. # This list has no effect if you are using a supported permissions system.
  139. # If you are using an unsupported permissions system, simply delete this section.
  140. # Whitelist the commands and permissions you wish to give players by default (everything else is op only).
  141. # These are the permissions without the "essentials." part.
  142. player-commands:
  143. - afk
  144. - afk.auto
  145. - back
  146. - back.ondeath
  147. - balance
  148. - balance.others
  149. - balancetop
  150. - build
  151. - chat.color
  152. - chat.format
  153. - chat.shout
  154. - chat.question
  155. - clearinventory
  156. - compass
  157. - depth
  158. - delhome
  159. - getpos
  160. - geoip.show
  161. - help
  162. - helpop
  163. - home
  164. - home.others
  165. - ignore
  166. - info
  167. - itemdb
  168. - kit
  169. - kits.tools
  170. - list
  171. - mail
  172. - mail.send
  173. - me
  174. - motd
  175. - msg
  176. - msg.color
  177. - nick
  178. - near
  179. - pay
  180. - ping
  181. - protect
  182. - r
  183. - rules
  184. - realname
  185. - seen
  186. - sell
  187. - sethome
  188. - setxmpp
  189. - signs.create.protection
  190. - signs.create.trade
  191. - signs.break.protection
  192. - signs.break.trade
  193. - signs.use.balance
  194. - signs.use.buy
  195. - signs.use.disposal
  196. - signs.use.enchant
  197. - signs.use.free
  198. - signs.use.gamemode
  199. - signs.use.heal
  200. - signs.use.info
  201. - signs.use.kit
  202. - signs.use.mail
  203. - signs.use.protection
  204. - signs.use.repair
  205. - signs.use.sell
  206. - signs.use.time
  207. - signs.use.trade
  208. - signs.use.warp
  209. - signs.use.weather
  210. - spawn
  211. - suicide
  212. - time
  213. - tpa
  214. - tpaccept
  215. - tpahere
  216. - tpdeny
  217. - warp
  218. - warp.list
  219. - world
  220. - worth
  221. - xmpp
  222.  
  223. # Note: All items MUST be followed by a quantity!
  224. # All kit names should be lower case, and will be treated as lower in permissions/costs.
  225. # Syntax: - itemID[:DataValue/Durability] Amount [Enchantment:Level].. [itemmeta:value]...
  226. # For Item Meta information visit http://wiki.ess3.net/wiki/Item_Meta
  227. # 'delay' refers to the cooldown between how often you can use each kit, measured in seconds.
  228. # Set delay to -1 for a one time kit.
  229. # For more information, visit http://wiki.ess3.net/wiki/Kits
  230. kits:
  231. PvP:
  232. delay: 1800
  233. items:
  234. - 310:0 1 protection_environmental:2 name:&4PvP_Helmet
  235. - 311:0 1 protection_environmental:2 name:&4PvP_Chest
  236. - 312:0 1 protection_environmental:2 name:&4PvP_Pants
  237. - 313:0 1 protection_environmental:2 name:&4PvP_Boots
  238. - 276:0 1 damage_all:2 name:&4PvP_Blade
  239. - 322:1 1
  240. Starter:
  241. delay: 86400
  242. items:
  243. - 310:0 1 durability:2 protection_environmental:3 name:&eStarter_Helmet
  244. - 311:0 1 durability:2 protection_environmental:3 name:&eStarter_Chest
  245. - 312:0 1 durability:2 protection_environmental:3 name:&eStarter_Pants
  246. - 313:0 1 durability:2 protection_environmental:3 name:&eStarter_Boots
  247. - 276:0 1 damage_all:3 name:&eStarter_Blade
  248. - 278:0 1 durability:2 dig_speed:2 name:&eStarter_Pick
  249. - 277:0 1 durability:2 dig_speed:2 name:&eStarter_Shovel
  250. - 293:0 1 durability:2 dig_speed:2 name:&eStarter_Hoe
  251. - 322:1 4
  252. - 46:0 64
  253. - 49:0 64
  254. - 7:0 16
  255. - 57:0 16
  256. - 41:0 16
  257. - 42:0 16
  258. Food:
  259. delay: 6000
  260. items:
  261. - 364:0 64
  262. Wood:
  263. delay: 6000
  264. items:
  265. - 17:0 64
  266. torches:
  267. delay: 6000
  268. items:
  269. - 50:0 64
  270. Vote:
  271. delay: 6000
  272. items:
  273. - 49:0 64
  274. - 7:0 16
  275. - 17:0 16
  276. - 264:0 16
  277. - 265:0 16
  278. - 266:0 16
  279. - 388:0 16
  280. - 322:1 3
  281. Zombie:
  282. delay: 86400
  283. items:
  284. - 310:0 1 durability:3 protection_environmental:5 name:&2Zombie_Helmet
  285. - 311:0 1 durability:3 protection_environmental:5 name:&2Zombie_Chestplate
  286. - 312:0 1 durability:3 protection_environmental:5 name:&2Zombie_Pants
  287. - 313:0 1 durability:3 protection_environmental:5 name:&2Zombie_Boots
  288. - 322:1 2
  289. - 261:0 1 durability:3 arrow_infinite:1 arrow_fire:5 arrow_damage:5 name:&2Zombie_Bow
  290. - 276:0 1 fire_aspect:3 damage_all:5 name:&2Zombie_Blade
  291. - 279:0 1 durability:3 dig_speed:5 name:&2Zombie_Axe
  292. - 278:0 1 durability:3 loot_bonus_blocks:5 dig_speed:5 name:&2Zombie_Pickaxe
  293. - 383:50 5
  294. - 49:0 64
  295. - 46:0 16
  296. - 262:0 64
  297. - 277:0 1 durability:3 loot_bonus_blocks:5 dig_speed:5 name:&2Zombie_Shovel
  298. - 7:0 6
  299. Skeleton:
  300. delay: 86400
  301. items:
  302. - 310:0 1 durability:3 protection_environmental:6 name:&7Skeleton_Helmet
  303. - 311:0 1 durability:3 protection_environmental:6 name:&7Skeleton_Chestplate
  304. - 312:0 1 durability:3 protection_environmental:6 name:&7Skeleton_Pants
  305. - 313:0 1 durability:3 protection_environmental:6 name:&7Skeleton_Boots
  306. - 261:0 1 durability:3 arrow_infinite:1 arrow_fire:6 arrow_damage:6 name:&7Skeleton_Bow
  307. - 278:0 1 durability:3 loot_bonus_blocks:6 dig_speed:6 name:&7Skeleton_Pick
  308. - 279:0 1 durability:3 dig_speed:6 name:&7Skeleton_Axe
  309. - 277:0 1 durability:3 loot_bonus_blocks:6 dig_speed:6 name:&7Skeleton_Spade
  310. - 276:0 1 loot_bonus_mobs:6 fire_aspect:6 damage_all:6 name:&7Skelton_Blade
  311. - 322:1 5
  312. - 383:50 6
  313. - 49:0 64
  314. - 46:0 32
  315. - 49:0 32
  316. - 17:0 32
  317. - 7:0 12
  318. - 262:0 64
  319. PigZombie:
  320. delay: 86400
  321. items:
  322. - 310:0 1 protection_environmental:7 durability:3 name:&dPigZombie_Helmet
  323. - 311:0 1 protection_environmental:7 durability:3 name:&dPigZombie_Chestplate
  324. - 312:0 1 protection_environmental:7 durability:3 name:&dPigZombie_Pants
  325. - 313:0 1 protection_environmental:7 durability:3 name:&dPigZombie_Boots
  326. - 276:0 1 loot_bonus_mobs:7 fire_aspect:7 damage_all:7 name:&dPigZombie_Blade
  327. - 279:0 1 durability:3 dig_speed:7 name:&dPigZombie_Axe
  328. - 277:0 1 durability:3 loot_bonus_blocks:7 dig_speed:7 name:&dPigZombie_Spade
  329. - 278:0 1 durability:3 loot_bonus_blocks:7 dig_speed:7 name:&dPigZombie_Pickaxe
  330. - 261:0 1 durability:3 arrow_infinite:1 arrow_fire:7 arrow_damage:7 name:&dPigZombie_Bow
  331. - 262:0 64
  332. - 7:0 18
  333. - 322:1 10
  334. - 46:0 64
  335. - 384:0 64
  336. - 383:50 10
  337. - 17:0 64
  338. - 49:0 64
  339. - 49:0 32
  340. Enderman:
  341. delay: 86400
  342. items:
  343. - 310:0 1 protection_environmental:8 durability:3 name:&0Enderman_Helmet
  344. - 311:0 1 protection_environmental:8 durability:3 name:&0Enderman_Chestplate
  345. - 312:0 1 protection_environmental:8 durability:3 name:&0Enderman_Pants
  346. - 313:0 1 protection_environmental:8 durability:3 name:&0Enderman_Boots
  347. - 276:0 1 loot_bonus_mobs:8 fire_aspect:8 damage_all:8 name:&0Enderman_Blade
  348. - 279:0 1 durability:3 dig_speed:8 name:&0Enderman_Axe
  349. - 277:0 1 durability:3 loot_bonus_blocks:8 dig_speed:8 name:&0Enderman_Shovel
  350. - 278:0 1 durability:3 loot_bonus_blocks:8 dig_speed:8 name:&0Enderman_Pickaxe
  351. - 261:0 1 durability:3 arrow_infinite:1 arrow_fire:8 arrow_damage:8 name:&0Enderman_Bow
  352. - 46:0 64
  353. - 46:0 32
  354. - 322:1 15
  355. - 17:0 64
  356. - 17:0 32
  357. - 49:0 64
  358. - 262:0 64
  359. - 7:0 24
  360. - 384:0 64
  361. - 384:0 32
  362. - 49:0 64
  363. - 383:50 16
  364. Blaze:
  365. delay: 86400
  366. items:
  367. - 310:0 1 durability:3 protection_environmental:10 name:&6Blaze_Helmet
  368. - 311:0 1 durability:3 protection_environmental:10 name:&6Blaze_Chestplate
  369. - 312:0 1 durability:3 protection_environmental:10 name:&6Blaze_Pants
  370. - 313:0 1 durability:3 protection_environmental:10 name:&6Blaze_Boots
  371. - 276:0 1 loot_bonus_mobs:10 fire_aspect:10 damage_all:10 name:&6Blaze_Blade
  372. - 278:0 1 durability:3 loot_bonus_blocks:10 dig_speed:10 name:&6Blaze_Pickaxe
  373. - 279:0 1 durability:3 dig_speed:10 name:&6Blaze_Axe
  374. - 277:0 1 durability:3 loot_bonus_blocks:10 dig_speed:10 name:&6Blaze_Spade
  375. - 261:0 1 durability:3 arrow_infinite:1 arrow_fire:10 arrow_damage:10 name:&6Blaze_Bow
  376. - 46:0 64
  377. - 46:0 64
  378. - 322:1 20
  379. - 17:0 64
  380. - 17:0 64
  381. - 384:0 64
  382. - 384:0 64
  383. - 383:50 22
  384. - 7:0 32
  385. - 49:0 64
  386. - 49:0 64
  387. - 49:0 32
  388. - 262:0 64
  389. Creeper:
  390. delay: 86400
  391. items:
  392. - 310:0 1 protection_environmental:11 durability:3 name:&aCreeper_Helmet
  393. - 311:0 1 protection_environmental:11 durability:3 name:&aCreeper_Chestplate
  394. - 312:0 1 protection_environmental:11 durability:3 name:&aCreeper_Pants
  395. - 313:0 1 protection_environmental:11 durability:3 name:&aCreeper_Boots
  396. - 276:0 1 loot_bonus_mobs:11 fire_aspect:11 damage_all:11 name:&aCreeper_Blade
  397. - 278:0 1 durability:3 loot_bonus_blocks:11 dig_speed:11 name:&aCreeper_Pickaxe
  398. - 279:0 1 durability:3 dig_speed:11 name:&aCreeper_Axe
  399. - 277:0 1 durability:3 loot_bonus_blocks:11 dig_speed:11 name:&aCreeper_Spade
  400. - 261:0 1 durability:3 arrow_infinite:1 arrow_fire:11 arrow_damage:11 name:&aCreeper_Bow
  401. - 46:0 64
  402. - 46:0 64
  403. - 46:0 32
  404. - 322:1 25
  405. - 17:0 64
  406. - 7:0 38
  407. - 17:0 64
  408. - 17:0 32
  409. - 49:0 64
  410. - 49:0 64
  411. - 49:0 64
  412. - 384:0 64
  413. - 384:0 64
  414. - 384:0 32
  415. - 383:50 28
  416. - 262:0 64
  417. Wither:
  418. delay: 86400
  419. items:
  420. - 310:0 1 protection_environmental:13 durability:3 name:&8Wither_Helmet
  421. - 311:0 1 protection_environmental:13 durability:3 name:&8Wither_Chestplate
  422. - 312:0 1 protection_environmental:13 durability:3 name:&8Wither_Pants
  423. - 313:0 1 protection_environmental:13 durability:3 name:&8Wither_Boots
  424. - 276:0 1 loot_bonus_mobs:13 fire_aspect:13 damage_all:13 name:&8Wither_Blade
  425. - 278:0 1 durability:3 loot_bonus_blocks:13 dig_speed:13 name:&8Wither_Pickaxe
  426. - 277:0 1 durability:3 loot_bonus_blocks:13 dig_speed:13 name:&8Wither_Spade
  427. - 279:0 1 durability:3 dig_speed:13 name:&8Wither_Axe
  428. - 261:0 1 durability:3 arrow_infinite:1 arrow_fire:13 arrow_damage:13 name:&8Wither_Bow
  429. - 46:0 64
  430. - 46:0 64
  431. - 46:0 64
  432. - 49:0 64
  433. - 49:0 64
  434. - 49:0 64
  435. - 49:0 32
  436. - 7:0 44
  437. - 17:0 64
  438. - 17:0 64
  439. - 17:0 64
  440. - 383:50 34
  441. - 384:0 64
  442. - 384:0 64
  443. - 384:0 64
  444. - 322:1 30
  445. - 262:0 64
  446. Youtube:
  447. delay: 86400
  448. items:
  449. - 310:0 1 durability:3 protection_environmental:4 name:&4You&fTube_&4Helmet
  450. - 311:0 1 durability:3 protection_environmental:4 name:&4You&fTube_&4Chestplate
  451. - 312:0 1 durability:3 protection_environmental:4 name:&4You&fTube_&4Leggings
  452. - 313:0 1 durability:3 protection_environmental:4 name:&4You&fTube_&4Boots
  453. - 276:0 1 loot_bonus_mobs:4 fire_aspect:4 damage_all:4 name:&4You&fTube_&4Sword
  454. - 278:0 1 durability:3 loot_bonus_blocks:4 dig_speed:4 name:&4You&fTube_&4PickAxe
  455. - 279:0 1 durability:3 dig_speed:4 name:&4You&fTube_&4Axe
  456. - 277:0 1 durability:3 loot_bonus_blocks:4 dig_speed:4 name:&4You&fTube_&4Shovel
  457. - 261:0 1 arrow_infinite:1 arrow_fire:4 arrow_damage:4
  458. - 322:1 5
  459. - 46:0 64
  460. - 49:0 64
  461. - 7:0 32
  462. - 383:50 5
  463. - 384:0 64
  464. - 262:0 1
  465. - 17:0 64
  466. Withervote:
  467. delay: 6000
  468. items:
  469. - 276:0 1 loot_bonus_mobs:13 fire_aspect:13 damage_all:13 name:&8Wither_Blade
  470. Protten:
  471. delay: 6000
  472. items:
  473. - 310:0 1 protection_environmental:10
  474. - 311:0 1 protection_environmental:10
  475. - 312:0 1 protection_environmental:10
  476. - 313:0 1 protection_environmental:10
  477. BloodSword:
  478. delay: 6000
  479. items:
  480. - 276:0 1 loot_bonus_mobs:14 fire_aspect:14 damage_all:14 name:&4&lBlood_Sword
  481. '15':
  482. delay: 6000
  483. items:
  484. - 339:0 1 damage_all:5 name:&b&l$15_Buycraft_Voucher
  485. archer:
  486. delay: 6000
  487. items:
  488. - 261:0 1 durability:3 arrow_knockback:4 name:&4Archer_Bow
  489. - 262:0 64
  490.  
  491. # Essentials Sign Control
  492. # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.
  493. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  494. # Essentials colored sign support will be enabled when any sign types are enabled.
  495. # Color is not an actual sign, it's for enabling using color codes on signs, when the correct permissions are given.
  496.  
  497. enabledSigns:
  498. - color
  499. - balance
  500. - buy
  501. - sell
  502. - trade
  503. - free
  504. - disposal
  505. - warp
  506. - kit
  507. - mail
  508. - enchant
  509. - gamemode
  510. - heal
  511. - info
  512. - spawnmob
  513. - repair
  514. - time
  515. - weather
  516.  
  517. # How many times per second can Essentials signs be interacted with per player.
  518. # Values should be between 1-20, 20 being virtually no lag protection.
  519. # Lower numbers will reduce the possibility of lag, but may annoy players.
  520. sign-use-per-second: 4
  521.  
  522. # Backup runs a batch/bash command while saving is disabled.
  523. backup:
  524. # Interval in minutes.
  525. interval: 30
  526. # Unless you add a valid backup command or script here, this feature will be useless.
  527. # Use 'save-all' to simply force regular world saving without backup.
  528. #command: 'rdiff-backup World1 backups/World1'
  529.  
  530. # Set this true to enable permission per warp.
  531. per-warp-permission: false
  532.  
  533. # Sort output of /list command by groups.
  534. # You can hide and merge the groups displayed in /list by defining the desired behaviour here.
  535. # Detailed instructions and examples can be found on the wiki: http://wiki.ess3.net/wiki/List
  536. list:
  537. # To merge groups, list the groups you wish to merge
  538. #Staff: owner admin moderator
  539. Admins: owner admin
  540. # To limit groups, set a max user limit
  541. #builder: 20
  542. # To hide groups, set the group as hidden
  543. #default: hidden
  544. # Uncomment the line below to simply list all players with no grouping
  545. #Players: '*'
  546.  
  547. # More output to the console.
  548. debug: false
  549.  
  550. # Set the locale for all messages.
  551. # If you don't set this, the default locale of the server will be used.
  552. # For example, to set language to English, set locale to en, to use the file "messages_en.properties".
  553. # Don't forget to remove the # in front of the line.
  554. # For more information, visit http://wiki.ess3.net/wiki/Locale
  555. #locale: en
  556.  
  557. # Turn off god mode when people leave the server.
  558. remove-god-on-disconnect: false
  559.  
  560. # Auto-AFK
  561. # After this timeout in seconds, the user will be set as AFK.
  562. # This feature requires the player to have essentials.afk.auto node.
  563. # Set to -1 for no timeout.
  564. auto-afk: 300
  565.  
  566. # Auto-AFK Kick
  567. # After this timeout in seconds, the user will be kicked from the server.
  568. # essentials.afk.kickexempt node overrides this feature.
  569. # Set to -1 for no timeout.
  570. auto-afk-kick: -1
  571.  
  572. # Set this to true, if you want to freeze the player, if the player is AFK.
  573. # Other players or monsters can't push the player out of AFK mode then.
  574. # This will also enable temporary god mode for the AFK player.
  575. # The player has to use the command /afk to leave the AFK mode.
  576. freeze-afk-players: false
  577.  
  578. # When the player is AFK, should he be able to pickup items?
  579. # Enable this, when you don't want people idling in mob traps.
  580. disable-item-pickup-while-afk: false
  581.  
  582. # This setting controls if a player is marked as active on interaction.
  583. # When this setting is false, the player would need to manually un-AFK using the /afk command.
  584. cancel-afk-on-interact: true
  585.  
  586. # Should we automatically remove afk status when a player moves?
  587. # Player will be removed from AFK on chat/command regardless of this setting.
  588. # Disable this to reduce server lag.
  589. cancel-afk-on-move: true
  590.  
  591. # You can disable the death messages of Minecraft here.
  592. death-messages: true
  593.  
  594. # Should players with permissions be able to join and part silently?
  595. # You can control this with essentials.silentjoin and essentials.silentquit permissions if it is enabled.
  596. # In addition, people with essentials.silentjoin.vanish will be vanished on join.
  597. allow-silent-join-quit: false
  598.  
  599. # You can set a custom join message here, set to "none" to disable.
  600. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  601. custom-join-message: "none"
  602.  
  603. # You can set a custom quit message here, set to "none" to disable.
  604. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  605. custom-quit-message: "none"
  606.  
  607. # Add worlds to this list, if you want to automatically disable god mode there.
  608. no-god-in-worlds:
  609. # - world_nether
  610.  
  611. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands.
  612. # This applies to /world, /back, /tp[a|o][here|all], but not warps.
  613. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  614. # This does not affect the /home command, there is a separate toggle below for this.
  615. world-teleport-permissions: false
  616.  
  617. # The number of items given if the quantity parameter is left out in /item or /give.
  618. # If this number is below 1, the maximum stack size size is given. If over-sized stacks.
  619. # are not enabled, any number higher than the maximum stack size results in more than one stack.
  620. default-stack-size: -1
  621.  
  622. # Over-sized stacks are stacks that ignore the normal max stack size.
  623. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  624. # How many items should be in an over-sized stack?
  625. oversized-stacksize: 64
  626.  
  627. # Allow repair of enchanted weapons and armor.
  628. # If you set this to false, you can still allow it for certain players using the permission.
  629. # essentials.repair.enchanted
  630. repair-enchanted: true
  631.  
  632. # Allow 'unsafe' enchantments in kits and item spawning.
  633. # Warning: Mixing and overleveling some enchantments can cause issues with clients, servers and plugins.
  634. unsafe-enchantments: true
  635.  
  636. #Do you want Essentials to keep track of previous location for /back in the teleport listener?
  637. #If you set this to true any plugin that uses teleport will have the previous location registered.
  638. register-back-in-listener: false
  639.  
  640. #Delay to wait before people can cause attack damage after logging in.
  641. login-attack-delay: 5
  642.  
  643. #Set the max fly speed, values range from 0.1 to 1.0
  644. max-fly-speed: 0.8
  645.  
  646. #Set the max walk speed, values range from 0.1 to 1.0
  647. max-walk-speed: 0.8
  648.  
  649. #Set the maximum amount of mail that can be sent within a minute.
  650. mails-per-minute: 1000
  651.  
  652. # Set the maximum time /tempban can be used for in seconds.
  653. # Set to -1 to disable, and essentials.tempban.unlimited can be used to override.
  654. max-tempban-time: -1
  655.  
  656. ############################################################
  657. # +------------------------------------------------------+ #
  658. # | EssentialsHome | #
  659. # +------------------------------------------------------+ #
  660. ############################################################
  661.  
  662. # Allows people to set their bed at daytime.
  663. update-bed-at-daytime: true
  664.  
  665. # Set to true to enable per-world permissions for using homes to teleport between worlds.
  666. # This applies to the /home only.
  667. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  668. world-home-permissions: false
  669.  
  670. # Allow players to have multiple homes.
  671. # Players need essentials.sethome.multiple before they can have more than 1 home.
  672. # You can set the default number of multiple homes using the 'default' rank below.
  673. # To remove the home limit entirely, give people 'essentials.sethome.multiple.unlimited'.
  674. # To grant different home amounts to different people, you need to define a 'home-rank' below.
  675. # Create the 'home-rank' below, and give the matching permission: essentials.sethome.multiple.<home-rank>
  676. # For more information, visit http://wiki.ess3.net/wiki/Multihome
  677. sethome-multiple:
  678. default: 1
  679. Zombie: 2
  680. Skeleton: 4
  681. Pigzombie: 6
  682. Enderman: 8
  683. Blaze: 10
  684. Creeper: 12
  685. Wither: 14
  686. # In this example someone with 'essentials.sethome.multiple' and 'essentials.sethome.multiple.vip' will have 5 homes.
  687. # Remember, they MUST have both permission nodes in order to be able to set multiple homes.
  688.  
  689. # Set the timeout, in seconds for players to accept a tpa before the request is cancelled.
  690. # Set to 0 for no timeout.
  691. tpa-accept-cancellation: 120
  692.  
  693. ############################################################
  694. # +------------------------------------------------------+ #
  695. # | EssentialsEco | #
  696. # +------------------------------------------------------+ #
  697. ############################################################
  698.  
  699. # For more information, visit http://wiki.ess3.net/wiki/Essentials_Economy
  700.  
  701. # Defines the balance with which new players begin. Defaults to 0.
  702. starting-balance: 0
  703.  
  704. # worth-# defines the value of an item when it is sold to the server via /sell.
  705. # These are now defined in worth.yml
  706.  
  707. # Defines the cost to use the given commands PER USE.
  708. # Some commands like /repair have sub-costs, check the wiki for more information.
  709. command-costs:
  710. # /example costs $1000 PER USE
  711. #example: 1000
  712. # /kit tools costs $1500 PER USE
  713. #kit-tools: 1500
  714.  
  715. # Set this to a currency symbol you want to use.
  716. # Remember, if you want to use special characters in this document,
  717. # such as accented letters, you MUST save the file as UTF-8, not ANSI.
  718. currency-symbol: '$'
  719.  
  720. # Set the maximum amount of money a player can have.
  721. # The amount is always limited to 10 trillion because of the limitations of a java double.
  722. max-money: 10000000000000
  723.  
  724. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  725. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  726. min-money: -10000
  727.  
  728. # Enable this to log all interactions with trade/buy/sell signs and sell command.
  729. economy-log-enabled: false
  730.  
  731. ############################################################
  732. # +------------------------------------------------------+ #
  733. # | EssentialsHelp | #
  734. # +------------------------------------------------------+ #
  735. ############################################################
  736.  
  737. # Show other plugins commands in help.
  738. non-ess-in-help: true
  739.  
  740. # Hide plugins which do not give a permission.
  741. # You can override a true value here for a single plugin by adding a permission to a user/group.
  742. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
  743. # You can use negative permissions to remove access to just a single plugins help if the following is enabled.
  744. hide-permissionless-help: true
  745.  
  746. ############################################################
  747. # +------------------------------------------------------+ #
  748. # | EssentialsChat | #
  749. # +------------------------------------------------------+ #
  750. ############################################################
  751.  
  752. # This section requires the EssentialsChat.jar to work.
  753.  
  754. chat:
  755.  
  756. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  757. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  758. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  759. # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  760. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  761. radius: 0
  762.  
  763. # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  764. # Or you can give a group specific chat format, to give some extra variation.
  765. # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting
  766.  
  767. format: '<{DISPLAYNAME}> {MESSAGE}'
  768. #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'
  769.  
  770. group-formats:
  771. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
  772. # Admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'
  773.  
  774. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  775.  
  776. ############################################################
  777. # +------------------------------------------------------+ #
  778. # | EssentialsProtect | #
  779. # +------------------------------------------------------+ #
  780. ############################################################
  781.  
  782. # This section requires the EssentialsProtect.jar to work.
  783.  
  784. protect:
  785.  
  786. # General physics/behavior modifications.
  787. prevent:
  788. lava-flow: false
  789. water-flow: false
  790. water-bucket-flow: false
  791. fire-spread: true
  792. lava-fire-spread: true
  793. flint-fire: false
  794. lightning-fire-spread: true
  795. portal-creation: false
  796. tnt-explosion: false
  797. tnt-playerdamage: false
  798. tnt-minecart-explosion: false
  799. tnt-minecart-playerdamage: false
  800. fireball-explosion: false
  801. fireball-fire: false
  802. fireball-playerdamage: false
  803. witherskull-explosion: false
  804. witherskull-playerdamage: false
  805. wither-spawnexplosion: false
  806. wither-blockreplace: false
  807. creeper-explosion: false
  808. creeper-playerdamage: false
  809. creeper-blockdamage: false
  810. enderdragon-blockdamage: true
  811. enderman-pickup: false
  812. villager-death: false
  813. # Monsters won't follow players.
  814. # permission essentials.protect.entitytarget.bypass disables this.
  815. entitytarget: false
  816. # Prevent the spawning of creatures.
  817. spawn:
  818. creeper: false
  819. skeleton: false
  820. spider: false
  821. giant: false
  822. zombie: false
  823. slime: false
  824. ghast: false
  825. pig_zombie: false
  826. enderman: false
  827. cave_spider: false
  828. silverfish: false
  829. blaze: false
  830. magma_cube: false
  831. ender_dragon: false
  832. pig: false
  833. sheep: false
  834. cow: false
  835. chicken: false
  836. squid: false
  837. wolf: false
  838. mushroom_cow: false
  839. snowman: false
  840. ocelot: false
  841. iron_golem: false
  842. villager: false
  843. wither: false
  844. bat: false
  845. witch: false
  846. horse: false
  847.  
  848. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  849. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  850. creeper:
  851. max-height: -1
  852.  
  853. # Disable various default physics and behaviors.
  854. disable:
  855. # Should fall damage be disabled?
  856. fall: false
  857.  
  858. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  859. # They will be unable to attack users without that same permission node.
  860. pvp: false
  861.  
  862. # Should drowning damage be disabled?
  863. # (Split into two behaviors; generally, you want both set to the same value.)
  864. drown: false
  865. suffocate: false
  866.  
  867. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  868. lavadmg: false
  869.  
  870. # Should arrow damage be disabled?
  871. projectiles: false
  872.  
  873. # This will disable damage from touching cacti.
  874. contactdmg: false
  875.  
  876. # Burn, baby, burn! Should fire damage be disabled?
  877. firedmg: false
  878.  
  879. # Should the damage after hit by a lightning be disabled?
  880. lightning: false
  881.  
  882. # Should Wither damage be disabled?
  883. wither: false
  884.  
  885. # Disable weather options?
  886. weather:
  887. storm: false
  888. thunder: false
  889. lightning: false
  890.  
  891. ############################################################
  892. # +------------------------------------------------------+ #
  893. # | EssentialsAntiBuild | #
  894. # +------------------------------------------------------+ #
  895. ############################################################
  896.  
  897. # This section requires the EssentialsAntiBuild.jar to work.
  898.  
  899. # Disable various default physics and behaviors
  900. # For more information, visit http://wiki.ess3.net/wiki/AntiBuild
  901.  
  902. # Should people with build: false in permissions be allowed to build?
  903. # Set true to disable building for those people.
  904. # Setting to false means EssentialsAntiBuild will never prevent you from building.
  905. build: true
  906.  
  907. # Should people with build: false in permissions be allowed to use items?
  908. # Set true to disable using for those people.
  909. # Setting to false means EssentialsAntiBuild will never prevent you from using items.
  910. use: true
  911.  
  912. # Should we tell people they are not allowed to build?
  913. warn-on-build-disallow: true
  914.  
  915. # For which block types would you like to be alerted?
  916. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  917. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  918. alert:
  919. on-placement: 10,11,46,327
  920. on-use: 327
  921. on-break:
  922.  
  923. blacklist:
  924.  
  925. # Which blocks should people be prevented from placing?
  926. placement: 10,11,46,327
  927.  
  928. # Which items should people be prevented from using?
  929. usage: 327
  930.  
  931. # Which blocks should people be prevented from breaking?
  932. break:
  933.  
  934. # Which blocks should not be pushed by pistons?
  935. piston:
  936.  
  937. # Which blocks should not be dispensed by dispensers
  938. dispenser:
  939.  
  940. ############################################################
  941. # +------------------------------------------------------+ #
  942. # | Essentials Spawn / New Players | #
  943. # +------------------------------------------------------+ #
  944. ############################################################
  945.  
  946. # This section requires essentialsspawn.jar to work.
  947.  
  948. newbies:
  949. # Should we announce to the server when someone logs in for the first time?
  950. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  951. # If not, set to ''
  952. #announce-format: ''
  953. announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'
  954.  
  955. # When we spawn for the first time, which spawnpoint do we use?
  956. # Set to "none" if you want to use the spawn point of the world.
  957. spawnpoint: newbies
  958.  
  959. # Do we want to give users anything on first join? Set to '' to disable
  960. # This kit will be given regardless of cost and permissions, and will not trigger the kit delay.
  961. #kit: ''
  962. kit: tools
  963.  
  964. # Set this to lowest, if you want Multiverse to handle the respawning.
  965. # Set this to high, if you want EssentialsSpawn to handle the respawning.
  966. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning.
  967. respawn-listener-priority: high
  968.  
  969. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  970. respawn-at-home: false
  971.  
  972. # End of file <-- No seriously, you're done with configuration.
Add Comment
Please, Sign In to add comment