Advertisement
Guest User

Untitled

a guest
Aug 30th, 2017
558
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. # SuperbVote configuration
  2. # A superb vote plugin made by Tux.
  3. #
  4. # https://github.com/minecrafter/SuperbVote/wiki
  5.  
  6. # Database configuration.
  7. storage:
  8. database: json
  9. json:
  10. file: votes.json
  11. mysql:
  12. host: 127.0.0.1
  13. username: root
  14. password: topsecret
  15. database: superbvote
  16. table: votes
  17. read-only: false
  18.  
  19. # General vote configuration.
  20. votes:
  21. # At least this many seconds need to pass before allowing another vote (per-service). This will apply per service.
  22. # Default: 3600 seconds (1 hour)
  23. cooldown-per-service: 86400
  24.  
  25. # Whether or not to treat the server as online-mode. This is mostly required for BungeeCord setups.
  26. force-online-mode: false
  27.  
  28. # Whether or not to treat fake votes as real votes
  29. process-fake-votes: true
  30.  
  31. # Rewards. This is the main section you will need to edit. Ordering is important.
  32. rewards:
  33. # Example of matchers.
  34. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  35. - if:
  36. commands:
  37. - crate givekey %player% roulettekey 1
  38. player-message: "&7Thanks for voting!"
  39. broadcast-message: "&c%player% &7has voted!"
  40.  
  41. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  42. require-online: true
  43.  
  44. # Broadcast settings:
  45. broadcast:
  46. # Should we broadcast votes at all?
  47. enabled: true
  48.  
  49. # Should we tell players if they voted?
  50. message-player: true
  51.  
  52. # Should we broadcast queued votes?
  53. queued: true
  54.  
  55. # Vote command.
  56. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  57. # and https://www.minecraftjson.com for json text format
  58. vote-command:
  59. enabled: true
  60. use-json-text: false
  61. text: |-
  62. &8[&f1&8] &fhttp://minecraftservers.org/vote/457589
  63. &8[&f2&8] &fhttps://www.planetminecraft.com/server/survival-fun-4005501/vote/
  64. &8[&f3&8] &fhttp://minecraft-server-list.com/server/406181/vote/
  65. &8[&f4&8] &fhttps://www.minecraft-index.com/59395-survival-fun/vote/
  66. &8[&f5&8] &fhttps://minecraftlist.org/vote/8304
  67. &8[&f6&8] &fhttp://minecraft-mp.com/server/172183/vote/
  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