Advertisement
Guest User

Untitled

a guest
Oct 11th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.41 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: 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. KingdomsTrade: false
  26. GriefPreventionTrade: false
  27. MoneyTrade: true
  28. JobsPointsTrade: false
  29. MyPetTrade: false
  30. McMMOTrade: false
  31. ResidenceTrade: false
  32. ExpTrade: false
  33. JobsTrade: false
  34. PlayerPointsTrade: 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. Exp:
  143. '1': 1.0
  144. '2': 100.0
  145. '3': 10000.0
  146. '4': 1000000.0
  147. # All amounts used for buttons to increase/decrease
  148. # Inform players about posibility to use Shift button to rise increment by 10 times
  149. Money:
  150. '1': 1.0
  151. '2': 100.0
  152. '3': 10000.0
  153. '4': 1000000.0
  154. Taxes:
  155. # Taxes for transfers
  156. Exp:
  157. Fixed:
  158. # Fixed amount of Exp will be taken during transfer
  159. Use: false
  160. Amount: 100
  161. Percentage:
  162. # Percentage amount of Exp will be taken during transfer
  163. # 10.0 means user will receive 10% less money
  164. Use: false
  165. Amount: 10
  166. # Taxes for transfers
  167. Money:
  168. Fixed:
  169. # Fixed amount of Money will be taken during transfer
  170. Use: false
  171. Amount: 100
  172. Percentage:
  173. # Percentage amount of Money will be taken during transfer
  174. # 10.0 means user will receive 10% less money
  175. Use: false
  176. Amount: 10
  177. Buttons:
  178. Confirm:
  179. # Id/meta used for confirm button
  180. Confirmed:
  181. Id: 160
  182. Meta: 5
  183. UnConfirmed:
  184. Id: 160
  185. Meta: 14
  186. Counter:
  187. # Id/meta used for column counter buttons
  188. ColumnOn:
  189. Id: 160
  190. Meta: 5
  191. ColumnOff:
  192. Id: 160
  193. Meta: 15
  194. # Filled up when iten trading is turned off
  195. ItemFields:
  196. Id: 160
  197. Meta: 7
  198. # Id/meta used for empty slot to fillup
  199. EmptySlot:
  200. Id: 160
  201. Meta: 8
  202. TradeModes:
  203. Exp:
  204. 1Amount: BUCKET:0
  205. 2Amount: MILK_BUCKET:0
  206. 3Amount: WATER_BUCKET:0
  207. 4Amount: LAVA_BUCKET:0
  208. Offered: EXP_BOTTLE:0
  209. Sub:
  210. NA:
  211. OfferOff: EXP_BOTTLE:0
  212. OfferOn: EXP_BOTTLE:0
  213. Money:
  214. 1Amount: GOLD_NUGGET:0
  215. 2Amount: GOLD_INGOT:0
  216. 3Amount: GOLD_BLOCK:0
  217. 4Amount: DIAMOND:0
  218. Offered: GOLD_INGOT:0
  219. Sub:
  220. NA:
  221. OfferOff: EYE_OF_ENDER:0
  222. OfferOn: EYE_OF_ENDER:0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement