Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. #
  2. # Donations Holograms - plugin by filoghost
  3. # Please read the documentation before configuring:
  4. # http://www.spigotmc.org/resources/donations-holograms.1956
  5. #
  6.  
  7.  
  8. # The url of your store.
  9. page-url: http://shop.risencloud.net'
  10.  
  11.  
  12. # The store type: by default the plugin supports Buycraft, Enjin and CraftingStore.
  13. # There are some default types of store supported, depending on their configuration.
  14. # The default value is for Buycraft, using the classic template and showing both the amount and percentage.
  15. #
  16. # LIST OF POSSIBLE DEFAULT VALUES:
  17. #
  18. # Buycraft / Classic template / Displaying goal amount: 'buycraft-classic-amount'
  19. # Buycraft / Classic template / Showing percentage only: 'buycraft-classic-percentage'
  20. # Buycraft / Flat template / Displaying goal amount: 'buycraft-flat-amount'
  21. # Buycraft / Flat template / Showing percentage only: 'buycraft-flat-percentage'
  22. #
  23. # Enjin / Default template / Displaying goal amount: 'enjin-amount'
  24. # Enjin / Default template / Showing percentage only: 'enjin-percentage'
  25. #
  26. # Crafting Store / Default template / Displaying goal amount: 'craftingstore-amount'
  27. # Crafting Store / Default template / Showing percentage only: 'craftingstore-percentage'
  28. #
  29. store: 'buycraft-classic-percentage'
  30.  
  31.  
  32. # How frequently the plugin should check for changes.
  33. # 300 seconds = 5 minutes (by default)
  34. refresh-seconds: 300
  35.  
  36.  
  37. # If your store just shows the percentage, set this to 100.
  38. # Otherwise, if the store is displaying the amount of money donated,
  39. # set this to your goal and the percentage will be calculated automatically.
  40. donations-goal: 100
  41.  
  42.  
  43. # If the percentage placeholder can go over 100.
  44. allow-percentage-over-100: false
  45.  
  46.  
  47. # Section regarding the progress bar.
  48. progress-bar:
  49.  
  50. # The unicode symbol used to draw the progress bar.
  51. # Check for symbols here: http://unicode-table.com, use "\u" + the unicode number.
  52. # By default it's a full block symbol.
  53. symbol: '\u2588'
  54.  
  55. # The total amount of symbols used to draw the progress bar.
  56. length: 20
  57.  
  58. # The color used to fill the progress bar.
  59. color-filled: '&b'
  60.  
  61. # The color that represents the empty part of the progress bar.
  62. color-empty: '&8'
  63.  
  64.  
  65.  
  66. # For debugging, you shouldn't need it.
  67. debug: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement