Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 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. - eco give %player% 100
  40. player-message: " &e&lFMC &8// &7Thanks for voting for us, you have been rewarded with 100$!"
  41. broadcast-message: ""
  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: false
  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://minecraft-mp.com/server/125304/vote/
  63. &a&m--------------------------------------------------
  64.  
  65. # Vote reminder.
  66. vote-reminder:
  67. message: " &8| &7Don't forget to vote for us! You currently have &c%votes%&f votes. &8|"
  68. on-join: true
  69. repeat: 180
  70.  
  71. # Controls the /sv <top/leaderboard> command.
  72. leaderboard:
  73. # Supported: text, scoreboard
  74. display: text
  75.  
  76. # The text format supports pagination.
  77. text:
  78. per-page: 10
  79. header: "&c&m &r&b Top Voters &r&c&m &r"
  80. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  81.  
  82. # Control the scoreboard.
  83. scoreboard:
  84. title: Top voters
  85. max: 10
  86.  
  87. # Control top player signs.
  88. top-player-signs:
  89. format:
  90. - "#%num%"
  91. - ""
  92. - "%player%"
  93. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement