Advertisement
Guest User

Untitled

a guest
Mar 5th, 2017
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 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. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  35. - if: {}
  36. commands: REDACTED
  37. player-message: "&e&lVOTE &aThanks for voting for us on %service%, you rewards have been credited."
  38. broadcast-message: ""
  39.  
  40. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  41. require-online: true
  42.  
  43. # Broadcast settings:
  44. broadcast:
  45. # Should we broadcast votes at all?
  46. enabled: false
  47.  
  48. # Should we tell players if they voted?
  49. message-player: true
  50.  
  51. # Should we broadcast queued votes?
  52. queued: false
  53.  
  54. # Vote command.
  55. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  56. # and https://www.minecraftjson.com for json text format
  57. vote-command:
  58. enabled: true
  59. use-json-text: false
  60. text: |-
  61. &e&lVOTE LINKS: REDACTED
  62.  
  63. # Vote reminder.
  64. vote-reminder:
  65. message: ""
  66. on-join: false
  67. repeat: 3600
  68.  
  69. # Controls the /sv <top/leaderboard> command.
  70. leaderboard:
  71. # Supported: text, scoreboard
  72. display: text
  73.  
  74. # The text format supports pagination.
  75. text:
  76. per-page: 10
  77. header: "&c&m &r&b Top Voters &r&c&m &r"
  78. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  79.  
  80. # Control the scoreboard.
  81. scoreboard:
  82. title: Top voters
  83. max: 10
  84.  
  85. # Control top player signs.
  86. top-player-signs:
  87. format:
  88. - "#%num%"
  89. - ""
  90. - "%player%"
  91. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement