Advertisement
Guest User

Untitled

a guest
Aug 11th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 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. - give %player% cactus
  34. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 1 cactus."
  35. broadcast-message: "&aSomeone got really lucky and was rewarded with 1 rare key!"
  36. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  37. - if: {}
  38. commands:
  39. - give %player% emerald 1 0 {
  40. display: {
  41. Name: "&aVote Chest Key",
  42. Lore: [
  43. "Use This Key On A Vote Chest For Bedwars Rewards"
  44. ]
  45. }
  46. }
  47. player-message: "&aThanks Voting For The Server, You Are Rewarded With A Vote Chest Key"
  48. broadcast-message: "&aSomeone Has Voted For The Server, They Have Been Rewarded With A Vote Chest Key You Can Get One Too With &5/vote!"
  49.  
  50.  
  51. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  52. require-online: false
  53.  
  54. # Broadcast settings:
  55. broadcast:
  56. # Should we broadcast votes at all?
  57. enabled: true
  58.  
  59. # Should we broadcast queued votes?
  60. queued: true
  61.  
  62. # Vote command.
  63. vote-command:
  64. enabled: true
  65. text: |-
  66. &a&m--------------------------------------------------
  67. &a Here are list of voting sites.
  68. &a Simply click a link and follow its instructions to vote.
  69. &a&m--------------------------------------------------
  70. &6#1 &ehttp://minecraft-mp.com/server/125304/vote/
  71. &a&m--------------------------------------------------
  72.  
  73. # Vote reminder.
  74. vote-reminder:
  75. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  76. on-join: true
  77. repeat: 180
  78.  
  79. # Controls the /sv <top/leaderboard> command.
  80. leaderboard:
  81. # Supported: text, scoreboard
  82. display: text
  83.  
  84. # The text format supports pagination.
  85. text:
  86. per-page: 10
  87. header: "&c&m &r&b Top Voters &r&c&m &r"
  88. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  89.  
  90. # Control the scoreboard.
  91. scoreboard:
  92. title: Top voters
  93. max: 10
  94.  
  95. # Control top player signs.
  96. top-player-signs:
  97. format:
  98. - "#%num%"
  99. - ""
  100. - "%player%"
  101. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement