Advertisement
Guest User

Superb

a guest
Aug 6th, 2017
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. # SuperbVote configuration
  2. # A superb vote plugin made by Tux.
  3. #
  4. # https://minecraft.minimum.io/wiki/SuperbVote
  5.  
  6. # Database configuration.
  7. # Currently supported: "json".
  8. storage:
  9. database: json
  10. json:
  11. file: votes.json
  12. mysql:
  13. host: 127.0.0.1
  14. username: root
  15. password: topsecret
  16. database: superbvote
  17. table: votes
  18. read-only: false
  19.  
  20. # General vote configuration.
  21. votes:
  22. # At least this many seconds need to pass before allowing another vote (per-service). This will apply per service.
  23. # Default: 3600 seconds (1 hour)
  24. cooldown-per-service: 3600
  25.  
  26. # Rewards. This is the main section you will need to edit. Ordering is important.
  27. rewards:
  28. # Example of matchers.
  29. - if:
  30. permission: superbvote.vip
  31. chance: 50
  32. commands:
  33. - crate gk %player% Golden 1
  34. player-message: "&aThanks for voting! You've recieved a Golden Key!"
  35. broadcast-message: "&a%player% got really lucky and was rewarded with 1 Golden key!"
  36. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  37. - if: {}
  38. commands:
  39. - crate gk %player% Vote 1
  40. player-message: "&aThanks for voting for us, you have been rewarded with a Vote Key."
  41. broadcast-message: "&aSomeone has voted for us and was rewarded with a crate key, you can vote too with /vote!"
  42.  
  43. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  44. require-online: false
  45.  
  46. # Broadcast settings:
  47. broadcast:
  48. # Should we broadcast votes at all?
  49. enabled: true
  50.  
  51. # Should we broadcast queued votes?
  52. queued: true
  53.  
  54. # Vote command.
  55. vote-command:
  56. enabled: true
  57. text: |-
  58. &a&m--------------------------------------------------
  59. &a Here are list of voting sites.
  60. &a Simply click a link and follow its instructions to vote.
  61. &a&m--------------------------------------------------
  62. &6#1 &ehttp://minecraftservers.org/server/453923
  63. &6#2 &ehttp://minecraft-mp.com/server-s170276
  64. &a&m--------------------------------------------------
  65.  
  66. # Vote reminder.
  67. vote-reminder:
  68. message: "&6&l(!)&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  69. on-join: true
  70. repeat: 180
  71.  
  72. # Controls the /sv <top/leaderboard> command.
  73. leaderboard:
  74. # Supported: text, scoreboard
  75. display: text
  76.  
  77. # The text format supports pagination.
  78. text:
  79. per-page: 10
  80. header: "&c&m &r&b Top Voters &r&c&m &r"
  81. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  82.  
  83. # Control the scoreboard.
  84. scoreboard:
  85. title: Top voters
  86. max: 10
  87.  
  88. # Control top player signs.
  89. top-player-signs:
  90. format:
  91. - "#%num%"
  92. - ""
  93. - "%player%"
  94. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement