Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.53 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: '6'
  29.  
  30. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  31. nickname-prefix: '*'
  32.  
  33. # Disable this if you have any other plugin, that modifies the displayname of a user.
  34. change-displayname: true
  35.  
  36. # When this option is enabled, the (tab) player list will be updated with the displayname.
  37. # The value of change-displayname (above) has to be true.
  38. change-playerlist: true
  39.  
  40. # Adds the prefix and suffix to the displayname of the player, so it will be displayed in messages and lists.
  41. # The prefix/suffix can be set using Permissions, Group Manager or PermissionsEx.
  42. # The value of change-displayname (above) has to be true.
  43. # If you don't set this, it will default to true if essentials chat is installed.
  44. # Don't forget to remove the # infront of the line
  45. add-prefix-suffix: false
  46.  
  47. # The delay, in seconds, required between /home, /tp, etc.
  48. teleport-cooldown: -1
  49.  
  50. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  51. teleport-delay: 3
  52.  
  53. # The delay, in seconds, required between /heal attempts
  54. heal-cooldown: 60
  55.  
  56. # What to prevent from /i /give
  57. # e.g item-spawn-blacklist: 46,11,10
  58. item-spawn-blacklist:
  59.  
  60. # Set this to true if you want permission based item spawn rules
  61. # Note: The blacklist above will be ignored then.
  62. # Permissions:
  63. # - essentials.itemspawn.item-all
  64. # - essentials.itemspawn.item-[itemname]
  65. # - essentials.itemspawn.item-[itemid]
  66. # - essentials.give.item-all
  67. # - essentials.give.item-[itemname]
  68. # - essentials.give.item-[itemid]
  69. permission-based-item-spawn: false
  70.  
  71. # Mob limit on spawnmob
  72. spawnmob-limit: 10
  73.  
  74. # Shall we notify users when using /lightning
  75. warn-on-smite: true
  76.  
  77. # motd and rules are now configured in the files motd.txt and rules.txt
  78.  
  79. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take
  80. # priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:
  81. # usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.
  82. # For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god
  83. # will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an "e",
  84. # such as /egod, will always grant Essentials priority.
  85. # We should try to take priority over /god. If this doesn't work, use
  86. # /essentials:god or /egod. If god is set using WorldGuard, use /ungod to remove then use whichever you see fit.
  87. overridden-commands:
  88. - god
  89.  
  90. # Disabled commands will be completely unavailable on the server.
  91. disabled-commands:
  92. # - nick
  93. - nuke
  94. - bukkit:me
  95.  
  96. # Restricted commands have been removed.
  97. # Now we have a whitelist, all commands not on this list are only available to ops.
  98. # These will have NO EFFECT if you have Permissions installed!
  99. # They are here only if you want something simpler than Permissions.
  100. # These are the permissions without the "essentials." part.
  101. player-commands:
  102. - afk
  103. - back
  104. - back.ondeath
  105. - balance
  106. - clearinventory
  107. - compass
  108. - depth
  109. - getpos
  110. - geoip.show
  111. - help
  112. - helpop
  113. - home
  114. - home.others
  115. - ignore
  116. - info
  117. - kit
  118. - list
  119. - mail
  120. - mail.send
  121. - me
  122. - motd
  123. - msg
  124. - nick
  125. - pay
  126. - ping
  127. - powertool
  128. - protect
  129. - r
  130. - rules
  131. - seen
  132. - sell
  133. - sethome
  134. - setxmpp
  135. - signs.create.protection
  136. - signs.create.trade
  137. - signs.break.protection
  138. - signs.break.trade
  139. - signs.use.balance
  140. - signs.use.buy
  141. - signs.use.disposal
  142. - signs.use.free
  143. - signs.use.heal
  144. - signs.use.mail
  145. - signs.use.protection
  146. - signs.use.sell
  147. - signs.use.time
  148. - signs.use.trade
  149. - signs.use.warp
  150. - signs.use.weather
  151. - spawn
  152. - suicide
  153. - tpa
  154. - tpaccept
  155. - tpahere
  156. - tpdeny
  157. - warp
  158. - warp.list
  159. - world
  160. - worth
  161. - xmpp
  162.  
  163. # Allow 'unsafe' enchantments in kits and item spawning.
  164. # Warning: Mixing and overleveling some enchantments can cause issues with clients, servers and plugins.
  165. unsafe-enchantments: true
  166.  
  167. # Essentials Sign Control
  168. # See http://ess.khhq.net/wiki/Sign_Tutorial for instructions on how to use these.
  169. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  170. # We recommend not enabling chest protection signs if you don't intend to use them, (or are using LWC/Lockette).
  171.  
  172. enabledSigns:
  173. - balance
  174. - buy
  175. - sell
  176. - trade
  177. - free
  178. - disposal
  179. - warp
  180. - kit
  181. - mail
  182. - enchant
  183. - gamemode
  184. - heal
  185. #- spawnmob
  186. - time
  187. - weather
  188. - protection
  189.  
  190. # Backup runs a command while saving is disabled
  191. backup:
  192. # Interval in minutes
  193. interval: 60
  194. # Add a command that backups your data, e.g.
  195. #command: 'rdiff-backup World1 backups/World1'
  196.  
  197. # Set this true to enable permission per warp.
  198. per-warp-permission: false
  199.  
  200. # Sort output of /list command by groups
  201. sort-list-by-groups: true
  202.  
  203. # More output to the console
  204. debug: false
  205.  
  206. # Set the locale for all messages
  207. # If you don't set this, the default locale of the server will be used.
  208. # Don't forget to remove the # infront of the line
  209. #locale: de_DE
  210.  
  211. # Turn off god mode when people exit
  212. remove-god-on-disconnect: false
  213.  
  214. # Use the permission system of bukkit
  215. # This only works if no other permission plugins are installed
  216. use-bukkit-permissions: false
  217.  
  218. # Auto-AFK
  219. # After this timeout in seconds, the user will be set as afk.
  220. # Set to -1 for no timeout.
  221. auto-afk: 180
  222.  
  223. # Auto-AFK Kick
  224. # After this timeout in seconds, the user will be kicked from the server.
  225. # Set to -1 for no timeout.
  226. auto-afk-kick: 3600
  227.  
  228. # Set this to true, if you want to freeze the player, if he is afk.
  229. # Other players or monsters can't push him out of afk mode then.
  230. # This will also enable temporary god mode for the afk player.
  231. # The player has to use the command /afk to leave the afk mode.
  232. freeze-afk-players: false
  233.  
  234. # When the player is afk, should he be able to pickup items?
  235. # Enable this, when you don't want people idling in mob traps.
  236. disable-item-pickup-while-afk: true
  237.  
  238. # You can set a custom join message here, set to "none" to disable.
  239. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  240. custom-join-message: "&e{USERNAME} joined the game"
  241.  
  242. # You can set a custom quit message here, set to "none" to disable.
  243. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  244. custom-quit-message: "&e{USERNAME} left the game"
  245.  
  246. # You can disable the death messages of minecraft here
  247. death-messages: true
  248.  
  249. # Add worlds to this list, if you want to automatically disable god mode there
  250. no-god-in-worlds:
  251. - NULL
  252.  
  253. # Set to true to enable per-world permissions for teleporting with /world
  254. # Give someone permission to teleport to a world with essentials.world.
  255. world-teleport-permissions: false
  256.  
  257. # The number of items given if the quantity parameter is left out in /item or /give.
  258. # If this number is below 1, the maximum stack size size is given. If oversized stacks
  259. # is not enabled, any number higher then the maximum stack size results in more than one stack.
  260. default-stack-size: -1
  261.  
  262. # Oversized stacks are stacks that ignore the normal max stacksize.
  263. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  264. # How many items should be in a oversized stack?
  265. oversized-stacksize: 64
  266.  
  267. # Do you allow to repair enchanted weapons and armor?
  268. # If you set this to false, you can still allow it for certain players using the permission
  269. # essentials.repair.enchanted
  270. repair-enchanted: true
  271.  
  272. #Do you want essentials to keep track of previous location for /back in the teleport listener?
  273. #If you set this to true any plugin that uses teleport will have the previous location registered.
  274. register-back-in-listener: false
  275.  
  276. ############################################################
  277. # +------------------------------------------------------+ #
  278. # | EssentialsHome | #
  279. # +------------------------------------------------------+ #
  280. ############################################################
  281.  
  282. # If no home is set, send players to spawn when /home is used
  283. spawn-if-no-home: true
  284.  
  285. # Allows people to set their bed at daytime
  286. update-bed-at-daytime: true
  287.  
  288. # Allow players to have multiple homes.
  289. # Players need essentials.sethome.multiple before they can have more than 1 home, default to 'default' below.
  290. # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip
  291. # People with essentials.sethome.multiple.unlimited are not limited by these numbers.
  292. sethome-multiple:
  293. default: 1
  294. two: 2
  295. three: 3
  296. four: 4
  297. five: 5
  298. six: 6
  299. seven: 7
  300. eight: 8
  301. nine: 9
  302. # essentials.sethome.multiple.staff
  303. # Set timeout in seconds for players to accept tpa before request is cancelled.
  304. # Set to 0 for no timeout
  305. tpa-accept-cancellation: 120
  306.  
  307. ############################################################
  308. # +------------------------------------------------------+ #
  309. # | EssentialsEco | #
  310. # +------------------------------------------------------+ #
  311. ############################################################
  312.  
  313. # Defines the balance with which new players begin. Defaults to 0.
  314. starting-balance: 25000
  315.  
  316. # worth-# defines the value of an item when it is sold to the server via /sell.
  317. # These are now defined in worth.yml
  318.  
  319. # Defines the cost to use the given commands PER USE
  320. command-costs:
  321. # /example costs $1000 PER USE
  322. #example: 1000
  323. # /kit tools costs $1500 PER USE
  324. #kit-tools: 1500
  325.  
  326. # Set this to a currency symbol you want to use.
  327. currency-symbol: '$'
  328.  
  329. # Set the maximum amount of money a player can have
  330. # The amount is always limited to 10 trillions because of the limitations of a java double
  331. max-money: 10000000000000
  332.  
  333. # Set the minimum amount of money a player can have (must be above the negitive of max-money).
  334. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  335. min-money: -10000
  336.  
  337. # Enable this to log all interactions with trade/buy/sell signs and sell command
  338. economy-log-enabled: false
  339.  
  340. ############################################################
  341. # +------------------------------------------------------+ #
  342. # | EssentialsHelp | #
  343. # +------------------------------------------------------+ #
  344. ############################################################
  345.  
  346. # Show other plugins commands in help
  347. non-ess-in-help: true
  348.  
  349. # Hide plugins which dont give a permission
  350. # You can override a true value here for a single plugin by adding a permission to a user/group.
  351. # The individual permission is: essentials.help., anyone with essentials.* or '*' will see all help this setting reguardless.
  352. # You can use negitive permissions to remove access to just a single plugins help if the following is enabled.
  353. hide-permissionless-help: true
  354.  
  355. ############################################################
  356. # +------------------------------------------------------+ #
  357. # | EssentialsChat | #
  358. # +------------------------------------------------------+ #
  359. ############################################################
  360.  
  361. chat:
  362.  
  363. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  364. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  365. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  366. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
  367. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  368. radius: 0
  369.  
  370. # Chat formatting can be done in two ways, you can either define a standard format for all chat
  371. # Or you can give a group specific chat format, to give some extra variation.
  372. # If set to the default chat format which "should" be compatible with ichat.
  373. # For more information of chat formatting, check out the wiki: http://ess.khhq.net/wiki/Chat_Formatting
  374.  
  375. format: '{DISPLAYNAME} : {MESSAGE}'
  376. #format: '&7[{GROUP}]&f {DISPLAYNAME}&7:&f {MESSAGE}'
  377.  
  378. group-formats:
  379. Newbie: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&7Newbie&f] &7{DISPLAYNAME}&8:&f {MESSAGE}'
  380. mcrafter: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&4Head-Admin&f] &6{DISPLAYNAME}&7:&e {MESSAGE}'
  381. Warrior: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&eWarrior&f] &7{DISPLAYNAME}&8:&7 {MESSAGE}'
  382. Assassin: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&aAssassin&f] &7{DISPLAYNAME}&8:&7 {MESSAGE}'
  383. Juggernaut: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&3Juggernaut&f] &a{DISPLAYNAME}&8:&7 {MESSAGE}'
  384. Guardian: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&bGuardian&f] &a{DISPLAYNAME}&8:&7 {MESSAGE}'
  385. Reaper: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&cReaper&f] &3{DISPLAYNAME}&8:&9 {MESSAGE}'
  386. Demonic: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&5Demonic&f] &d{DISPLAYNAME}&8:&3 {MESSAGE}'
  387. Necromancer: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&5Necromancer&f] &c{DISPLAYNAME}&8:&3 {MESSAGE}'
  388. Hades: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&4Hades&f] &5{DISPLAYNAME}&8:&c {MESSAGE}'
  389. Kronos: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&4&lKronos&f] &4{DISPLAYNAME}&8:&c {MESSAGE}'
  390. Helper: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&bHelper&f] &3{DISPLAYNAME}&8:&e {MESSAGE}'
  391. TrialMod: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&bTrial&9Mod&f] &b{DISPLAYNAME}&7:&3 {MESSAGE}'
  392. Moderator: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&9&lModerator&f] &b{DISPLAYNAME}&7:&3 {MESSAGE}'
  393. Tech: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &6{DISPLAYNAME}&7:&e {MESSAGE}'
  394. Admin: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&4&lAdmin&f] &6{DISPLAYNAME}&7:&e {MESSAGE}'
  395. Head-Admin: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&4&lHead Admin&f] &6{DISPLAYNAME}&7:&e {MESSAGE}'
  396. Co-Owner: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&d&lCo-Owner&f] &6{DISPLAYNAME}&7:&b {MESSAGE}'
  397. Owner: '{factions_relcolor}{factions_roleprefix}{factions_name}&e&l > &f[&d&lOwner&f] &6{DISPLAYNAME}&7:&b {MESSAGE}'
  398.  
  399. # If your using group formats make sure to remove the '#' to allow the setting to be read.
  400.  
  401. ############################################################
  402. # +------------------------------------------------------+ #
  403. # | EssentialsProtect | #
  404. # +------------------------------------------------------+ #
  405. ############################################################
  406.  
  407. protect:
  408. # Database settings for sign/rail protection
  409.  
  410. # mysql or sqlite
  411. datatype: 'sqlite'
  412.  
  413. # If you specified MySQL above, you MUST enter the appropriate details here.
  414. # If you specified SQLite above, these will be IGNORED.
  415. username: 'root'
  416. password: 'root'
  417. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  418.  
  419. # For which block types would you like to be alerted?
  420. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  421. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  422. alert:
  423. on-placement:
  424. on-use:
  425. on-break:
  426.  
  427. blacklist:
  428.  
  429. # Which blocks should people be prevented from placing
  430. placement:
  431.  
  432. # Which items should people be prevented from using
  433. usage:
  434.  
  435. # Which blocks should people be prevented from breaking
  436. break:
  437.  
  438. # Which blocks should not be pushed by pistons
  439. piston:
  440.  
  441. # General physics/behavior modifications
  442. prevent:
  443. lava-flow: false
  444. water-flow: false
  445. water-bucket-flow: false
  446. fire-spread: false
  447. lava-fire-spread: false
  448. flint-fire: false
  449. lightning-fire-spread: false
  450. portal-creation: false
  451. tnt-explosion: false
  452. tnt-playerdamage: false
  453. fireball-explosion: false
  454. fireball-fire: false
  455. fireball-playerdamage: false
  456. creeper-explosion: false
  457. creeper-playerdamage: false
  458. creeper-blockdamage: false
  459. enderdragon-blockdamage: true
  460. enderman-pickup: false
  461. villager-death: false
  462. # Monsters won't follow players
  463. # permission essentials.protect.entitytarget.bypass disables this
  464. entitytarget: false
  465. # Prevent the spawning of creatures
  466. spawn:
  467. chicken: false
  468. cow: false
  469. creeper: false
  470. ghast: false
  471. giant: false
  472. monster: false
  473. pig: false
  474. pig_zombie: false
  475. sheep: false
  476. skeleton: false
  477. slime: false
  478. spider: false
  479. squid: false
  480. zombie: false
  481. wolf: false
  482. cave_spider: false
  483. enderman: false
  484. silverfish: false
  485. ender_dragon: false
  486. villager: false
  487. blaze: false
  488. mushroom_cow: false
  489. magma_cube: false
  490. snowman: false
  491.  
  492. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  493. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  494. creeper:
  495. max-height: -1
  496.  
  497. # Protect various blocks.
  498. protect:
  499. # Protect all signs
  500. signs: true
  501.  
  502. # Prevent users from destroying rails
  503. rails: true
  504.  
  505. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  506. # This makes it more difficult to circumvent protection, and should be enabled.
  507. # This only has an effect if "rails" or "signs" is also enabled.
  508. block-below: true
  509.  
  510. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  511. prevent-block-on-rails: false
  512.  
  513. # Store blocks / signs in memory before writing
  514. memstore: false
  515.  
  516. # Disable various default physics and behaviors
  517. disable:
  518. # Should fall damage be disabled?
  519. fall: false
  520.  
  521. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  522. # They will be unable to attack users without that same permission node.
  523. pvp: false
  524.  
  525. # Should drowning damage be disabled?
  526. # (Split into two behaviors; generally, you want both set to the same value)
  527. drown: false
  528. suffocate: false
  529.  
  530. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  531. lavadmg: false
  532.  
  533. # Should arrow damage be disabled
  534. projectiles: false
  535.  
  536. # This will disable damage from touching cacti.
  537. contactdmg: false
  538.  
  539. # Burn, baby, burn! Should fire damage be disabled?
  540. firedmg: false
  541.  
  542. # Should the damage after hit by a lightning be disabled?
  543. lightning: false
  544.  
  545. # Should people with build: false in permissions be allowed to build
  546. # Set true to disable building for those people
  547. build: true
  548.  
  549. # Should people with build: false in permissions be allowed to use items
  550. # Set true to disable using for those people
  551. use: true
  552.  
  553. # Should we tell people they are not allowed to build
  554. warn-on-build-disallow: true
  555.  
  556. # Disable weather options
  557. weather:
  558. storm: false
  559. thunder: false
  560. lightning: false
  561.  
  562. ############################################################
  563. # +------------------------------------------------------+ #
  564. # | Essentials Spawn / New Players | #
  565. # +------------------------------------------------------+ #
  566. ############################################################
  567.  
  568. newbies:
  569. # Should we announce to the server when someone logs in for the first time?
  570. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  571. # If not, set to ''
  572. #announce-format: ''
  573. announce-format: '&dWelcome &6{DISPLAYNAME}&d to InsanityCraft!'
  574.  
  575. # When we spawn for the first time, which spawnpoint do we use?
  576. # Set to "none" if you want to use the spawn point of the world.
  577. spawnpoint: newbies
  578.  
  579. # Do we want to give users anything on first join? Set to '' to disable
  580. # This kit will be given reguardless of cost, and permissions.
  581. #kit: ''
  582. kit: 'starter'
  583.  
  584. # Set this to lowest, if you want Multiverse to handle the respawning
  585. # Set this to high, if you want EssentialsSpawn to handle the respawning
  586. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning
  587. respawn-listener-priority: high
  588.  
  589. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  590. respawn-at-home: false
  591.  
  592. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement