Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 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: 0
  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. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  34. - if: {}
  35. commands:
  36. - eco give %player% 1000
  37. - give %player% diamond 1
  38. - crazycrate give physical vote 1 %player%
  39. player-message: "&bVote &7»&b Thanks for voting for us on &3%service%&b."
  40. broadcast-message: "&bVote &7»&3 %player% &bhas voted for amazing rewards."
  41.  
  42. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  43. require-online: true
  44.  
  45. # Broadcast settings:
  46. broadcast:
  47. # Should we broadcast votes at all?
  48. enabled: false
  49.  
  50. # Should we tell players if they voted?
  51. message-player: false
  52.  
  53. # Should we broadcast queued votes?
  54. queued: true
  55.  
  56. # Vote command.
  57. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  58. # and https://www.minecraftjson.com for json text format
  59. vote-command:
  60. enabled: true
  61. use-json-text: false
  62. text: |-
  63. &a &b
  64. &a &b&lVoting&f&lLinks
  65. &a &b
  66. &e &7&nvote1.megaplexmc.com&r
  67. &a &b
  68. &e &7&nvote2.megaplexmc.com&r
  69. &a &b
  70. &e &7&nvote3.megaplexmc.com&r
  71. &a &b
  72.  
  73. # Vote reminder.
  74. vote-reminder:
  75. message: "&bVote &7»&b Don't forget to vote daily and help us grow."
  76. on-join: false
  77. repeat: 180
  78.  
  79. # Controls the /sv 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: "&6&m &r&e Top Voters &r&6&m &r"
  88. entry: "&e%num%. &7%player% (&6%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