Advertisement
Chasingu

config.yml for Essentials

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