Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 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. # Whether or not to treat the server as online-mode. This is mostly required for BungeeCord setups.
  27. force-online-mode: false
  28.  
  29. # Whether or not to treat fake votes as real votes
  30. process-fake-votes: true
  31.  
  32. # Rewards. This is the main section you will need to edit. Ordering is important.
  33. rewards:
  34. # Example of matchers.
  35. - if:
  36. permission: superbvote.test
  37. chance: 100
  38. service: SpecialService
  39. commands:
  40. - give %player% diamond 4
  41. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  42. broadcast-message: "&a%player% got really lucky and was rewarded with 4 diamonds and $1000!"
  43. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  44. - if: {}
  45. commands:
  46. - eco give %player% 1000
  47. player-message: "&aThanks for voting for us on %service%, you have been rewarded with $1000."
  48. broadcast-message: "&a%player% has voted for us on %service% and was rewarded with $1000!"
  49.  
  50. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  51. require-online: true
  52.  
  53. # Broadcast settings:
  54. broadcast:
  55. # Should we broadcast votes at all?
  56. enabled: true
  57.  
  58. # Should we tell players if they voted?
  59. message-player: true
  60.  
  61. # Should we broadcast queued votes?
  62. queued: true
  63.  
  64. # Vote command.
  65. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  66. # and https://www.minecraftjson.com for json text format
  67. vote-command:
  68. enabled: false
  69. use-json-text: false
  70. text: |-
  71. You could vote for us, but the owner forgot to add the list of websites to vote at!
  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