Advertisement
Guest User

EssentialsX /tpa not working

a guest
Mar 30th, 2020
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.98 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. # Version 2.17.2.12
  17.  
  18. # KITS ARE NOW IN THE kits.yml FILE
  19.  
  20. ############################################################
  21. # +------------------------------------------------------+ #
  22. # | Essentials (Global) | #
  23. # +------------------------------------------------------+ #
  24. ############################################################
  25.  
  26. # A color code between 0-9 or a-f. Set to 'none' to disable.
  27. ops-name-color: 'none'
  28.  
  29. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  30. nickname-prefix: '~'
  31.  
  32. # The maximum length allowed in nicknames. The nickname prefix is included in this.
  33. max-nick-length: 40
  34.  
  35. # A list of phrases that cannot be used in nicknames. You can include regular expressions here.
  36. # Users with essentials.nick.blacklist.bypass will be able to bypass this filter.
  37. nick-blacklist:
  38. #- Notch
  39. #- '^Dinnerbone'
  40.  
  41. # When this option is enabled, nickname length checking will exclude color codes in player names.
  42. # ie: "&6Notch" has 7 characters (2 are part of a color code), a length of 5 is used when this option is set to true
  43. ignore-colors-in-max-nick-length: true
  44.  
  45. # When this option is enabled, display names for hidden users will not be shown. This prevents players from being
  46. # able to see that they are online while vanished.
  47. hide-displayname-in-vanish: true
  48.  
  49. # Disable this if you have any other plugin, that modifies the displayname of a user.
  50. change-displayname: true
  51.  
  52. # When this option is enabled, the (tab) player list will be updated with the displayname.
  53. # The value of change-displayname (above) has to be true.
  54. #change-playerlist: false
  55.  
  56. # When EssentialsChat.jar isn't used, force essentials to add the prefix and suffix from permission plugins to displayname.
  57. # This setting is ignored if EssentialsChat.jar is used, and defaults to 'true'.
  58. # The value of change-displayname (above) has to be true.
  59. # Do not edit this setting unless you know what you are doing!
  60. #add-prefix-suffix: false
  61.  
  62. # When this option is enabled, player prefixes will be shown in the playerlist.
  63. # This feature only works for Minecraft version 1.8 and higher.
  64. # This value of change-playerlist has to be true
  65. #add-prefix-in-playerlist: false
  66.  
  67. # When this option is enabled, player suffixes will be shown in the playerlist.
  68. # This feature only works for Minecraft version 1.8 and higher.
  69. # This value of change-playerlist has to be true
  70. #add-suffix-in-playerlist: true
  71.  
  72. # If the teleport destination is unsafe, should players be teleported to the nearest safe location?
  73. # If this is set to true, Essentials will attempt to teleport players close to the intended destination.
  74. # If this is set to false, attempted teleports to unsafe locations will be cancelled with a warning.
  75. teleport-safety: true
  76.  
  77. # This forcefully disables teleport safety checks without a warning if attempting to teleport to unsafe locations.
  78. # teleport-safety and this option need to be set to true to force teleportation to dangerous locations.
  79. force-disable-teleport-safety: false
  80.  
  81. # The delay, in seconds, required between /home, /tp, etc.
  82. teleport-cooldown: 3
  83.  
  84. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport is cancelled.
  85. teleport-delay: 3
  86.  
  87. # The delay, in seconds, a player can't be attacked by other players after they have been teleported by a command.
  88. # This will also prevent the player attacking other players.
  89. teleport-invulnerability: 4
  90.  
  91. # Whether to make all teleportations go to the center of the block; where the x and z coordinates decimal become .5
  92. teleport-to-center: true
  93.  
  94. # The delay, in seconds, required between /heal or /feed attempts.
  95. heal-cooldown: 60
  96.  
  97. # Do you want to remove potion effects when healing a player?
  98. remove-effects-on-heal: true
  99.  
  100. # Near Radius
  101. # The default radius with /near
  102. # Used to use chat radius but we are going to make it separate.
  103. near-radius: 200
  104.  
  105. # What to prevent from /item and /give.
  106. # e.g item-spawn-blacklist: 10,11,46
  107. item-spawn-blacklist:
  108.  
  109. # Set this to true if you want permission based item spawn rules.
  110. # Note: The blacklist above will be ignored then.
  111. # Example permissions (these go in your permissions manager):
  112. # - essentials.itemspawn.item-all
  113. # - essentials.itemspawn.item-[itemname]
  114. # - essentials.itemspawn.item-[itemid]
  115. # - essentials.give.item-all
  116. # - essentials.give.item-[itemname]
  117. # - essentials.give.item-[itemid]
  118. # - essentials.unlimited.item-all
  119. # - essentials.unlimited.item-[itemname]
  120. # - essentials.unlimited.item-[itemid]
  121. # - essentials.unlimited.item-bucket # Unlimited liquid placing
  122. #
  123. # For more information, visit http://wiki.ess3.net/wiki/Command_Reference/ICheat#Item.2FGive
  124. permission-based-item-spawn: false
  125.  
  126. # Mob limit on the /spawnmob command per execution.
  127. spawnmob-limit: 100
  128.  
  129. # Shall we notify users when using /lightning?
  130. warn-on-smite: false
  131.  
  132. # Shall we drop items instead of adding to inventory if the target inventory is full?
  133. drop-items-if-full: false
  134.  
  135. # Essentials Mail Notification
  136. # Should we notify players if they have no new mail?
  137. notify-no-new-mail: false
  138.  
  139. # Specifies the duration (in seconds) between each time a player is notified of mail they have.
  140. # Useful for servers with a lot of mail traffic.
  141. notify-player-of-mail-cooldown: 100
  142.  
  143. # The motd and rules are now configured in the files motd.txt and rules.txt.
  144.  
  145. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority.
  146. # Commands in this list, will tell Essentials to 'not give up' the command to other plugins.
  147. # In this state, which plugin 'wins' appears to be almost random.
  148. #
  149. # If you have two plugin with the same command and you wish to force Essentials to take over, you need an alias.
  150. # To force essentials to take 'god' alias 'god' to 'egod'.
  151. # See http://wiki.bukkit.org/Commands.yml#aliases for more information.
  152.  
  153. overridden-commands:
  154. # - god
  155. # - info
  156.  
  157. # Disabling commands here will prevent Essentials handling the command, this will not affect command conflicts.
  158. # You should not have to disable commands used in other plugins, they will automatically get priority.
  159. # See http://wiki.bukkit.org/Commands.yml#aliases to map commands to other plugins.
  160. disabled-commands:
  161. # - nick
  162. # - clear
  163.  
  164. # These commands will be shown to players with socialSpy enabled.
  165. # You can add commands from other plugins you may want to track or
  166. # remove commands that are used for something you dont want to spy on.
  167. # Set - '*' in order to listen on all possible commands.
  168. socialspy-commands:
  169. - msg
  170. - w
  171. - r
  172. - mail
  173. - m
  174. - t
  175. - whisper
  176. - emsg
  177. - tell
  178. - er
  179. - reply
  180. - ereply
  181. - email
  182. - action
  183. - describe
  184. - eme
  185. - eaction
  186. - edescribe
  187. - etell
  188. - ewhisper
  189. - pm
  190.  
  191. # Whether the private and public messages from muted players should appear in the social spy.
  192. # If so, they will be differentiated from those sent by normal players.
  193. socialspy-listen-muted-players: true
  194.  
  195. # Mute Commands
  196. # These commands will be disabled when a player is muted.
  197. # Use '*' to disable every command.
  198. # Essentials already disabled Essentials messaging commands by default.
  199. # It only cares about the root command, not args after that (it sees /f chat the same as /f)
  200. mute-commands:
  201. # - f
  202. # - kittycannon
  203. # - '*'
  204.  
  205. # If you do not wish to use a permission system, you can define a list of 'player perms' below.
  206. # This list has no effect if you are using a supported permissions system.
  207. # If you are using an unsupported permissions system, simply delete this section.
  208. # Whitelist the commands and permissions you wish to give players by default (everything else is op only).
  209. # These are the permissions without the "essentials." part.
  210. #
  211. # To enable this feature, please set use-bukkit-permissions to false.
  212. player-commands:
  213. - afk
  214. - afk.auto
  215. - back
  216. - back.ondeath
  217. - balance
  218. - balance.others
  219. - balancetop
  220. - build
  221. - chat.color
  222. - chat.format
  223. - chat.shout
  224. - chat.question
  225. - clearinventory
  226. - compass
  227. - depth
  228. - delhome
  229. - getpos
  230. - geoip.show
  231. - help
  232. - helpop
  233. - home
  234. - home.others
  235. - ignore
  236. - info
  237. - itemdb
  238. - kit
  239. - kits.tools
  240. - list
  241. - mail
  242. - mail.send
  243. - me
  244. - motd
  245. - msg
  246. - msg.color
  247. - nick
  248. - near
  249. - pay
  250. - ping
  251. - protect
  252. - r
  253. - rules
  254. - realname
  255. - seen
  256. - sell
  257. - sethome
  258. - setxmpp
  259. - signs.create.protection
  260. - signs.create.trade
  261. - signs.break.protection
  262. - signs.break.trade
  263. - signs.use.balance
  264. - signs.use.buy
  265. - signs.use.disposal
  266. - signs.use.enchant
  267. - signs.use.free
  268. - signs.use.gamemode
  269. - signs.use.heal
  270. - signs.use.info
  271. - signs.use.kit
  272. - signs.use.mail
  273. - signs.use.protection
  274. - signs.use.repair
  275. - signs.use.sell
  276. - signs.use.time
  277. - signs.use.trade
  278. - signs.use.warp
  279. - signs.use.weather
  280. - spawn
  281. - suicide
  282. - time
  283. - tpa
  284. - tpaccept
  285. - tpahere
  286. - tpdeny
  287. - warp
  288. - warp.list
  289. - world
  290. - worth
  291. - xmpp
  292.  
  293. # Use this option to force superperms-based permissions handler regardless of detected installed perms plugin.
  294. # This is useful if you want superperms-based permissions (with wildcards) for custom permissions plugins.
  295. # If you wish to use EssentialsX's built-in permissions using the `player-commands` section above, set this to false.
  296. # Default is true.
  297. use-bukkit-permissions: true
  298.  
  299. # When this option is enabled, one-time use kits (ie. delay < 0) will be
  300. # removed from the /kit list when a player can no longer use it
  301. skip-used-one-time-kits-from-kit-list: false
  302.  
  303. # Determines the functionality of the /createkit command.
  304. # If this is true, /createkit will give the user a link with the kit code.
  305. # If this is false, /createkit will add the kit to the kits.yml config file directly.
  306. #
  307. pastebin-createkit: false
  308.  
  309. # Essentials Sign Control
  310. # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.
  311. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  312. # Essentials colored sign support will be enabled when any sign types are enabled.
  313. # Color is not an actual sign, it's for enabling using color codes on signs, when the correct permissions are given.
  314.  
  315. enabledSigns:
  316. - color
  317. #- balance
  318. #- buy
  319. #- sell
  320. #- trade
  321. #- free
  322. - disposal
  323. #- warp
  324. #- kit
  325. #- mail
  326. #- enchant
  327. #- gamemode
  328. #- heal
  329. #- info
  330. #- spawnmob
  331. #- repair
  332. #- time
  333. #- weather
  334.  
  335. # How many times per second can Essentials signs be interacted with per player.
  336. # Values should be between 1-20, 20 being virtually no lag protection.
  337. # Lower numbers will reduce the possibility of lag, but may annoy players.
  338. sign-use-per-second: 4
  339.  
  340. # Allow item IDs on pre-existing signs on 1.13 and above.
  341. # You cannot use item IDs on new signs, but this will allow players to interact with signs that
  342. # were placed before 1.13.
  343. allow-old-id-signs: false
  344.  
  345. # List of sign names Essentials should not protect. This feature is especially useful when
  346. # another plugin provides a sign that EssentialsX provides, but Essentials overrides.
  347. # For example, if a plugin provides a [kit] sign, and you wish to use theirs instead of
  348. # Essentials's, then simply add kit below and Essentials will not protect it.
  349. #
  350. # See https://github.com/drtshock/Essentials/pull/699 for more information.
  351. unprotected-sign-names:
  352. #- kit
  353.  
  354. # Backup runs a batch/bash command while saving is disabled.
  355. backup:
  356. # Interval in minutes.
  357. interval: 30
  358. # Unless you add a valid backup command or script here, this feature will be useless.
  359. # Use 'save-all' to simply force regular world saving without backup.
  360. #command: 'rdiff-backup World1 backups/World1'
  361.  
  362. # Set this true to enable permission per warp.
  363. per-warp-permission: false
  364.  
  365. # Sort output of /list command by groups.
  366. # You can hide and merge the groups displayed in /list by defining the desired behaviour here.
  367. # Detailed instructions and examples can be found on the wiki: http://wiki.ess3.net/wiki/List
  368. list:
  369. # To merge groups, list the groups you wish to merge
  370. #Staff: owner admin moderator
  371. Players: default admin
  372. # To limit groups, set a max user limit
  373. #builder: 20
  374. # To hide groups, set the group as hidden
  375. #default: hidden
  376. # Uncomment the line below to simply list all players with no grouping
  377. #Players: '*'
  378.  
  379. # More output to the console.
  380. debug: false
  381.  
  382. # Set the locale for all messages.
  383. # If you don't set this, the default locale of the server will be used.
  384. # For example, to set language to English, set locale to en, to use the file "messages_en.properties".
  385. # Don't forget to remove the # in front of the line.
  386. # For more information, visit http://wiki.ess3.net/wiki/Locale
  387. locale: en
  388.  
  389. # Turn off god mode when people leave the server.
  390. remove-god-on-disconnect: false
  391.  
  392. # Auto-AFK
  393. # After this timeout in seconds, the user will be set as AFK.
  394. # This feature requires the player to have essentials.afk.auto node.
  395. # Set to -1 for no timeout.
  396. auto-afk: 300
  397.  
  398. # Auto-AFK Kick
  399. # After this timeout in seconds, the user will be kicked from the server.
  400. # essentials.afk.kickexempt node overrides this feature.
  401. # Set to -1 for no timeout.
  402. auto-afk-kick: -1
  403.  
  404. # Set this to true, if you want to freeze the player, if the player is AFK.
  405. # Other players or monsters can't push the player out of AFK mode then.
  406. # This will also enable temporary god mode for the AFK player.
  407. # The player has to use the command /afk to leave the AFK mode.
  408. freeze-afk-players: false
  409.  
  410. # When the player is AFK, should he be able to pickup items?
  411. # Enable this, when you don't want people idling in mob traps.
  412. disable-item-pickup-while-afk: false
  413.  
  414. # This setting controls if a player is marked as active on interaction.
  415. # When this setting is false, the player would need to manually un-AFK using the /afk command.
  416. cancel-afk-on-interact: true
  417.  
  418. # Should we automatically remove afk status when a player moves?
  419. # Player will be removed from AFK on chat/command regardless of this setting.
  420. # Disable this to reduce server lag.
  421. cancel-afk-on-move: true
  422.  
  423. # Should AFK players be ignored when other players are trying to sleep?
  424. # When this setting is false, players won't be able to skip the night if some players are AFK.
  425. # Users with the permission node essentials.sleepingignored will always be ignored.
  426. sleep-ignores-afk-players: true
  427.  
  428. # Set the player's list name when they are AFK. This is none by default which specifies that Essentials
  429. # should not interfere with the AFK player's list name.
  430. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  431. afk-list-name: "none"
  432.  
  433. # You can disable the death messages of Minecraft here.
  434. death-messages: true
  435.  
  436. # Should players with permissions be able to join and part silently?
  437. # You can control this with essentials.silentjoin and essentials.silentquit permissions if it is enabled.
  438. # In addition, people with essentials.silentjoin.vanish will be vanished on join.
  439. allow-silent-join-quit: true
  440.  
  441. # You can set a custom join message here, set to "none" to disable.
  442. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  443. custom-join-message: "&2+ &7{USERNAME}"
  444.  
  445. # You can set a custom quit message here, set to "none" to disable.
  446. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  447. custom-quit-message: "&4- &7{USERNAME}"
  448.  
  449. # Add worlds to this list, if you want to automatically disable god mode there.
  450. no-god-in-worlds:
  451. # - world_nether
  452.  
  453. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands.
  454. # This applies to /world, /back, /tp[a|o][here|all], but not warps.
  455. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  456. # This does not affect the /home command, there is a separate toggle below for this.
  457. world-teleport-permissions: false
  458.  
  459. # The number of items given if the quantity parameter is left out in /item or /give.
  460. # If this number is below 1, the maximum stack size size is given. If over-sized stacks.
  461. # are not enabled, any number higher than the maximum stack size results in more than one stack.
  462. default-stack-size: -1
  463.  
  464. # Over-sized stacks are stacks that ignore the normal max stack size.
  465. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  466. # How many items should be in an over-sized stack?
  467. oversized-stacksize: 64
  468.  
  469. # Allow repair of enchanted weapons and armor.
  470. # If you set this to false, you can still allow it for certain players using the permission.
  471. # essentials.repair.enchanted
  472. repair-enchanted: true
  473.  
  474. # Allow 'unsafe' enchantments in kits and item spawning.
  475. # Warning: Mixing and overleveling some enchantments can cause issues with clients, servers and plugins.
  476. unsafe-enchantments: false
  477.  
  478. #Do you want Essentials to keep track of previous location for /back in the teleport listener?
  479. #If you set this to true any plugin that uses teleport will have the previous location registered.
  480. register-back-in-listener: false
  481.  
  482. #Delay to wait before people can cause attack damage after logging in.
  483. login-attack-delay: 5
  484.  
  485. #Set the max fly speed, values range from 0.1 to 1.0
  486. max-fly-speed: 1.0
  487.  
  488. #Set the max walk speed, values range from 0.1 to 1.0
  489. max-walk-speed: 1.0
  490.  
  491. #Set the maximum amount of mail that can be sent within a minute.
  492. mails-per-minute: 10
  493.  
  494. # Set the maximum time /mute can be used for in seconds.
  495. # Set to -1 to disable, and essentials.mute.unlimited can be used to override.
  496. max-mute-time: -1
  497.  
  498. # Set the maximum time /tempban can be used for in seconds.
  499. # Set to -1 to disable, and essentials.tempban.unlimited can be used to override.
  500. max-tempban-time: -1
  501.  
  502. # Changes the default /reply functionality. This can be changed on a per-player basis using /rtoggle.
  503. # If true, /r goes to the person you messaged last, otherwise the first person that messaged you.
  504. # If false, /r goes to the last person that messaged you.
  505. last-message-reply-recipient: true
  506.  
  507. # If last-message-reply-recipient is enabled for a particular player,
  508. # this specifies the duration, in seconds, that would need to elapse for the
  509. # reply-recipient to update when receiving a message.
  510. # Default is 180 (3 minutes)
  511. last-message-reply-recipient-timeout: 180
  512.  
  513. # Toggles whether or not left clicking mobs with a milk bucket turns them into a baby.
  514. milk-bucket-easter-egg: true
  515.  
  516. # Toggles whether or not the fly status message should be sent to players on join
  517. send-fly-enable-on-join: false
  518.  
  519. # Set to true to enable per-world permissions for setting time for individual worlds with essentials commands.
  520. # This applies to /time, /day, /eday, /night, /enight, /etime.
  521. # Give someone permission to teleport to a world with essentials.time.world.<worldname>.
  522. world-time-permissions: false
  523.  
  524. # Specify cooldown for both Essentials commands and external commands as well.
  525. # All commands do not start with a Forward Slash (/). Instead of /msg, write msg
  526. #
  527. # Wildcards are supported. E.g.
  528. # - '*i*': 50
  529. # adds a 50 second cooldown to all commands that include the letter i
  530. #
  531. # EssentialsX supports regex by starting the command with a caret ^
  532. # For example, to target commands starting with ban and not banip the following would be used:
  533. # '^ban([^ip])( .*)?': 60 # 60 seconds /ban cooldown.
  534. # Note: If you have a command that starts with ^, then you can escape it using backslash (\). e.g. \^command: 123
  535. command-cooldowns:
  536. # feed: 100 # 100 second cooldown on /feed command
  537. # '*': 5 # 5 Second cooldown on all commands
  538.  
  539. # Whether command cooldowns should be persistent past server shutdowns
  540. command-cooldown-persistence: true
  541.  
  542. # Whether NPC balances should be listed in balance ranking features such as /balancetop.
  543. # NPC balances can include features like factions from FactionsUUID plugin.
  544. npcs-in-balance-ranking: false
  545.  
  546. # Allow bulk buying and selling signs when the player is sneaking.
  547. # This is useful when a sign sells or buys one item at a time and the player wants to sell a bunch at once.
  548. allow-bulk-buy-sell: true
  549.  
  550. # Delay for the MOTD display for players on join, in milliseconds.
  551. # This has no effect if the MOTD command or permission are disabled.
  552. delay-motd: 0
  553.  
  554. # A list of commands that should have their complementary confirm commands enabled by default.
  555. # This is empty by default, for the latest list of valid commands see the latest source config.yml.
  556. default-enabled-confirm-commands:
  557. #- pay
  558. #- clearinventory
  559.  
  560. # Whether or not to teleport a player back to their previous position after they have been freed from jail.
  561. teleport-back-when-freed-from-jail: true
  562.  
  563. # Set the timeout, in seconds for players to accept a tpa before the request is cancelled.
  564. # Set to 0 for no timeout.
  565. tpa-accept-cancellation: 60
  566.  
  567. # Allow players to set hats by clicking on their helmet slot.
  568. allow-direct-hat: true
  569.  
  570. # Allow in-game players to specify a world when running /broadcastworld.
  571. # If false, running /broadcastworld in-game will always send a message to the player's current world.
  572. # This doesn't affect running the command from the console, where a world is always required.
  573. allow-world-in-broadcastworld: true
  574.  
  575. # Consider water blocks as "safe," therefore allowing players to teleport
  576. # using commands such as /home or /spawn to a location that is occupied
  577. # by water blocks
  578. is-water-safe: true
  579.  
  580. # Should the usermap try to sanitise usernames before saving them?
  581. # You should only change this to false if you use Minecraft China.
  582. safe-usermap-names: true
  583.  
  584. # Should Essentials output logs when a command block executes a command?
  585. # Example: CommandBlock at <x>,<y>,<z> issued server command: /<command>
  586. log-command-block-commands: true
  587.  
  588. ############################################################
  589. # +------------------------------------------------------+ #
  590. # | EssentialsHome | #
  591. # +------------------------------------------------------+ #
  592. ############################################################
  593.  
  594. # Allows people to set their bed at daytime.
  595. update-bed-at-daytime: true
  596.  
  597. # Set to true to enable per-world permissions for using homes to teleport between worlds.
  598. # This applies to the /home only.
  599. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  600. world-home-permissions: false
  601.  
  602. # Allow players to have multiple homes.
  603. # Players need essentials.sethome.multiple before they can have more than 1 home.
  604. # You can set the default number of multiple homes using the 'default' rank below.
  605. # To remove the home limit entirely, give people 'essentials.sethome.multiple.unlimited'.
  606. # To grant different home amounts to different people, you need to define a 'home-rank' below.
  607. # Create the 'home-rank' below, and give the matching permission: essentials.sethome.multiple.<home-rank>
  608. # For more information, visit http://wiki.ess3.net/wiki/Multihome
  609. sethome-multiple:
  610. default: 3
  611. admin: 100
  612.  
  613. # In this example someone with 'essentials.sethome.multiple' and 'essentials.sethome.multiple.vip' will have 5 homes.
  614. # Remember, they MUST have both permission nodes in order to be able to set multiple homes.
  615.  
  616. # Controls whether players need the permission "essentials.home.compass" in order to point
  617. # the player's compass at their first home.
  618. #
  619. # Leaving this as false will retain Essentials' original behaviour, which is to always
  620. # change the compass' direction to point towards their first home.
  621. compass-towards-home-perm: false
  622.  
  623. # Set the maximum speed for projectiles spawned with /fireball.
  624. max-projectile-speed: 8
  625.  
  626. ############################################################
  627. # +------------------------------------------------------+ #
  628. # | EssentialsEco | #
  629. # +------------------------------------------------------+ #
  630. ############################################################
  631.  
  632. # For more information, visit http://wiki.ess3.net/wiki/Essentials_Economy
  633.  
  634. # Defines the balance with which new players begin. Defaults to 0.
  635. starting-balance: 30
  636.  
  637. # worth-# defines the value of an item when it is sold to the server via /sell.
  638. # These are now defined in worth.yml
  639.  
  640. # Defines the cost to use the given commands PER USE.
  641. # Some commands like /repair have sub-costs, check the wiki for more information.
  642. command-costs:
  643. # /example costs $1000 PER USE
  644. #example: 1000
  645. # /kit tools costs $1500 PER USE
  646. #kit-tools: 1500
  647.  
  648. # Set this to a currency symbol you want to use.
  649. # Remember, if you want to use special characters in this document,
  650. # such as accented letters, you MUST save the file as UTF-8, not ANSI.
  651. currency-symbol: '$'
  652.  
  653. # Set the maximum amount of money a player can have.
  654. # The amount is always limited to 10 trillion because of the limitations of a java double.
  655. max-money: 10000000000000
  656.  
  657. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  658. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  659. min-money: -10000
  660.  
  661. # Enable this to log all interactions with trade/buy/sell signs and sell command.
  662. economy-log-enabled: false
  663.  
  664. # Minimum acceptable amount to be used in /pay.
  665. minimum-pay-amount: 0.01
  666.  
  667. # The format of currency, excluding symbols. See currency-symbol-format-locale for symbol configuration.
  668. #
  669. # "#,##0.00" is how the majority of countries display currency.
  670. #currency-format: "#,##0.00"
  671.  
  672. # Format currency symbols. Some locales use , and . interchangeably.
  673. # Some formats do not display properly in-game due to faulty Minecraft font rendering.
  674. #
  675. # For 1.234,50 use de-DE
  676. # For 1,234.50 use en-US
  677. # For 1'234,50 use fr-ch
  678. #currency-symbol-format-locale: en-US
  679.  
  680. ############################################################
  681. # +------------------------------------------------------+ #
  682. # | EssentialsHelp | #
  683. # +------------------------------------------------------+ #
  684. ############################################################
  685.  
  686. # Show other plugins commands in help.
  687. non-ess-in-help: true
  688.  
  689. # Hide plugins which do not give a permission.
  690. # You can override a true value here for a single plugin by adding a permission to a user/group.
  691. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
  692. # You can use negative permissions to remove access to just a single plugins help if the following is enabled.
  693. hide-permissionless-help: true
  694.  
  695. ############################################################
  696. # +------------------------------------------------------+ #
  697. # | EssentialsChat | #
  698. # +------------------------------------------------------+ #
  699. ############################################################
  700.  
  701. # This section requires the EssentialsChat.jar to work.
  702.  
  703. chat:
  704.  
  705. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  706. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  707. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  708. # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  709. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  710. radius: 0
  711.  
  712. # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  713. # Or you can give a group specific chat format, to give some extra variation.
  714. # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting
  715. # For EssentialsX changes, take a look at the EssentialsX wiki: https://github.com/EssentialsX/Essentials/wiki
  716.  
  717. format: '{DISPLAYNAME}: {MESSAGE}'
  718. #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'
  719. #format: '&7{PREFIX}&r {DISPLAYNAME}&r &7{SUFFIX}&r: {MESSAGE}'
  720.  
  721. group-formats:
  722. # default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
  723. # admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'
  724.  
  725. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  726. # Note: Group names are case-sensitive so you must match them up with your permission plugin.
  727.  
  728. ############################################################
  729. # +------------------------------------------------------+ #
  730. # | EssentialsProtect | #
  731. # +------------------------------------------------------+ #
  732. ############################################################
  733.  
  734. # This section requires the EssentialsProtect.jar to work.
  735.  
  736. protect:
  737.  
  738. # General physics/behavior modifications.
  739. prevent:
  740. lava-flow: false
  741. water-flow: false
  742. water-bucket-flow: false
  743. fire-spread: true
  744. lava-fire-spread: true
  745. flint-fire: false
  746. lightning-fire-spread: true
  747. portal-creation: false
  748. tnt-explosion: false
  749. tnt-playerdamage: false
  750. tnt-minecart-explosion: false
  751. tnt-minecart-playerdamage: false
  752. fireball-explosion: false
  753. fireball-fire: false
  754. fireball-playerdamage: false
  755. witherskull-explosion: false
  756. witherskull-playerdamage: false
  757. wither-spawnexplosion: false
  758. wither-blockreplace: false
  759. creeper-explosion: false
  760. creeper-playerdamage: false
  761. creeper-blockdamage: false
  762. enderdragon-blockdamage: true
  763. enderman-pickup: false
  764. villager-death: false
  765. # Monsters won't follow players.
  766. # permission essentials.protect.entitytarget.bypass disables this.
  767. entitytarget: false
  768. # Prevent certain transformations.
  769. transformation:
  770. # Prevent creepers becoming charged when struck by lightning.
  771. charged-creeper: false
  772. # Prevent villagers becoming zombie villagers.
  773. zombie-villager: false
  774. # Prevent zombie villagers being cured.
  775. villager: false
  776. # Prevent villagers becoming witches when struck by lightning.
  777. witch: false
  778. # Prevent pigs becoming zombie pigmen when struck by lightning.
  779. zombie-pigman: false
  780. # Prevent zombies turning into drowneds, and husks turning into zombies.
  781. drowned: false
  782. # Prevent mooshrooms changing colour when struck by lightning.
  783. mooshroom: false
  784. # Prevent the spawning of creatures.
  785. spawn:
  786. creeper: false
  787. skeleton: false
  788. spider: false
  789. giant: false
  790. zombie: false
  791. slime: false
  792. ghast: false
  793. pig_zombie: false
  794. enderman: false
  795. cave_spider: false
  796. silverfish: false
  797. blaze: false
  798. magma_cube: false
  799. ender_dragon: false
  800. pig: false
  801. sheep: false
  802. cow: false
  803. chicken: false
  804. squid: false
  805. wolf: false
  806. mushroom_cow: false
  807. snowman: false
  808. ocelot: false
  809. iron_golem: false
  810. villager: false
  811. wither: false
  812. bat: false
  813. witch: false
  814. horse: false
  815. phantom: false
  816.  
  817. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  818. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  819. creeper:
  820. max-height: -1
  821.  
  822. # Disable various default physics and behaviors.
  823. disable:
  824. # Should fall damage be disabled?
  825. fall: false
  826.  
  827. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  828. # They will be unable to attack users without that same permission node.
  829. pvp: false
  830.  
  831. # Should drowning damage be disabled?
  832. # (Split into two behaviors; generally, you want both set to the same value.)
  833. drown: false
  834. suffocate: false
  835.  
  836. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  837. lavadmg: false
  838.  
  839. # Should arrow damage be disabled?
  840. projectiles: false
  841.  
  842. # This will disable damage from touching cacti.
  843. contactdmg: false
  844.  
  845. # Burn, baby, burn! Should fire damage be disabled?
  846. firedmg: false
  847.  
  848. # Should the damage after hit by a lightning be disabled?
  849. lightning: false
  850.  
  851. # Should Wither damage be disabled?
  852. wither: false
  853.  
  854. # Disable weather options?
  855. weather:
  856. storm: false
  857. thunder: false
  858. lightning: false
  859.  
  860. ############################################################
  861. # +------------------------------------------------------+ #
  862. # | EssentialsAntiBuild | #
  863. # +------------------------------------------------------+ #
  864. ############################################################
  865.  
  866. # This section requires the EssentialsAntiBuild.jar to work.
  867.  
  868. # Disable various default physics and behaviors
  869. # For more information, visit http://wiki.ess3.net/wiki/AntiBuild
  870.  
  871. # Should people with build: false in permissions be allowed to build?
  872. # Set true to disable building for those people.
  873. # Setting to false means EssentialsAntiBuild will never prevent you from building.
  874. build: true
  875.  
  876. # Should people with build: false in permissions be allowed to use items?
  877. # Set true to disable using for those people.
  878. # Setting to false means EssentialsAntiBuild will never prevent you from using items.
  879. use: true
  880.  
  881. # Should we tell people they are not allowed to build?
  882. warn-on-build-disallow: true
  883.  
  884. # For which block types would you like to be alerted?
  885. # You can find a list of items at https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html.
  886. alert:
  887. on-placement: LAVA,TNT,LAVA_BUCKET
  888. on-use: LAVA_BUCKET
  889. on-break:
  890.  
  891. blacklist:
  892.  
  893. # Which blocks should people be prevented from placing?
  894. placement: LAVA,TNT,LAVA_BUCKET
  895.  
  896. # Which items should people be prevented from using?
  897. usage: LAVA_BUCKET
  898.  
  899. # Which blocks should people be prevented from breaking?
  900. break:
  901.  
  902. # Which blocks should not be pushed by pistons?
  903. piston:
  904.  
  905. # Which blocks should not be dispensed by dispensers
  906. dispenser:
  907.  
  908. ############################################################
  909. # +------------------------------------------------------+ #
  910. # | Essentials Spawn / New Players | #
  911. # +------------------------------------------------------+ #
  912. ############################################################
  913.  
  914. # This section requires essentialsspawn.jar to work.
  915.  
  916. newbies:
  917. # Should we announce to the server when someone logs in for the first time?
  918. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  919. # If not, set to ''
  920. #announce-format: ''
  921. announce-format: '&7Welcome, {DISPLAYNAME}&7!'
  922.  
  923. # When we spawn for the first time, which spawnpoint do we use?
  924. # Set to "none" if you want to use the spawn point of the world.
  925. spawnpoint: spawn
  926.  
  927. # Do we want to give users anything on first join? Set to '' to disable
  928. # This kit will be given regardless of cost and permissions, and will not trigger the kit delay.
  929. #kit: ''
  930. kit: ''
  931.  
  932. # What priority should we use for handling respawns?
  933. # Set this to none, if you want vanilla respawning behaviour.
  934. # Set this to lowest, if you want Multiverse to handle the respawning.
  935. # Set this to high, if you want EssentialsSpawn to handle the respawning.
  936. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning.
  937. respawn-listener-priority: high
  938.  
  939. # What priority should we use for handling spawning on joining the server?
  940. # See respawn-listener-priority for possible values.
  941. # Note: changing this may impact or break spawn-on-join functionality.
  942. spawn-join-listener-priority: high
  943.  
  944. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  945. respawn-at-home: true
  946.  
  947. # If no home is set, would you like to send the player to spawn? (Only applies to /home)
  948. spawn-if-no-home: true
  949.  
  950. # Teleport all joining players to the spawnpoint
  951. spawn-on-join: false
  952. # The following value of `guests` states that all players in group `guests` will be teleported to spawn when joining.
  953. #spawn-on-join: guests
  954. # The following list value states that all players in group `guests` and `admin` are to be teleported to spawn when joining.
  955. #spawn-on-join:
  956. #- guests
  957. #- admin
  958.  
  959. # End of file <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement