Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.64 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. # Once you've configured SuperbVote, add it to our official server list, CraftServers.net:
  7. # Official server list: https://www.craftservers.net/
  8.  
  9. # Database configuration.
  10. storage:
  11. database: json
  12. json:
  13. file: votes.json
  14. mysql:
  15. host: 127.0.0.1
  16. username: root
  17. password: topsecret
  18. database: superbvote
  19. table: votes
  20. read-only: false
  21.  
  22. # General vote configuration.
  23. votes:
  24. # At least this many seconds must pass before allowing another vote (per-service). This will apply per service.
  25. # Default: 3600 seconds (1 hour)
  26. cooldown-per-service: 3600
  27.  
  28. # Whether or not to treat fake votes as real votes
  29. process-fake-votes: true
  30.  
  31. # Rewards. This is the main section you will need to edit. Ordering is important.
  32. rewards:
  33. # Example of matchers. See https://github.com/minecrafter/SuperbVote/wiki/Configuration#if for a full list of available
  34. # matchers.
  35. - if:
  36. chance-fractional: 1/3
  37. commands:
  38. - crate key %player% Vote 1
  39. player-message: ""
  40. broadcast-message: "&6%player% &awas a &elucky voter &aand received &21 Voter Key&6!"
  41. - if:
  42. cumulative-votes: 100
  43. commands:
  44. - kit voter %player%
  45. player-message: "&9Thanks for voting &9100 times"
  46. broadcast-message: "&6%player% &ahas voted a total of 100 times and received the &6Voter kit!"
  47. - if:
  48. permission: superbvote.double
  49. commands:
  50. - eco give %player% 2000
  51. player-message: "&aThanks for &6donating&a! &aYou get &6double rewards&a!"
  52. broadcast-message:
  53. - if:
  54. chance-fractional: 1/10
  55. commands:
  56. - give %player% 264 10
  57. player-message: "&aYou were &elucky &aand received &bdiamonds&6!"
  58. broadcast-message: "&6%player% &awas a &elucky voter &aand received &bdiamonds&6!"
  59. - if:
  60. chance-fractional: 1/25
  61. commands:
  62. - eco give %player% 4000
  63. player-message: "&aYou were &bextra &alucky and received &6quadruple rewards!"
  64. broadcast-message: "&6%player% &awas an &bextra &alucky voter and received &6quadruple rewards!"
  65. - if:
  66. chance-fractional: 1/100
  67. commands:
  68. - eco give %player% 40000
  69. - give %player% 264 20
  70. player-message: "&aYou were &5super &alucky and received an &6extra 20 &bdiamonds &6 and &2$40,000&6!"
  71. broadcast-message: "&6%player% &awas a &5super &alucky voter and received an &6extra 20 &bdiamonds &6 and &2$40,000&6!"
  72. - if:
  73. chance-fractional: 1/200
  74. commands:
  75. - crate key %player% Legendary 1
  76. player-message: "&aYou were &3crazy &alucky voter and received a &6Legendary Key!"
  77. broadcast-message: "&6%player% &awas a &3crazy &alucky voter and received a &6Legendary Key!"
  78. - if:
  79. chance-fractional: 1/500
  80. commands:
  81. - give %player% 443 1
  82. - eco give %player% 30000
  83. player-message: "&9You were &cincredibly &alucky and received an &6extra &2$30,000 &6and an &bElytra&a!"
  84. broadcast-message: "&6%player% &awas an &cincredibly &alucky voter and received an &6extra &2$30,000 &6and an &bElytra&a!"
  85. - if:
  86. chance-fractional: 1/1000
  87. commands:
  88. - crate key %player% Mythic 1
  89. player-message: "&aYou were &3crazy &alucky voter and received a &5Mythic Key&6!"
  90. broadcast-message: "&6%player% &awas a &6amazingly &alucky voter and received a &5Mythic Key&6!"
  91. - if:
  92. chance-fractional: 1/2000
  93. commands:
  94. - give %player% paper 1 name:&a&lDonation_Coupon_&9[&b10$&9] lore:&7&oShow_this_to_an_admin|&7&ofor_your_10$_coupon!
  95. player-message: "&9You were &4extremely &alucky and received a &b10$ donation coupon&a!"
  96. broadcast-message: "&6%player% &awas an &4astonishingly &alucky voter and received a &b10$ donation coupon!&a!"
  97. # A default reward is required. Default rewards are defined by using default: true as a matcher. No other matchers can
  98. # be used with this matcher and only one such reward can be the default reward.
  99. - if:
  100. default: true
  101. commands:
  102. - eco give %player% 1000
  103. player-message: "&aThanks for voting for us on %service%, you have been rewarded with $1000."
  104. broadcast-message: "&a%player% has voted for us on %service% and was rewarded with $1000!"
  105.  
  106. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  107. require-online: false
  108.  
  109. # Broadcast settings:
  110. broadcast:
  111. # Should we broadcast votes at all?
  112. enabled: true
  113.  
  114. # Should we tell players if they voted?
  115. message-player: true
  116.  
  117. # Should we broadcast queued votes?
  118. queued: true
  119.  
  120. # Vote command.
  121. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  122. # and https://www.minecraftjson.com for json text format
  123. vote-command:
  124. enabled: false
  125. use-json-text: false
  126. text: |-
  127. You could vote for us, but the owner forgot to add the list of websites to vote at!
  128.  
  129. # Vote reminder.
  130. vote-reminder:
  131. message: "&6Vote &bfor free money and to help us &6advertise! &bYou currently have &a%votes%&c &bvotes."
  132. on-join: true
  133. repeat: 0
  134.  
  135. # Controls the /sv <top/leaderboard> command.
  136. leaderboard:
  137. # Supported: text, scoreboard
  138. display: text
  139.  
  140. # The text format supports pagination.
  141. text:
  142. per-page: 10
  143. header: "&c&m &r&b Top Voters &r&c&m &r"
  144. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  145. page: "&7(page %page%/%total%)"
  146.  
  147. # Control the scoreboard.
  148. scoreboard:
  149. title: Top voters
  150. max: 10
  151.  
  152. # Control top player signs.
  153. top-player-signs:
  154. format:
  155. - "#%num%"
  156. - ""
  157. - "%player%"
  158. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement