Advertisement
Guest User

Untitled

a guest
Aug 24th, 2018
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 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. # Once you've configured SuperbVote, add it to our official server list, CraftServers.net:
  7. # Official server list: https://www.craftservers.net/
  8.  
  9. # Database configuration.
  10. storage:
  11. database: json
  12. json:
  13. file: votes.json
  14. mysql:
  15. host: 127.0.0.1
  16. username: root
  17. password: topsecret
  18. database: superbvote
  19. table: votes
  20. read-only: false
  21.  
  22. # General vote configuration.
  23. votes:
  24. # At least this many seconds must pass before allowing another vote (per-service). This will apply per service.
  25. # Default: 3600 seconds (1 hour)
  26. cooldown-per-service: 3600
  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. See https://github.com/minecrafter/SuperbVote/wiki/Configuration#if for a full list of available
  34. # matchers.
  35. - if:
  36. permission: superbvote.test
  37. chance-pecentage: 5
  38. service: SpecialService
  39. commands:
  40. - give %player% diamond 4
  41. - eco give %player% 1000
  42. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  43. broadcast-message: "&a%player% got really lucky and was rewarded with 4 diamonds and $1000!"
  44. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  45. - if: {}
  46. commands:
  47. - eco give %player% 2000
  48. - cc give v vote 1 %player%
  49. - xp give %player% 2000
  50. player-message: "&6&lVOTING &8&l» &7Thanks for voting for us, your rewards have been applied."
  51. broadcast-message: "&6&lVOTING &8&l» &e%player%&7 has voted for us and has been rewarded!"
  52.  
  53. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  54. require-online: true
  55.  
  56. # Broadcast settings:
  57. broadcast:
  58. # Should we broadcast votes at all?
  59. enabled: true
  60.  
  61. # Should we tell players if they voted?
  62. message-player: true
  63.  
  64. # Should we broadcast queued votes?
  65. queued: true
  66.  
  67. # Vote command.
  68. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  69. # and https://www.minecraftjson.com for json text format
  70. vote-command:
  71. enabled: true
  72. use-json-text: false
  73. text: |-
  74. &6&lVoting Links:
  75. - &7https://minecraft-server-directory.com/server/60
  76. - &7https://minecraft-mp.com/server-s203894
  77.  
  78. # Vote reminder.
  79. vote-reminder:
  80. message: "&6&lVOTING &8&l» &7Don't forget to vote for us! You have &e%votes%&7 votes."
  81. on-join: false
  82. repeat: 18000000000
  83.  
  84. # Controls the /sv <top/leaderboard> command.
  85. leaderboard:
  86. # Supported: text, scoreboard
  87. display: text
  88.  
  89. # The text format supports pagination.
  90. text:
  91. per-page: 10
  92. header: "&c&m &r&b Top Voters &r&c&m &r"
  93. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  94.  
  95. # Control the scoreboard.
  96. scoreboard:
  97. title: Top voters
  98. max: 10
  99.  
  100. # Control top player signs.
  101. top-player-signs:
  102. format:
  103. - "#%num%"
  104. - ""
  105. - "%player%"
  106. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement