Advertisement
NateLogan

mc-essentials

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