Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
240
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://github.com/minecrafter/SuperbVote/wiki
  5.  
  6. # Database configuration.
  7. storage:
  8. database: mysql
  9. json:
  10. file: votes.json
  11. mysql:
  12. host: xx.xx.xx.xx
  13. username: superbvotes_xxxx
  14. password: xxxxx
  15. database: superbvotes_xxxx
  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: 3600
  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. - if:
  35. service: Minecraft-MP.com
  36. commands:
  37. - pro key vote %player% 1
  38. - give %player% Diamond 1
  39. - eco give %player% 2000
  40. - xp give %player% 100
  41. - lp user %player% permission settemp essentials.fly true 900s skyblock2
  42. player-message: "&bYou got reward &6/fly"
  43. broadcast-message: ""
  44. - if:
  45. chance: 1.8
  46. commands:
  47. - pro key vote %player% 1
  48. - give %player% Diamond 1
  49. - eco give %player% 4000
  50. - xp give %player% 100
  51. player-message: "&bYou got reward &6Vote Key"
  52. broadcast-message: ""
  53. - if: {}
  54. commands:
  55. - pro key vote %player% 2
  56. - give %player% Diamond 1
  57. - eco give %player% 3000
  58. - xp give %player% 100
  59. player-message: "&bYou got reward &62x Vote Key"
  60. broadcast-message: ""
  61.  
  62. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  63. require-online: true
  64.  
  65. # Broadcast settings:
  66. broadcast:
  67. # Should we broadcast votes at all?
  68. enabled: false
  69.  
  70. # Should we tell players if they voted?
  71. message-player: true
  72.  
  73. # Should we broadcast queued votes?
  74. queued: true
  75.  
  76. # Vote command.
  77. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  78. # and https://www.minecraftjson.com for json text format
  79. vote-command:
  80. enabled: false
  81. use-json-text: false
  82. text: |-
  83. You could vote for us, but the owner forgot to add the list of websites to vote at!
  84.  
  85. # Vote reminder.
  86. vote-reminder:
  87. message: ""
  88. on-join: false
  89. repeat: -1
  90.  
  91. # Controls the /sv <top/leaderboard> command.
  92. leaderboard:
  93. # Supported: text, scoreboard
  94. display: text
  95.  
  96. # The text format supports pagination.
  97. text:
  98. per-page: 10
  99. header: "&c&m &r&b Top Voters &r&c&m &r"
  100. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  101.  
  102. # Control the scoreboard.
  103. scoreboard:
  104. title: Top voters
  105. max: 10
  106.  
  107. # Control top player signs.
  108. top-player-signs:
  109. format:
  110. - "#%num%"
  111. - ""
  112. - "%player%"
  113. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement