Advertisement
Guest User

superbvote

a guest
Jan 31st, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.38 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. permission: superbvote.Member
  37. chance-pecentage: 5
  38. service: SpecialService
  39. commands:
  40. - crate key %player% Member
  41. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  42. broadcast-message: "&a%player% got really lucky and was rewarded with a &7Member &6LootCrate Ticket!"
  43. - if:
  44. permission: superbvote.Vip
  45. chance-pecentage: 10
  46. service: SpecialService
  47. commands:
  48. - crate key %player% Vip
  49. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  50. broadcast-message: "&a%player% got really lucky and was rewarded with a &aVip &6LootCrate Ticket!"
  51. - if:
  52. permission: superbvote.Mvp
  53. chance-pecentage: 15
  54. service: SpecialService
  55. commands:
  56. - crate key %player% Mvp
  57. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  58. broadcast-message: "&a%player% got really lucky and was rewarded with a &9Mvp &6LootCrate Ticket!"
  59. - if:
  60. permission: superbvote.Premium
  61. chance-pecentage: 25
  62. service: SpecialService
  63. commands:
  64. - crate key %player% Premium
  65. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  66. broadcast-message: "&a%player% got really lucky and was rewarded with a &5Premium &6LootCrate Ticket!"
  67. - if:
  68. permission: superbvote.Legend
  69. chance-pecentage: 35
  70. service: SpecialService
  71. commands:
  72. - crate key %player% Legend
  73. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  74. broadcast-message: "&a%player% got really lucky and was rewarded with a &bLegend &6LootCrate Ticket!"
  75. - if:
  76. permission: superbvote.Overlord
  77. chance-pecentage: 50
  78. service: SpecialService
  79. commands:
  80. - crate key %player% Overlord
  81. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  82. broadcast-message: "&a%player% got really lucky and was rewarded with a &eOverlord &6LootCrate Ticket!"
  83. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  84. - if: {}
  85. commands:
  86. - eco give %player% 25
  87. player-message: "&aThanks for voting for us on %service%, you have been rewarded with $25."
  88. broadcast-message: "&a%player% has voted for us and has been rewarded with $25!"
  89.  
  90. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  91. require-online: true
  92.  
  93. # Broadcast settings:
  94. broadcast:
  95. # Should we broadcast votes at all?
  96. enabled: true
  97.  
  98. # Should we tell players if they voted?
  99. message-player: false
  100.  
  101. # Should we broadcast queued votes?
  102. queued: true
  103.  
  104. # Vote command.
  105. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  106. # and https://www.minecraftjson.com for json text format
  107. vote-command:
  108. enabled: true
  109. use-json-text: false
  110. text: |-
  111. &6&m--------------------------------------------------
  112. &6 Here are list of voting sites.
  113. &6 Simply click a link and follow its instructions to vote.
  114. &6&m--------------------------------------------------
  115. &3#1 https://goo.gl/PGM7C2
  116. &3#2 https://goo.gl/UbsHXD
  117. &3#3 https://goo.gl/aGD9kV
  118. &3#4 https://goo.gl/iUzHcg
  119. &3#5 https://goo.gl/BubWVN
  120. &3#6 https://goo.gl/m2rKe6
  121. &6&m--------------------------------------------------
  122.  
  123. # Vote reminder.
  124. vote-reminder:
  125. message: "&bDon't forget to vote for us daily for a total of $150 and a chance of getting a &6LootCrate ticket &b!"
  126. on-join: true
  127. repeat: 500
  128.  
  129. # Controls the /sv <top/leaderboard> command.
  130. leaderboard:
  131. # Supported: text, scoreboard
  132. display: text
  133.  
  134. # The text format supports pagination.
  135. text:
  136. per-page: 10
  137. header: "&c&m &r&b Top Voters &r&c&m &r"
  138. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  139.  
  140. # Control the scoreboard.
  141. scoreboard:
  142. title: Top voters
  143. max: 10
  144.  
  145. # Control top player signs.
  146. top-player-signs:
  147. format:
  148. - "#%num%"
  149. - ""
  150. - "%player%"
  151. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement