Advertisement
Guest User

Untitled

a guest
Aug 28th, 2017
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.27 KB | None | 0 0
  1. # +-------------------------------------------------------------------+ #
  2. # | Blacklisted Pokemon | #
  3. # +-------------------------------------------------------------------+ #
  4. # | Here, you can define pokemon which would be unable to be listed | #
  5. # | in the GTS listings. Simply just specify the name of the pokemon, | #
  6. # | and let the system do the rest! | #
  7. # +-------------------------------------------------------------------+ #
  8. #
  9. Blacklist {
  10. Pokemon=[
  11. Test1,
  12. Test2
  13. ]
  14. }
  15. #
  16. # +-------------------------------------------------------------------+ #
  17. # | General Settings | #
  18. # +-------------------------------------------------------------------+ #
  19. # | Listed in this section are the main controls of GTS. Alter these | #
  20. # | values to change functionality of the plugin to your liking! | #
  21. # +-------------------------------------------------------------------+ #
  22. #
  23. General {
  24. Auctions {
  25. # The default duration of an auction in the GTS (In Minutes)
  26. Default-Time=1
  27. # The default amount to increase each bid by
  28. Increment=500
  29. # The max duration of an auction in the GTS (In Minutes)
  30. Max-Time=5
  31. }
  32. # Sets the default duration of a lot (In Minutes)
  33. Lot-Time=720
  34. # The max duration of an auction in the GTS (In Minutes)
  35. Max-Lot-Time=720
  36. # Set how many pokemon a player is limited to listing, -1 for no cap
  37. Max-Pokemon=5
  38. # Use these values to enforce prices above the matching criteria
  39. Min-Prices {
  40. HAs=10000
  41. "Legendary Pokemon"=50000
  42. "Normal Pokemon"=1000
  43. "Per IV" {
  44. Minimum=28
  45. Price=5000
  46. }
  47. "Shiny Pokemon"=5000
  48. }
  49. Modules {
  50. Auction=false
  51. Price-Tag=true
  52. Trading=true
  53. }
  54. # Control the taxing of GTS listings
  55. Tax {
  56. Enabled=false
  57. Percentage=0.1
  58. # The value to start with when evaluating tax on pokemon 4 pokemon trades
  59. "Pokemon Trade Tax"=500
  60. # These values can be used to specify a higher tax
  61. # for specific criteria. Turning on the enabled option
  62. # in the stacking options will allow the legends and shiny
  63. # taxes to stack on top of each other.
  64. Stacking-Tax {
  65. Enabled=false
  66. HAs=0.2
  67. IVs=0.175
  68. Legendary=0.2
  69. "Max Tax"=0.5
  70. Shiny=0.15
  71. }
  72. }
  73. Taxes {
  74. Enabled=false
  75. Percentage=0
  76. }
  77. }
  78. # Alter these settings to control the GTS
  79. Settings {
  80. "Currency Symbol"="$"
  81. # Set how long a lot should be (In Minutes)
  82. "Lot Time"=720
  83. # Set how many pokemon a player is limited to listing, -1 for no cap
  84. "Max Pokemon"=5
  85. SQLDatabase {
  86. "Connection Info" {
  87. Host=localhost
  88. Password=iN82qQ3aJ
  89. Port=3306
  90. SQLDatabase="mc_GTS_pm"
  91. User="pmgts_user"
  92. }
  93. Type=MySQL
  94. }
  95. # Control the taxing of GTS listings
  96. Tax {
  97. Enabled=false
  98. "Tax rate"=0.1
  99. }
  100. }
  101. #
  102. # +-------------------------------------------------------------------+ #
  103. # | storage Settings | #
  104. # +-------------------------------------------------------------------+ #
  105. # | Ahh, the storage options. With GTS, you can choose to store your | #
  106. # | data in a H2 or MySQL database. Simply specify which type of | #
  107. # | storage option you plan to use, and apply connection info as | #
  108. # | necessary. | #
  109. # | | #
  110. # | Note: When the H2 database is first created, whatever connection | #
  111. # | info is set will be what the databases uses for its admin user. | #
  112. # +-------------------------------------------------------------------+ #
  113. #
  114. Storage {
  115. Connection {
  116. Database="mc_GTS_pm"
  117. Host=localhost
  118. Password=iN82qQ3aJ
  119. Port=3306
  120. User="pmgts_user"
  121. }
  122. Tables {
  123. Logs=Logs
  124. Main=GTS
  125. }
  126. storage-Method=MySQL
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement