Advertisement
Guest User

Untitled

a guest
Mar 6th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 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-pecentage: 5
  37. commands:
  38. - crate key %player% ultimate 1
  39. player-message: "&aThanks for Voteing!"
  40. broadcast-message: "&a%player% Voted!"
  41. - if:
  42. chance-pecentage: 10
  43. commands:
  44. - crate key %player% diamond 1
  45. player-message: "&aThanks for Voteing!"
  46. broadcast-message: "&a%player% Voted!"
  47. - if:
  48. chance-pecentage: 15
  49. commands:
  50. - crate key %player% iron 1
  51. player-message: "&aThanks for Voteing!"
  52. broadcast-message: "&a%player% Voted!"
  53. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  54. - if: {}
  55. commands:
  56. - crate key %player% leather 1
  57. player-message: "&aThanks for voting for us on %service%1"
  58. broadcast-message: "&a%player% has voted for us on %service%!"
  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: true
  79. use-json-text: false
  80. text: |-
  81. https://minecraft-server.net/vote/thehiddenhaven
  82. # Vote reminder.
  83. vote-reminder:
  84. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  85. on-join: true
  86. repeat: 180
  87.  
  88. # Controls the /sv <top/leaderboard> command.
  89. leaderboard:
  90. # Supported: text, scoreboard
  91. display: text
  92.  
  93. # The text format supports pagination.
  94. text:
  95. per-page: 10
  96. header: "&c&m &r&b Top Voters &r&c&m &r"
  97. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  98.  
  99. # Control the scoreboard.
  100. scoreboard:
  101. title: Top voters
  102. max: 10
  103.  
  104. # Control top player signs.
  105. top-player-signs:
  106. format:
  107. - "#%num%"
  108. - ""
  109. - "%player%"
  110. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement