Advertisement
Guest User

Untitled

a guest
Oct 21st, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 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. - 0:
  36. chance-percentage: 25
  37. commands:
  38. - eco give %player% 2000
  39. broadcast-message: "&e%player% got lucky and was rewarded with 2000$!"
  40. - 1:
  41. chance-percentage: 15
  42. commands:
  43. - eco give %player% 5000
  44. broadcast-message: "&e%player% was really lucky and was rewarded with 5000$!"
  45. - 2:
  46. chance-percentage: 5
  47. commands:
  48. - eco give %player% 10000
  49. - give %player% diamond 4
  50. broadcast-message: "&e%player% got &4&lEXTREMELY&e lucky and was rewarded with 4 diamonds and 10 000$!"
  51.  
  52. # A default reward is required. Default rewards are defined by using default: true as a matcher. No other matchers can
  53. # be used with this matcher and only one such reward can be the default reward.
  54. - if:
  55. default: true
  56. commands:
  57. - eco give %player% 500
  58. broadcast-message: "&e%player% has voted for us and was rewarded with $500!"
  59.  
  60. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  61. require-online: true
  62.  
  63. # Broadcast settings:
  64. broadcast:
  65. # Should we broadcast votes at all?
  66. enabled: true
  67.  
  68. # Should we tell players if they voted?
  69. message-player: true
  70.  
  71. # Should we broadcast queued votes?
  72. queued: true
  73.  
  74. # Vote command.
  75. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  76. # and https://www.minecraftjson.com for json text format
  77. vote-command:
  78. enabled: false
  79. use-json-text: false
  80. text: |-
  81. You could vote for us, but the owner forgot to add the list of websites to vote at!
  82.  
  83. # Vote reminder.
  84. vote-reminder:
  85. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  86. on-join: true
  87. repeat: 180
  88.  
  89. # Controls the /sv <top/leaderboard> command.
  90. leaderboard:
  91. # Supported: text, scoreboard
  92. display: text
  93.  
  94. # The text format supports pagination.
  95. text:
  96. per-page: 10
  97. header: "&c&m &r&b Top Voters &r&c&m &r"
  98. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  99. page: "&7(page %page%/%total%)"
  100.  
  101. # Control the scoreboard.
  102. scoreboard:
  103. title: Top voters
  104. max: 10
  105.  
  106. # Control top player signs.
  107. top-player-signs:
  108. format:
  109. - "#%num%"
  110. - ""
  111. - "%player%"
  112. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement