Advertisement
Guest User

Untitled

a guest
Sep 30th, 2017
470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 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. "Blacklisted_Poke1",
  11. "Blacklisted_Poke2"
  12. ]
  13. #
  14. # +-------------------------------------------------------------------+ #
  15. # | General Settings | #
  16. # +-------------------------------------------------------------------+ #
  17. # | Listed in this section are the main controls of GTS. Alter these | #
  18. # | values to change functionality of the plugin to your liking! | #
  19. # +-------------------------------------------------------------------+ #
  20. #
  21. General {
  22. Auctions {
  23. # The default duration of an auction in the GTS (In Minutes)
  24. Default-Time=1
  25. # The default amount to increase each bid by
  26. Increment=50
  27. # The max duration of an auction in the GTS (In Minutes)
  28. Max-Time=5
  29. }
  30. # Sets the default duration of a lot (In Minutes)
  31. Lot-Time=60
  32. # The max duration of an auction in the GTS (In Minutes)
  33. Max-Lot-Time=720
  34. # Set how many pokemon a player is limited to listing, -1 for no cap
  35. Max-Pokemon=3
  36. # Use these values to enforce prices above the matching criteria
  37. Min-Prices {
  38. HAs=10000
  39. "Legendary Pokemon"=50000
  40. "Normal Pokemon"=1000
  41. "Per IV" {
  42. Minimum=28
  43. Price=5000
  44. }
  45. "Shiny Pokemon"=5000
  46. }
  47. Modules {
  48. Auction=true
  49. Price-Tag=true
  50. Trading=true
  51. }
  52. # Control the taxing of GTS listings
  53. Tax {
  54. Enabled=false
  55. Percentage=0.1
  56. # The value to start with when evaluating tax on pokemon 4 pokemon trades
  57. "Pokemon Trade Tax"=500
  58. # These values can be used to specify a higher tax
  59. # for specific criteria. Turning on the enabled option
  60. # in the stacking options will allow the legends and shiny
  61. # taxes to stack on top of each other.
  62. Stacking-Tax {
  63. Enabled=false
  64. HAs=0.2
  65. IVs=0.175
  66. Legendary=0.2
  67. "Max Tax"=0.5
  68. Shiny=0.15
  69. }
  70. }
  71. }
  72. #
  73. # +-------------------------------------------------------------------+ #
  74. # | Storage Settings | #
  75. # +-------------------------------------------------------------------+ #
  76. # | Ahh, the storage options. With GTS, you can choose to store your | #
  77. # | data in a H2 or MySQL database. Simply specify which type of | #
  78. # | storage option you plan to use, and apply connection info as | #
  79. # | necessary. | #
  80. # | | #
  81. # | Note: When the H2 database is first created, whatever connection | #
  82. # | info is set will be what the databases uses for its admin user. | #
  83. # +-------------------------------------------------------------------+ #
  84. #
  85. Storage {
  86. Connection {
  87. Database=GTS
  88. Host=localhost
  89. Password=password
  90. Port=3306
  91. User=username
  92. }
  93. Tables {
  94. Logs=Logs
  95. Main=GTS
  96. }
  97. storage-Method=H2
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement