Advertisement
Guest User

Untitled

a guest
Sep 29th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 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% diamond 1
  40. - crate key %player% voting 1
  41. - eco give %player% 500
  42. player-message: "&aThanks for voting for us, you have been rewarded with 1 diamond"
  43. broadcast-message: "&aSomeone has voted for us and was rewarded with a crate key and $500, you can vote too using /vote!"
  44.  
  45. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  46. require-online: false
  47.  
  48. # Broadcast settings:
  49. broadcast:
  50. # Should we broadcast votes at all?
  51. enabled: true
  52.  
  53. # Should we broadcast queued votes?
  54. queued: true
  55.  
  56. # Vote command.
  57. vote-command:
  58. enabled: true
  59. text: |-
  60. &a&m--------------------------------------------------
  61. &a Here are list of voting sites.
  62. &a Simply click a link and follow its instructions to vote.
  63. &a&m--------------------------------------------------
  64. &6#1 &ehttps://www.planetminecraft.com/server/mellowcraft-4200907/vote/
  65. &6#2 &ehttps://minecraftservers.org/vote/515455
  66. &6#3 &ehttps://minecraft-server.net/vote/MellowCraft
  67. &a&m--------------------------------------------------
  68.  
  69. # Vote reminder.
  70. vote-reminder:
  71. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  72. on-join: true
  73. repeat: 1000
  74.  
  75. # Controls the /sv <top/leaderboard> command.
  76. leaderboard:
  77. # Supported: text, scoreboard
  78. display: text
  79.  
  80. # The text format supports pagination.
  81. text:
  82. per-page: 10
  83. header: "&c&m &r&b Top Voters &r&c&m &r"
  84. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  85.  
  86. # Control the scoreboard.
  87. scoreboard:
  88. title: Top voters
  89. max: 10
  90.  
  91. # Control top player signs.
  92. top-player-signs:
  93. format:
  94. - "#%num%"
  95. - ""
  96. - "%player%"
  97. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement