Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 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 must pass before allowing another vote (per-service). This will apply per service.
  22. # Default: 3600 seconds (1 hour)
  23. cooldown-per-service: 10
  24.  
  25. # Whether or not to treat fake votes as real votes
  26. process-fake-votes: true
  27.  
  28. # Rewards. This is the main section you will need to edit. Ordering is important.
  29. rewards:
  30. # Example of matchers. See https://github.com/minecrafter/SuperbVote/wiki/Configuration#if for a full list of available
  31. # matchers.
  32. - if:
  33. permission: superbvote.vip
  34. chance-percentage: 90
  35. service: SpecialService
  36. commands:
  37. - give %player% diamond 4
  38. - eco give %player% 5000
  39. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $5000."
  40. broadcast-message: "&a%player% got really lucky and was rewarded with 4 diamonds and $5000!"
  41. # A default reward is required. Default rewards are defined by using default: true as a matcher. No other matchers can
  42. # be used with this matcher and only one such reward can be the default reward.
  43. - if:
  44. default: true
  45. commands:
  46. - crate give to %player% VoteCrate 1
  47. player-message: "&aThanks for voting for us on %service%, you have been rewarded with 1 Vote Crate key."
  48. broadcast-message: "&a%player% has voted for us on %service% and was rewarded with 1 Vote Crate key!"
  49.  
  50. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  51. require-online: true
  52.  
  53. # Broadcast settings:
  54. broadcast:
  55. # Should we broadcast votes at all?
  56. enabled: true
  57.  
  58. # Should we tell players if they voted?
  59. message-player: true
  60.  
  61. # Should we broadcast queued votes?
  62. queued: true
  63.  
  64. # Vote command.
  65. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  66. # and https://www.minecraftjson.com for json text format
  67. vote-command:
  68. enabled: true
  69. use-json-text: false
  70. text: |-
  71. &a&m-------------------------------------------
  72. &a here Are Lists Of Voting Sites
  73. &a Simply Click A Link And Follow its Instructions To Vote
  74. &a&m--------------------------------------------
  75. &6#1 https://minecraft-mp.com/server/234372/vote/
  76. &a&m--------------------------------------------
  77. &6#2 https://minecraft-server-list.com/server/446256/vote/
  78. &a&m--------------------------------------------
  79. &6#3 https://minecraftservers.org/vote/563998
  80. &a&m--------------------------------------------
  81.  
  82. # Vote reminder.
  83. vote-reminder:
  84. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  85. on-join: true
  86. repeat: 180
  87.  
  88. # Controls the /sv <top/leaderboard> command.
  89. leaderboard:
  90. # Supported: text, scoreboard
  91. display: text
  92.  
  93. # The text format supports pagination.
  94. text:
  95. per-page: 10
  96. header: "&c&m &r&b Top Voters &r&c&m &r"
  97. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  98.  
  99. # Control the scoreboard.
  100. scoreboard:
  101. title: Top voters
  102. max: 10
  103.  
  104. # Control top player signs.
  105. top-player-signs:
  106. format:
  107. - "#%num%"
  108. - ""
  109. - "%player%"
  110. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement