Advertisement
Guest User

Untitled

a guest
Jul 31st, 2013
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.09 KB | None | 0 0
  1. # Core configurable options for LWC
  2. core:
  3.  
  4. # The language LWC will use, specified by the shortname. For example, English = en, French = fr, German = de,
  5. # and so on
  6. locale: en
  7.  
  8. # How often updates are batched to the database (in seconds). If set to a higher value than 10, you may have
  9. # some unexpected results, especially if your server is prone to crashing.
  10. flushInterval: 10
  11.  
  12. # LWC regularly caches protections locally to prevent the database from being queried as often. The default is 10000
  13. # and for most servers is OK. LWC will also fill up to <precache> when the server is started automatically.
  14. cacheSize: 10000
  15.  
  16. # How many protections are precached on startup. If set to -1, it will use the cacheSize value instead and precache
  17. # as much as possible
  18. precache: -1
  19.  
  20. # If true, players will be sent a notice in their chat box when they open a protection they have access to, but
  21. # not their own unless <showMyNotices> is set to true
  22. showNotices: true
  23.  
  24. # If true, players will be sent a notice in their chat box when they open a protection they own.
  25. showMyNotices: false
  26.  
  27. # If true, ops will be considered LWC admins (e.g with a Permissions plugin, considered to have lwc.admin) and thus
  28. # will have very destructive LWC commands.
  29. opIsLWCAdmin: true
  30.  
  31. # If true, LWC will not log history about protections. If you are using LWC-Economy and this is disabled, you will
  32. # NOT receive refunds for purchased protections
  33. disableHistory: false
  34.  
  35. # if true, LWC will only allow protections to be created inside of Towns via the Towny plugin
  36. townyBorders: false
  37.  
  38. # The permission node prefix that is used to match player groups when
  39. # no supported permission plugin is found, e.g group.vip matches the player's group as vip
  40. groupPrefix: 'group.'
  41.  
  42. # If you will be notified of LWC updates
  43. updateNotifier: true
  44.  
  45. # "Fun" options
  46. optional:
  47.  
  48. # Protections are only active when a player is online.
  49. # So if a player is offline, anyone can access it. If the player is online, it functions normally
  50. onlyProtectWhenOwnerIsOnline: false
  51.  
  52. # Protections are only active when a player is offline
  53. onlyProtectWhenOwnerIsOffline: false
  54.  
  55. # Block IDs to automatically blocks from /lwc admin purge, /lwc admin expire, etc.
  56. exemptBlocks: []
  57.  
  58. # Opt out of the optional metrics tooling
  59. # Available online: http://metrics.griefcraft.com/plugin/LWC/
  60. optOut: false
  61.  
  62. # Blocks that cannot be placed around someone else's protection. This is most useful
  63. blacklistedBlocks:
  64. - 166
  65.  
  66. # Players that are blocked from destroying any blocks protected by LWC. Mainly useful for MCPC
  67. # where mods can remove blocks and try to break the block by sending an event first (e.g turtle)
  68. blacklistedPlayers:
  69. - plr
  70.  
  71. # If protections limits will be enabled (defaults to unlimited protections)
  72. useProtectionLimits: true
  73.  
  74. # Database information for LWC
  75. database:
  76.  
  77. # The database adapter to use, for example sqlite (default) or mysql
  78. adapter: mysql
  79.  
  80. # This is strictly for SQLite only and should be left alone. When changing to MySQL and this is left intact,
  81. # LWC will automatically convert your protections from SQLite to MySQL
  82. path: 'plugins/LWC/lwc.db'
  83.  
  84. # The MySQL host. You can specify a non-default port (3306) by adding :port, e.g host: 'localhost:3307'
  85. host: 'sql3.freemysqlhosting.net'
  86.  
  87. # The database LWC should use to store data (not necessary for SQLite)
  88. database: 'sql315258'
  89.  
  90. # The username LWC should use to connect to the server with (not necessary for SQLite)
  91. username: 'sql315258'
  92.  
  93. # The password LWC should use to connect to the server with (not necessary for SQLite)
  94. password: 'xH8!aR3!'
  95.  
  96. # The prefix for LWC tables. For example, a prefix of 'lwc_' will make
  97. # the protections table show up as lwc_protections
  98. prefix: 'lwc_prot3ch'
  99.  
  100. # The interval between pinging the MySQL server to keep it alive (in seconds)
  101. ping_interval: 300
  102.  
  103. # The protections nodes allows you to define, remove and modify which blocks LWC is allowed to protect
  104. # This means that you could make any block you want protectable, or remove existing protectable blocks
  105. # (e.g trap doors, etc.)
  106. protections:
  107. # These values serve as default values for the protections defined under blocks
  108.  
  109. # If true, the default behaviour will be to BLOCK redstone to protections, and /credstone on (Protection Flag)
  110. # will ALLOW redstone to the protection
  111. # If false, the default behaviour will be to ALLOW redstone to protections, and /credstone on will
  112. # BLOCK redstone to the protection
  113. denyRedstone: false
  114.  
  115. # If true, hoppers will by blocked by DEFAULT and /chopper on will enable hopper use on them
  116. # If false, hoppers will be enabled by DEFAULT and /chopper on will disable hopper use on them
  117. denyHoppers: true
  118.  
  119. # Settable to private, public, or off. It defines what protections are registered as when you place them on
  120. # the ground
  121. autoRegister: off
  122.  
  123. # Used in very specific use-cases: makes LWC ignore block destruction for the given block or all blocks, allowing
  124. # players to remove the block and resulting protection.
  125. ignoreBlockDestruction: false
  126.  
  127. # If left clicking should be ignored by LWC. An example of this would be to add ignoreLeftClick under a note block
  128. # protection to allow players to play the note block's note, but not change the note (which is done via right click,
  129. # which would be blocked by LWC.)
  130. ignoreLeftClick: false
  131.  
  132. # If right clicking should be ignored by LWC.
  133. ignoreRightClick: false
  134.  
  135. # If LWC should ignore explosions to the protection. For example, you could allow Doors to be blown by explosions,
  136. # but not chests.
  137. ignoreExplosions: false
  138.  
  139. # If entities - such as zombies - are allowed to break down doors
  140. allowEntityBreakDoor: false
  141.  
  142. # If entities - such as villagers - should be allowed to interact with protections (i.e doors)
  143. allowEntityInteract: false
  144.  
  145. # Creation messages and protection notices will not be shown for this protection
  146. quiet: false
  147.  
  148. # Set to true to prevent users from modifying a protection they own of a certain type (or any protection).
  149. # ONLY lwc admins will be able to modify the protection
  150. readonly-modify: false
  151.  
  152. # Set to true to prevent users from removing a protection they own of a certain type (or any protection).
  153. # ONLY lwc admins will be able to modify the protection
  154. readonly-remove: false
  155.  
  156. # Current and custom protections are defined here by their block name or id
  157. # If you use the Id, you MUST encase it in quotes, for example (chest):
  158. # '54':
  159. # enabled: true
  160. # The custom protection must also have enabled: true under it for it to function in the world
  161. blocks:
  162. chest:
  163. enabled: true
  164. autoRegister: private
  165. furnace:
  166. enabled: true
  167. autoRegister: private
  168. dispenser:
  169. enabled: true
  170. autoRegister: private
  171. sign:
  172. enabled: true
  173. autoRegister: private
  174. wooden_door:
  175. enabled: true
  176. autoRegister: private
  177. iron_door:
  178. enabled: true
  179. autoRegister: private
  180. trap_door:
  181. enabled: true
  182. autoRegister: private
  183. fence_gate:
  184. enabled: true
  185. '1973:4':
  186. enabled: true
  187. autoRegister: private
  188. '1973:5':
  189. enabled: true
  190. autoRegister: private
  191. '1973:6':
  192. enabled: true
  193. autoRegister: private
  194. '1973:7':
  195. enabled: true
  196. autoRegister: private
  197. '1973:8':
  198. enabled: true
  199. autoRegister: private
  200. '1973:9':
  201. enabled: true
  202. autoRegister: private
  203. '1973:10':
  204. enabled: true
  205. autoRegister: private
  206. '1973:13':
  207. enabled: true
  208. autoRegister: private
  209. '1973:14':
  210. enabled: true
  211. autoRegister: private
  212. '1973:15':
  213. enabled: true
  214. autoRegister: private
  215. '1973:16':
  216. enabled: true
  217. autoRegister: private
  218. '1973:17':
  219. enabled: true
  220. autoRegister: private
  221. '1973:18':
  222. enabled: true
  223. autoRegister: private
  224. '1973:19':
  225. enabled: true
  226. autoRegister: private
  227. '1973:20':
  228. enabled: true
  229. autoRegister: private
  230. '1973:21':
  231. enabled: true
  232. autoRegister: private
  233. '1973:22':
  234. enabled: true
  235. autoRegister: private
  236. '1973:23':
  237. enabled: true
  238. autoRegister: private
  239. '1973:24':
  240. enabled: true
  241. autoRegister: private
  242. '1973:25':
  243. enabled: true
  244. autoRegister: private
  245. '1973:26':
  246. enabled: true
  247. autoRegister: private
  248. '1973:27':
  249. enabled: true
  250. autoRegister: private
  251. '1973:28':
  252. enabled: true
  253. autoRegister: private
  254. '1973:29':
  255. enabled: true
  256. autoRegister: private
  257. '1973:30':
  258. enabled: true
  259. autoRegister: private
  260. '1973:31':
  261. enabled: true
  262. autoRegister: private
  263. '1973:32':
  264. enabled: true
  265. autoRegister: private
  266. '1973:33':
  267. enabled: true
  268. autoRegister: private
  269. '1973:34':
  270. enabled: true
  271. autoRegister: private
  272. '1973:35':
  273. enabled: true
  274. autoRegister: private
  275. '1973:36':
  276. enabled: true
  277. autoRegister: private
  278. '1973:37':
  279. enabled: true
  280. autoRegister: private
  281. '1973:38':
  282. enabled: true
  283. autoRegister: private
  284. '1973:39':
  285. enabled: true
  286. autoRegister: private
  287. '1973:40':
  288. enabled: true
  289. autoRegister: private
  290. '1973:41':
  291. enabled: true
  292. autoRegister: private
  293. '1973:42':
  294. enabled: true
  295. autoRegister: private
  296. '1973:43':
  297. enabled: true
  298. autoRegister: private
  299. '1973:44':
  300. enabled: true
  301. autoRegister: private
  302. '1973:45':
  303. enabled: true
  304. autoRegister: private
  305. '1973:46':
  306. enabled: true
  307. autoRegister: private
  308. '1973:47':
  309. enabled: true
  310. autoRegister: private
  311. '1973:48':
  312. enabled: true
  313. autoRegister: private
  314. '1973:49':
  315. enabled: true
  316. autoRegister: private
  317. '1973:50':
  318. enabled: true
  319. autoRegister: private
  320. '1973:51':
  321. enabled: true
  322. autoRegister: private
  323. '1973:52':
  324. enabled: true
  325. autoRegister: private
  326. '1973:53':
  327. enabled: true
  328. autoRegister: private
  329. '1973:54':
  330. enabled: true
  331. autoRegister: private
  332. '1973:55':
  333. enabled: true
  334. autoRegister: private
  335. '1973:56':
  336. enabled: true
  337. autoRegister: private
  338. '1973:57':
  339. enabled: true
  340. autoRegister: private
  341. '1973:58':
  342. enabled: true
  343. autoRegister: private
  344. '1973:59':
  345. enabled: true
  346. autoRegister: private
  347. '1973:60':
  348. enabled: true
  349. autoRegister: private
  350. '1973:61':
  351. enabled: true
  352. autoRegister: private
  353. '1973:62':
  354. enabled: true
  355. autoRegister: private
  356. '1973:63':
  357. enabled: true
  358. autoRegister: private
  359. '1973:64':
  360. enabled: true
  361. autoRegister: private
  362. '1973:65':
  363. enabled: true
  364. autoRegister: private
  365. '1973:66':
  366. enabled: true
  367. autoRegister: private
  368. '1973:67':
  369. enabled: true
  370. autoRegister: private
  371. '1973:68':
  372. enabled: true
  373. autoRegister: private
  374. '1973:69':
  375. enabled: true
  376. autoRegister: private
  377. '1973:70':
  378. enabled: true
  379. autoRegister: private
  380. '1973:71':
  381. enabled: true
  382. autoRegister: private
  383. '1973:72':
  384. enabled: true
  385. autoRegister: private
  386. '1973:73':
  387. enabled: true
  388. autoRegister: private
  389. '1973:74':
  390. enabled: true
  391. autoRegister: private
  392. '1973:75':
  393. enabled: true
  394. autoRegister: private
  395. '1973:76':
  396. enabled: true
  397. autoRegister: private
  398. '1973:77':
  399. enabled: true
  400. autoRegister: private
  401. '1973:78':
  402. enabled: true
  403. autoRegister: private
  404. '1973:79':
  405. enabled: true
  406. autoRegister: private
  407. '1973:80':
  408. enabled: true
  409. autoRegister: private
  410. '1973:81':
  411. enabled: true
  412. autoRegister: private
  413. '1973:82':
  414. enabled: true
  415. autoRegister: private
  416. '1973:83':
  417. enabled: true
  418. autoRegister: private
  419. '1973:84':
  420. enabled: true
  421. autoRegister: private
  422. '1973:85':
  423. enabled: true
  424. autoRegister: private
  425. '1973:86':
  426. enabled: true
  427. autoRegister: private
  428. '1973:87':
  429. enabled: true
  430. autoRegister: private
  431. '1973:88':
  432. enabled: true
  433. autoRegister: private
  434. '1973:89':
  435. enabled: true
  436. autoRegister: private
  437. '1973:90':
  438. enabled: true
  439. autoRegister: private
  440. '1973:91':
  441. enabled: true
  442. autoRegister: private
  443. '1973:92':
  444. enabled: true
  445. autoRegister: private
  446. '1973:93':
  447. enabled: true
  448. autoRegister: private
  449. '1973:94':
  450. enabled: true
  451. autoRegister: private
  452. '1973:95':
  453. enabled: true
  454. autoRegister: private
  455. '1973:96':
  456. enabled: true
  457. autoRegister: private
  458. '1973:97':
  459. enabled: true
  460. autoRegister: private
  461. '1973:98':
  462. enabled: true
  463. autoRegister: private
  464. '1973:99':
  465. enabled: true
  466. autoRegister: private
  467. '1973:100':
  468. enabled: true
  469. autoRegister: private
  470. '1973::101':
  471. enabled: true
  472. autoRegister: private
  473. '1973::102':
  474. enabled: true
  475. autoRegister: private
  476. '1973::103':
  477. enabled: true
  478. autoRegister: private
  479. '1973::104':
  480. enabled: true
  481. autoRegister: private
  482. '1973:105':
  483. enabled: true
  484. autoRegister: private
  485. '1973:106':
  486. enabled: true
  487. autoRegister: private
  488. '1973:107':
  489. enabled: true
  490. autoRegister: private
  491. '1973:108':
  492. enabled: true
  493. autoRegister: private
  494. '1973:109':
  495. enabled: true
  496. autoRegister: private
  497. '1973:110':
  498. enabled: true
  499. autoRegister: private
  500.  
  501. modes:
  502. droptransfer:
  503. enabled: true
  504.  
  505. # allow items to be transferred across world boundaries
  506. crossWorld: false
  507. persist:
  508. enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement