Advertisement
Guest User

Untitled

a guest
Jan 1st, 2019
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 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-percentage: 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. # A default reward is required. Default rewards are defined by using default: true as a matcher. No other matchers can
  45. # be used with this matcher and only one such reward can be the default reward.
  46. - if:
  47. world: SkySpawn
  48. commands:
  49. - eco give %player% 50
  50. player-message: "&aThanks for voting for us on %service%, you have been rewarded with $50."
  51. broadcast-message: "&a%player% has voted for us on %service% and was rewarded with $50!"
  52. - if:
  53. default: true
  54. every-cumulative-votes: 5
  55. commands:
  56. - lp user %player% permission settemp group.voter true 2m
  57. broadcast-message: "&a%player% can now use the Voting Mine!"
  58.  
  59. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  60. require-online: true
  61.  
  62. # Broadcast settings:
  63. broadcast:
  64. # Should we broadcast votes at all?
  65. enabled: true
  66.  
  67. # Should we tell players if they voted?
  68. message-player: true
  69.  
  70. # Should we broadcast queued votes?
  71. queued: true
  72.  
  73. # Vote command.
  74. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  75. # and https://www.minecraftjson.com for json text format
  76. vote-command:
  77. enabled: true
  78. use-json-text: false
  79. text:
  80. Use the links Below for Voting
  81. &ahttps://www.planetminecraft.com/server/cottoncraft-4027646/vote/&r
  82. &chttp://www.minepick.com/servers/14894/&r &c<-- CURRENTLY OFFLINE&r
  83. &ahttp://www.minecraft-servers-list.org/details/CottonBawl/&r
  84. &ahttps://minecraftservers.biz/servers/141306/&r
  85. &ahttp://minecraftservers.org/vote/462203&r
  86. &ahttps://craft-list.net/minecraft-server/CottonCraft&r
  87. &ahttp://minecraft-server-list.com/server/403923/&r
  88.  
  89. # Vote reminder.
  90. vote-reminder:
  91. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  92. on-join: true
  93. repeat: 180
  94.  
  95. # Controls the /sv <top/leaderboard> command.
  96. leaderboard:
  97. # Supported: text, scoreboard
  98. display: text
  99.  
  100. # The text format supports pagination.
  101. text:
  102. per-page: 10
  103. header: "&c&m &r&b Top Voters &r&c&m &r"
  104. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  105. page: "&7(page %page%/%total%)"
  106.  
  107. # Control the scoreboard.
  108. scoreboard:
  109. title: Top voters
  110. max: 10
  111.  
  112. # Control top player signs.
  113. top-player-signs:
  114. format:
  115. - "#%num%"
  116. - ""
  117. - "%player%"
  118. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement