Advertisement
Guest User

Untitled

a guest
May 27th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 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. # General vote configuration.
  10. votes:
  11. # At least this many seconds must pass before allowing another vote (per-service). This will apply per service.
  12. # Default: 3600 seconds (1 hour)
  13. cooldown-per-service: 0
  14.  
  15. # Whether or not to treat fake votes as real votes
  16. process-fake-votes: true
  17.  
  18. # Rewards. This is the main section you will need to edit. Ordering is important.
  19. rewards:
  20. # Example of matchers. See https://github.com/minecrafter/SuperbVote/wiki/Configuration#if for a full list of available
  21. # matchers.
  22.  
  23. - if:
  24. chance-pecentage: 5
  25. commands:
  26. - crate give %player% legendary 1
  27. player-message: "&2&lU&a&lD &8» &aThank you for voting for us! &c♥"
  28. broadcast-message: "&2&lU&a&lD &8» &a%player% has voted for us at &b%service%&a using &c/vote&a, was super lucky, and has received 1 LEGENDARY crate key!"
  29. - if:
  30. chance-pecentage: 20
  31. commands:
  32. - crate give %player% rare 1
  33. player-message: "&2&lU&a&lD &8» &aThank you for voting for us! &c♥"
  34. broadcast-message: "&2&lU&a&lD &8» &a%player% has voted for us at &b%service%&a using &c/vote&a, was lucky, and has received 1 RARE crate key!"
  35. - if:
  36. chance-pecentage: 75
  37. commands:
  38. - crate give %player% common 1
  39. player-message: "&2&lU&a&lD &8» &aThank you for voting for us! &c♥"
  40. broadcast-message: "&2&lU&a&lD &8» &a%player% has voted for us at &b%service%&a using &c/vote &aand has received 1 COMMON crate key!"
  41.  
  42. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  43.  
  44. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  45. require-online: true
  46.  
  47. # Broadcast settings:
  48. broadcast:
  49. # Should we broadcast votes at all?
  50. enabled: true
  51.  
  52. # Should we tell players if they voted?
  53. message-player: true
  54.  
  55. # Should we broadcast queued votes?
  56. queued: true
  57.  
  58. # Vote command.
  59. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  60. # and https://www.minecraftjson.com for json text format
  61. vote-command:
  62. enabled: true
  63. use-json-text: false
  64. text: |-
  65. &2&lU&a&lD &8» &eBy voting for us, you are supporting &2U&aD &ein increasing it's playerbase and we really appreciate it! You may also receive a few rewards from voting! Vote for &2U&aD &eon the following sites:
  66. &c1. &7http://minecraftservers.org/server/499643
  67. &c2. &7https://www.minecraftforum.net/servers/19029-unique-dimensions/vote
  68. &c3. &7https://minecraft-server-list.com/server/426228/vote/
  69. &c4. &8https://topg.org/Minecraft/in-491481
  70. &c5. &8https://minecraft-server.net/vote/uniquedimensions
  71. &c6. &8http://minecraft-mp.com/server/195369/vote/
  72.  
  73.  
  74. # Vote reminder.
  75. vote-reminder:
  76. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes. Find out more about voting using &b/vote"
  77. on-join: true
  78. repeat: 180
  79.  
  80. # Controls the /sv <top/leaderboard> command.
  81. leaderboard:
  82. # Supported: text, scoreboard
  83. display: text
  84.  
  85. # The text format supports pagination.
  86. text:
  87. per-page: 10
  88. header: "&c&m &r&b Top Voters &r&c&m &r"
  89. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  90.  
  91. # Control the scoreboard.
  92. scoreboard:
  93. title: Top voters
  94. max: 10
  95.  
  96. # Control top player signs.
  97. top-player-signs:
  98. format:
  99. - "#%num%"
  100. - ""
  101. - "%player%"
  102. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement