Advertisement
Guest User

Untitled

a guest
Sep 9th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.90 KB | None | 0 0
  1. # Shows if there is available new version on login with trademe.versioncheck permission node
  2. ShowNewVersion: true
  3. DataBase:
  4. # Do you want to use Mysql database system or SQLite
  5. # Use: mysql or sqlite
  6. DataBaseType: sqlite
  7. # Not usable if sqlite file system chosen
  8. # Usually localhost or 127.0.0.1
  9. mysqlHost: sqllite
  10. # Default port is 3306
  11. mysqlPort: 3306
  12. # Database table name
  13. mysqlDatabase: sqllite
  14. # Database username, usually its root
  15. mysqlUsername: sqllite
  16. # Your mysql database password, keep it as strong as posible
  17. mysqlPassword: sqllite
  18. # Language file you want to use
  19. Language: EN
  20. # Set to true if you have bungeecord network and want to use trading between servers
  21. BungeeCord: false
  22. #
  23. # This will allow you to globaly disable trades with specific modes
  24. # You can always give or take trade options with permission like trademe.moneytrade or trademe.exptrade
  25. TradeModes:
  26. ItemTrade: true
  27. MoneyTrade: true
  28. ExpTrade: false
  29. McMMOTrade: false
  30. JobsTrade: false
  31. JobsPointsTrade: true
  32. ResidenceTrade: false
  33. GriefPreventionTrade: false
  34. PlayerPointsTrade: true
  35. MyPetTrade: true
  36. KingdomsTrade: true
  37. #
  38. # Time to accept trade, in seconds
  39. AcceptDelay: 15
  40. #
  41. # Time until counter ends, in seconds
  42. Confirm: 3
  43. #
  44. # Time in sec for how long after combat player can't trade
  45. NonCombat: 10
  46. #
  47. # Time in milliseconds between each click in trade inventory
  48. # Mainly to prevent to fast clicking and avoiding incorrect amount showing up because of that
  49. # Keep it at 200 as this will limit clicks to be no mo often than 5 times in one second
  50. ClickCooldown: 200
  51. #
  52. # When this set to true, players can give trade offers or accept them by sneeking and pressing right mouse button on a player
  53. ShiftRightClick: true
  54. #
  55. # You can lock quickbar and prevent players from trading from it
  56. LockQuickBar: false
  57. #
  58. # Prevent trading between game modes
  59. NoTradeBetweenGameModes: true
  60. #
  61. # If this set to true, players will be check for appropriate trade permissions between different permission groups for particular trade mode
  62. # Player should have trademe.moneytrade.[groupname] permission node to trade with that group with money
  63. # In example: player1 has Newbie group and player2 - Advanced group
  64. # player1 should have trademe.moneytrade.advanced and player2 should have trademe.moneytrade.newbie permission nodes for option to trade with money
  65. # Posible nodes: trademe.moneytrade.[groupname], trademe.exptrade.[groupname], trademe.mcmmotrade.[groupname], trademe.jobstrade.[groupname], trademe.residencetrade.[groupname]
  66. TradeGroups: false
  67. #
  68. # While this is true, Distance wont work
  69. BetweenWorlds: true
  70. #
  71. # World groups to separate trades if you have multiverse or similar plugin
  72. WorldGroups:
  73. Group1:
  74. - world
  75. - world_nether
  76. - skyworld
  77. Group2:
  78. - ''
  79. Group3:
  80. - ''
  81. Group4:
  82. - ''
  83. Group5:
  84. - ''
  85. # Max distance players can trade to each other, BetweenWorlds should be set to false for this to work
  86. # Set 0 if you dont want to have distance restriction
  87. Distance: 0
  88. AutoPurge:
  89. Use: true
  90. # Set for how long to keep trade information in database by minutes
  91. # 43200 = 30 days
  92. # 20160 = 14 days
  93. # 10080 = 7 days
  94. # 1440 = 24 hours
  95. TimeRange: 43200
  96. Residence:
  97. # Do you want to use residence max limit
  98. # With this set to false players can have more residences than its been set up in residence config file
  99. UseMaxLimit: false
  100. Regions:
  101. # You can set in witch regions players can trade or cannot
  102. WorldGuard:
  103. Allow:
  104. Use: false
  105. List:
  106. - testRegion
  107. - testRegion2
  108. Deny:
  109. use: false
  110. List:
  111. - testRegion3
  112. - testRegion4
  113. BlockedWorlds:
  114. - testWorld
  115. - testWorld_nether
  116. # List of item id's to be blocked from trade
  117. BlockedItems:
  118. - 137
  119. - 166
  120. - 323
  121. - 99
  122. - 100
  123. # List of item lore to be blocked from trade
  124. # this can be only part of line without color codes
  125. BlockedLore:
  126. - One line of lore
  127. - second line
  128. - color code not necessary
  129. # This should be same as in McMMO experiance.yml file
  130. McMMO:
  131. base: 1020
  132. multiplier: 20
  133. Numbers:
  134. ShortNames:
  135. # With this enabled big numbers will be shortened from 1234567 to 1m or 1.23m
  136. Enabled: true
  137. # With this enabled numbers will be shown like 1.23m instead of only 1m
  138. Show2Numbers: true
  139. '1000': bin
  140. '1000000': milyon
  141. '1000000000': milyar
  142. '1000000000000': trilyon
  143. Amounts:
  144. # All amounts used for buttons to increase/decrease
  145. # Inform players about posibility to use Shift button to rise increment by 10 times
  146. Money:
  147. '1': 1
  148. '2': 100
  149. '3': 10000
  150. '4': 1000000
  151. Exp:
  152. '1': 1
  153. '2': 100
  154. '3': 10000
  155. '4': 1000000
  156. McMMO:
  157. '1': 1
  158. '2': 100
  159. '3': 10000
  160. '4': 1000000
  161. Jobs:
  162. '1': 1
  163. '2': 100
  164. '3': 10000
  165. '4': 1000000
  166. JobsPoints:
  167. '1': 1
  168. '2': 100
  169. '3': 10000
  170. '4': 1000000
  171. GriefPrevention:
  172. '1': 1
  173. '2': 100
  174. '3': 10000
  175. '4': 1000000
  176. PlayerPoints:
  177. '1': 1
  178. '2': 100
  179. '3': 10000
  180. '4': 1000000
  181. Kingdoms:
  182. '1': 1
  183. '2': 100
  184. '3': 10000
  185. '4': 1000000
  186. Taxes:
  187. # Taxes for transfers
  188. Money:
  189. Fixed:
  190. # Fixed amount of Money will be taken during transfer
  191. Use: false
  192. Amount: 100
  193. Percentage:
  194. # Percentage amount of Money will be taken during transfer
  195. # 10.0 means user will receive 10% less money
  196. Use: false
  197. Amount: 10
  198. # Taxes for transfers
  199. Exp:
  200. Fixed:
  201. # Fixed amount of Exp will be taken during transfer
  202. Use: false
  203. Amount: 100
  204. Percentage:
  205. # Percentage amount of Exp will be taken during transfer
  206. # 10.0 means user will receive 10% less money
  207. Use: false
  208. Amount: 10
  209. # Taxes for transfers
  210. McMMO:
  211. Fixed:
  212. # Fixed amount of McMMO will be taken during transfer
  213. Use: false
  214. Amount: 100
  215. Percentage:
  216. # Percentage amount of McMMO will be taken during transfer
  217. # 10.0 means user will receive 10% less money
  218. Use: false
  219. Amount: 10
  220. # Taxes for transfers
  221. Jobs:
  222. Fixed:
  223. # Fixed amount of Jobs will be taken during transfer
  224. Use: false
  225. Amount: 100
  226. Percentage:
  227. # Percentage amount of Jobs will be taken during transfer
  228. # 10.0 means user will receive 10% less money
  229. Use: false
  230. Amount: 10
  231. # Taxes for transfers
  232. JobsPoints:
  233. Fixed:
  234. # Fixed amount of JobsPoints will be taken during transfer
  235. Use: false
  236. Amount: 100
  237. Percentage:
  238. # Percentage amount of JobsPoints will be taken during transfer
  239. # 10.0 means user will receive 10% less money
  240. Use: false
  241. Amount: 10
  242. # Taxes for transfers
  243. GriefPrevention:
  244. Fixed:
  245. # Fixed amount of GriefPrevention will be taken during transfer
  246. Use: false
  247. Amount: 100
  248. Percentage:
  249. # Percentage amount of GriefPrevention will be taken during transfer
  250. # 10.0 means user will receive 10% less money
  251. Use: false
  252. Amount: 10
  253. # Taxes for transfers
  254. PlayerPoints:
  255. Fixed:
  256. # Fixed amount of PlayerPoints will be taken during transfer
  257. Use: false
  258. Amount: 100
  259. Percentage:
  260. # Percentage amount of PlayerPoints will be taken during transfer
  261. # 10.0 means user will receive 10% less money
  262. Use: false
  263. Amount: 10
  264. # Taxes for transfers
  265. Kingdoms:
  266. Fixed:
  267. # Fixed amount of Kingdoms will be taken during transfer
  268. Use: false
  269. Amount: 100
  270. Percentage:
  271. # Percentage amount of Kingdoms will be taken during transfer
  272. # 10.0 means user will receive 10% less money
  273. Use: false
  274. Amount: 10
  275. Buttons:
  276. Confirm:
  277. # Id/meta used for confirm button
  278. Confirmed:
  279. Id: 160
  280. Meta: 5
  281. UnConfirmed:
  282. Id: 160
  283. Meta: 14
  284. Counter:
  285. # Id/meta used for column counter buttons
  286. ColumnOn:
  287. Id: 160
  288. Meta: 5
  289. ColumnOff:
  290. Id: 160
  291. Meta: 15
  292. # Filled up when iten trading is turned off
  293. ItemFields:
  294. Id: 160
  295. Meta: 7
  296. # Id/meta used for empty slot to fillup
  297. EmptySlot:
  298. Id: 160
  299. Meta: 8
  300. Money:
  301. '1':
  302. Id: 371
  303. Meta: 0
  304. '2':
  305. Id: 266
  306. Meta: 0
  307. '3':
  308. Id: 41
  309. Meta: 0
  310. '4':
  311. Id: 264
  312. Meta: 0
  313. OfferOff:
  314. Id: 368
  315. Meta: 0
  316. OfferOn:
  317. Id: 381
  318. Meta: 0
  319. Offered:
  320. Id: 266
  321. Meta: 0
  322. Exp:
  323. '1':
  324. Id: 325
  325. Meta: 0
  326. '2':
  327. Id: 335
  328. Meta: 0
  329. '3':
  330. Id: 326
  331. Meta: 0
  332. '4':
  333. Id: 327
  334. Meta: 0
  335. OfferOff:
  336. Id: 374
  337. Meta: 0
  338. OfferOn:
  339. Id: 384
  340. Meta: 0
  341. Offered:
  342. Id: 384
  343. Meta: 0
  344. JobsPoints:
  345. '1':
  346. Id: 97
  347. Meta: 0
  348. '2':
  349. Id: 97
  350. Meta: 1
  351. '3':
  352. Id: 97
  353. Meta: 2
  354. '4':
  355. Id: 97
  356. Meta: 3
  357. OfferOff:
  358. Id: 89
  359. Meta: 0
  360. OfferOn:
  361. Id: 123
  362. Meta: 0
  363. Offered:
  364. Id: 123
  365. Meta: 0
  366. McMMO:
  367. '1':
  368. Id: 35
  369. Meta: 0
  370. '2':
  371. Id: 35
  372. Meta: 8
  373. '3':
  374. Id: 35
  375. Meta: 7
  376. '4':
  377. Id: 35
  378. Meta: 15
  379. Offered:
  380. Id: 276
  381. Meta: 0
  382. Acrobatics:
  383. OfferOff:
  384. Id: 301
  385. Meta: 0
  386. OfferOn:
  387. Id: 313
  388. Meta: 0
  389. Alchemy:
  390. OfferOff:
  391. Id: 373
  392. Meta: 0
  393. OfferOn:
  394. Id: 373
  395. Meta: 8230
  396. Archery:
  397. OfferOff:
  398. Id: 280
  399. Meta: 0
  400. OfferOn:
  401. Id: 261
  402. Meta: 0
  403. Axes:
  404. OfferOff:
  405. Id: 271
  406. Meta: 0
  407. OfferOn:
  408. Id: 279
  409. Meta: 0
  410. Excavation:
  411. OfferOff:
  412. Id: 269
  413. Meta: 0
  414. OfferOn:
  415. Id: 277
  416. Meta: 0
  417. Fishing:
  418. OfferOff:
  419. Id: 350
  420. Meta: 0
  421. OfferOn:
  422. Id: 346
  423. Meta: 0
  424. Herbalism:
  425. OfferOff:
  426. Id: 290
  427. Meta: 0
  428. OfferOn:
  429. Id: 293
  430. Meta: 0
  431. Mining:
  432. OfferOff:
  433. Id: 270
  434. Meta: 0
  435. OfferOn:
  436. Id: 278
  437. Meta: 0
  438. Repair:
  439. OfferOff:
  440. Id: 265
  441. Meta: 0
  442. OfferOn:
  443. Id: 42
  444. Meta: 0
  445. Swords:
  446. OfferOff:
  447. Id: 268
  448. Meta: 0
  449. OfferOn:
  450. Id: 276
  451. Meta: 0
  452. Taming:
  453. OfferOff:
  454. Id: 352
  455. Meta: 0
  456. OfferOn:
  457. Id: 420
  458. Meta: 0
  459. Unarmed:
  460. OfferOff:
  461. Id: 322
  462. Meta: 0
  463. OfferOn:
  464. Id: 322
  465. Meta: 1
  466. Woodcutting:
  467. OfferOff:
  468. Id: 162
  469. Meta: 1
  470. OfferOn:
  471. Id: 17
  472. Meta: 2
  473. Jobs:
  474. '1':
  475. Id: 383
  476. Meta: 56
  477. '2':
  478. Id: 383
  479. Meta: 51
  480. '3':
  481. Id: 383
  482. Meta: 67
  483. '4':
  484. Id: 383
  485. Meta: 58
  486. Offered:
  487. Id: 293
  488. Meta: 0
  489. Residence:
  490. Offered:
  491. Id: 95
  492. Meta: 5
  493. MyPet:
  494. Offered:
  495. Id: 383
  496. Meta: 51
  497. GriefPrevention:
  498. '1':
  499. Id: 171
  500. Meta: 0
  501. '2':
  502. Id: 171
  503. Meta: 8
  504. '3':
  505. Id: 171
  506. Meta: 7
  507. '4':
  508. Id: 171
  509. Meta: 15
  510. OfferOff:
  511. Id: 269
  512. Meta: 0
  513. OfferOn:
  514. Id: 284
  515. Meta: 0
  516. Offered:
  517. Id: 284
  518. Meta: 0
  519. PlayerPoints:
  520. '1':
  521. Id: 189
  522. Meta: 0
  523. '2':
  524. Id: 190
  525. Meta: 0
  526. '3':
  527. Id: 188
  528. Meta: 0
  529. '4':
  530. Id: 191
  531. Meta: 0
  532. OfferOff:
  533. Id: 340
  534. Meta: 0
  535. OfferOn:
  536. Id: 403
  537. Meta: 0
  538. Offered:
  539. Id: 403
  540. Meta: 0
  541. Kingdoms:
  542. '1':
  543. Id: 18
  544. Meta: 0
  545. '2':
  546. Id: 18
  547. Meta: 1
  548. '3':
  549. Id: 18
  550. Meta: 2
  551. '4':
  552. Id: 18
  553. Meta: 3
  554. OfferOff:
  555. Id: 33
  556. Meta: 0
  557. OfferOn:
  558. Id: 29
  559. Meta: 0
  560. Offered:
  561. Id: 29
  562. Meta: 0
  563. Debug: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement