Advertisement
Guest User

Untitled

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