Advertisement
Guest User

Untitled

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