Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. # SuperbVote configuration
  2. # A superb vote plugin made by Tux.
  3. #
  4. # https://github.com/minecrafter/SuperbVote/wiki
  5.  
  6. # Database configuration.
  7. storage:
  8. database: json
  9. json:
  10. file: votes.json
  11. mysql:
  12. host: 127.0.0.1
  13. username: root
  14. password: topsecret
  15. database: superbvote
  16. table: votes
  17. read-only: false
  18.  
  19. # General vote configuration.
  20. votes:
  21. # At least this many seconds must pass before allowing another vote (per-service). This will apply per service.
  22. # Default: 3600 seconds (1 hour)
  23. cooldown-per-service: 3600
  24.  
  25. # Whether or not to treat fake votes as real votes
  26. process-fake-votes: true
  27.  
  28. # Rewards. This is the main section you will need to edit. Ordering is important.
  29. rewards:
  30. # Example of matchers. See https://github.com/minecrafter/SuperbVote/wiki/Configuration#if for a full list of available
  31. # matchers.
  32. - if:
  33. cumulative-votes: 10
  34. commands:
  35. - give %player% diamond 8
  36. - eco give %player% 25000
  37. player-message: "&7You hit a voting &7milestone!"
  38. broadcast-message: "&6%player% &7has hit a &f10 &7vote milestone! &6»&b/rewards&6«"
  39. - if:
  40. cumulative-votes: 25
  41. commands:
  42. - mm i give %player% BookOfFlying_60
  43. - mp give %player% 2 1
  44. player-message: "&7You hit a voting &7milestone!"
  45. broadcast-message: "&6%player% &7has hit a &f25 &7vote milestone! &6»&b/rewards&6«"
  46. - if:
  47. cumulative-votes: 50
  48. commands:
  49. - give %player% whiteconcretepowder 64
  50. - mm i give %player% Crafting__crystal_Bloodstone
  51. - mm i give %player% Crafting__crystal_Alexandrite
  52. - mm i give %player% Crafting__crystal_ColoShite
  53. - mm i give %player% Crafting__crystal_Sapphire
  54. player-message: "&7You hit a voting &7milestone!"
  55. broadcast-message: "&6%player% &7has hit a &f50 &7vote milestone! &6»&b/rewards&6«"
  56. - if:
  57. cumulative-votes: 75
  58. commands:
  59. - mm i give %player% BookOfFlying_180
  60. player-message: "&7You hit a voting &7milestone!"
  61. broadcast-message: "&6%player% &7has hit a &f75 &7vote milestone! &6»&b/rewards&6«"
  62. - if:
  63. cumulative-votes: 100
  64. commands:
  65. - treasures keys %player% Doge add 1"
  66. player-message: "&7You hit a voting &7milestone!"
  67. broadcast-message: "&6%player% &7has hit a &f100 &7vote milestone! &6»&b/rewards&6«"
  68. - if:
  69. cumulative-votes: 150
  70. commands:
  71. - soulbound give %player% 1
  72. - broadcast &6%player% &7has gotten a 5$ Coupon
  73. player-message: "&7You hit a voting &7milestone!"
  74. broadcast-message: "&6%player% &7has hit a &f150 &7vote milestone! &6»&b/rewards&6«"
  75. - if:
  76. default: true
  77. commands:
  78. - treasures keys %player% vote add 1
  79. - eco give %player% 1000
  80. - give %player% diamond 1
  81. player-message: "&7You Received a &6Vote Key &7Redeem it at &6/Crates"
  82. broadcast-message: "&8%player% &evoted for rewards &6»&b/vote&6«"
  83. # A default reward is required. Default rewards are defined by using default: true as a matcher. No other matchers can
  84. # be used with this matcher and only one such reward can be the default reward.
  85. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  86. require-online: false
  87.  
  88. # Broadcast settings:
  89. broadcast:
  90. # Should we broadcast votes at all?
  91. enabled: true
  92.  
  93. # Should we tell players if they voted?
  94. message-player: true
  95.  
  96. # Should we broadcast queued votes?
  97. queued: true
  98.  
  99. # Vote command.
  100. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  101. # and https://www.minecraftjson.com for json text format
  102. vote-command:
  103. enabled: false
  104. use-json-text: false
  105. text: |-
  106. You could vote for us, but the owner forgot to add the list of websites to vote at!
  107.  
  108. # Vote reminder.
  109. vote-reminder:
  110. message: "&4Remember to vote for our server with &6/Vote"
  111. on-join: true
  112. repeat: 180
  113.  
  114. # Controls the /sv <top/leaderboard> command.
  115. leaderboard:
  116. # Supported: text, scoreboard
  117. display: text
  118.  
  119. # The text format supports pagination.
  120. text:
  121. per-page: 10
  122. header: "&c&m &r&b Top Voters &r&c&m &r"
  123. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  124. page: "&7(page %page%/%total%)"
  125.  
  126. # Control the scoreboard.
  127. scoreboard:
  128. title: Top voters
  129. max: 10
  130.  
  131. # Control top player signs.
  132. top-player-signs:
  133. format:
  134. - "&5Top Voters"
  135. - "#%num%"
  136. - "%player%"
  137. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement