Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.62 KB | None | 0 0
  1. # Shows if there is available new version on login with trademe.versioncheck permission node
  2. ShowNewVersion: false
  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: localhost
  10. # Default port is 3306
  11. mysqlPort: 3306
  12. # Database table name
  13. mysqlDatabase: trademe
  14. # Database username, usually its root
  15. mysqlUsername: root
  16. # Your mysql database password, keep it as strong as posible
  17. mysqlPassword: realystrongone
  18. # Language file you want to use
  19. Language: EN
  20. #
  21. # This will allow you to globaly disable trades with specific modes
  22. # You can always give or take trade options with permission like trademe.moneytrade or trademe.exptrade
  23. TradeModes:
  24. ItemTrade: true
  25. MoneyTrade: true
  26. ExpTrade: false
  27. McMMOTrade: false
  28. JobsTrade: false
  29. ResidenceTrade: false
  30. GriefPreventionTrade: false
  31. PlayerPointsTrade: false
  32. MyPetTrade: false
  33. KingdomsTrade: false
  34. JobsPointsTrade: false
  35. #
  36. # Time to accept trade, in seconds
  37. AcceptDelay: 15
  38. #
  39. # Time until counter ends, in seconds
  40. Confirm: 3
  41. #
  42. # Time in sec for how long after combat player can't trade
  43. NonCombat: 10
  44. #
  45. # Time in milliseconds between each click in trade inventory
  46. # Mainly to prevent to fast clicking and avoiding incorrect amount showing up because of that
  47. # Keep it at 200 as this will limit clicks to be no mo often than 5 times in one second
  48. ClickCooldown: 200
  49. #
  50. # When this set to true, players can give trade offers or accept them by sneeking and pressing right mouse button on a player
  51. ShiftRightClick: true
  52. #
  53. # You can lock quickbar and prevent players from trading from it
  54. LockQuickBar: false
  55. #
  56. # Prevent trading between game modes
  57. NoTradeBetweenGameModes: true
  58. #
  59. # If this set to true, players will be check for appropriate trade permissions between different permission groups for particular trade mode
  60. # Player should have trademe.moneytrade.[groupname] permission node to trade with that group with money
  61. # In example: player1 has Newbie group and player2 - Advanced group
  62. # player1 should have trademe.moneytrade.advanced and player2 should have trademe.moneytrade.newbie permission nodes for option to trade with money
  63. # Posible nodes: trademe.moneytrade.[groupname], trademe.exptrade.[groupname], trademe.mcmmotrade.[groupname], trademe.jobstrade.[groupname], trademe.residencetrade.[groupname]
  64. TradeGroups: false
  65. #
  66. # While this is true, Distance wont work
  67. BetweenWorlds: true
  68. #
  69. # World groups to separate trades if you have multiverse or similar plugin
  70. WorldGroups:
  71. Group1:
  72. - World
  73. - World_nether
  74. - World_the_end
  75. Group2:
  76. - ''
  77. Group3:
  78. - ''
  79. Group4:
  80. - ''
  81. Group5:
  82. - ''
  83. # Max distance players can trade to each other, BetweenWorlds should be set to false for this to work
  84. # Set 0 if you dont want to have distance restriction
  85. Distance: 0
  86. Logging:
  87. # When this set to true, all trades will be logged into database for tracking down who traded what at which time
  88. # Disable this if you are not interested in tracking this information and want to avoid having aditional database
  89. Use: true
  90. AutoPurge:
  91. Use: false
  92. # Set for how long to keep trade information in database by minutes
  93. # 43200 = 30 days
  94. # 20160 = 14 days
  95. # 10080 = 7 days
  96. # 1440 = 24 hours
  97. TimeRange: 43200
  98. Residence:
  99. # Do you want to use residence max limit
  100. # With this set to false players can have more residences than its been set up in residence config file
  101. UseMaxLimit: true
  102. Regions:
  103. # You can set in witch regions players can trade or cannot
  104. WorldGuard:
  105. Allow:
  106. Use: false
  107. List:
  108. - testRegion
  109. - testRegion2
  110. Deny:
  111. use: false
  112. List:
  113. - testRegion3
  114. - testRegion4
  115. BlockedWorlds:
  116. - testWorld
  117. - testWorld_nether
  118. # List of item id's to be blocked from trade
  119. BlockedItems:
  120. - 137
  121. - 166
  122. # List of item lore to be blocked from trade
  123. # this can be only part of line without color codes
  124. BlockedLore:
  125. - One line of lore
  126. - second line
  127. - color code not necessary
  128. # Max lvl allowed for player to have, if McMMO config files are not modified its is 1000
  129. McMMO:
  130. MaxLvl: 1000
  131. Numbers:
  132. ShortNames:
  133. # With this enabled big numbers will be shortened from 1234567 to 1m or 1.23m
  134. Enabled: false
  135. # With this enabled numbers will be shown like 1.23m instead of only 1m
  136. Show2Numbers: true
  137. '1000': k
  138. '1000000': m
  139. '1000000000': b
  140. '1000000000000': t
  141. Amounts:
  142. # All amounts used for buttons to increase/decrease
  143. # Inform players about posibility to use Shift button to rise increment by 10 times
  144. Money:
  145. '1': 1
  146. '2': 10
  147. '3': 100
  148. '4': 1000
  149. Exp:
  150. '1': 1
  151. '2': 10
  152. '3': 100
  153. '4': 1000
  154. McMMO:
  155. '1': 1
  156. '2': 100
  157. '3': 10000
  158. '4': 1000000
  159. Jobs:
  160. '1': 1
  161. '2': 100
  162. '3': 10000
  163. '4': 1000000
  164. GriefPrevention:
  165. '1': 1
  166. '2': 100
  167. '3': 10000
  168. '4': 1000000
  169. PlayerPoints:
  170. '1': 1
  171. '2': 100
  172. '3': 10000
  173. '4': 1000000
  174. Taxes:
  175. # Taxes for transfers
  176. Money:
  177. Fixed:
  178. # Fixed amount of Money will be taken during transfer
  179. Use: false
  180. Amount: 100
  181. Percentage:
  182. # Percentage amount of Money will be taken during transfer
  183. # 10.0 means user will receive 10% less money
  184. Use: false
  185. Amount: 10
  186. # Taxes for transfers
  187. Exp:
  188. Fixed:
  189. # Fixed amount of Exp will be taken during transfer
  190. Use: false
  191. Amount: 100
  192. Percentage:
  193. # Percentage amount of Exp will be taken during transfer
  194. # 10.0 means user will receive 10% less money
  195. Use: false
  196. Amount: 10
  197. McMMO:
  198. Fixed:
  199. Use: false
  200. Amount: 100
  201. Percentage:
  202. Use: false
  203. Amount: 10
  204. Jobs:
  205. Fixed:
  206. Use: false
  207. Amount: 100
  208. Percentage:
  209. Use: false
  210. Amount: 10
  211. GriefPrevention:
  212. Fixed:
  213. Use: false
  214. Amount: 100
  215. Percentage:
  216. Use: false
  217. Amount: 10
  218. # Taxes for transfers
  219. PlayerPoints:
  220. Fixed:
  221. # Fixed amount of PlayerPoints will be taken during transfer
  222. Use: false
  223. Amount: 100
  224. Percentage:
  225. # Percentage amount of PlayerPoints will be taken during transfer
  226. # 10.0 means user will receive 10% less money
  227. Use: false
  228. Amount: 10
  229. Buttons:
  230. Confirm:
  231. # Id/meta used for confirm button
  232. Confirmed:
  233. Id: 160
  234. Meta: 5
  235. UnConfirmed:
  236. Id: 160
  237. Meta: 14
  238. Counter:
  239. # Id/meta used for column counter buttons
  240. ColumnOn:
  241. Id: 160
  242. Meta: 5
  243. ColumnOff:
  244. Id: 160
  245. Meta: 15
  246. # Filled up when iten trading is turned off
  247. ItemFields:
  248. Id: 160
  249. Meta: 7
  250. # Id/meta used for empty slot to fillup
  251. EmptySlot:
  252. Id: 160
  253. Meta: 8
  254. TradeModes:
  255. Exp:
  256. 1Amount: BUCKET:0
  257. 2Amount: MILK_BUCKET:0
  258. 3Amount: WATER_BUCKET:0
  259. 4Amount: LAVA_BUCKET:0
  260. Offered: EXP_BOTTLE:0
  261. Sub:
  262. NA:
  263. OfferOff: EXP_BOTTLE:0
  264. OfferOn: EXP_BOTTLE:0
  265. Residence:
  266. Offered: STAINED_GLASS:5
  267. PlayerPoints:
  268. 1Amount: WOOL:1
  269. 2Amount: WOOL:2
  270. 3Amount: WOOL:3
  271. 4Amount: WOOL:4
  272. Offered: ENCHANTED_BOOK:0
  273. Sub:
  274. NA:
  275. OfferOff: ENCHANTED_BOOK:0
  276. OfferOn: ENCHANTED_BOOK:0
  277. Money:
  278. 1Amount: GOLD_NUGGET:0
  279. 2Amount: GOLD_INGOT:0
  280. 3Amount: GOLD_BLOCK:0
  281. 4Amount: DIAMOND:0
  282. Offered: GOLD_INGOT:0
  283. Sub:
  284. NA:
  285. OfferOff: EYE_OF_ENDER:0
  286. OfferOn: EYE_OF_ENDER:0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement