Advertisement
Guest User

superbvote config

a guest
Nov 2nd, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 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. - eco give %player% 5000
  41. - acb %player% 250
  42. - tm abroadcast &8[&6&lVote&8] &7%player% &8has voted for us on &7%service% &8and was rewarded with &7$5000 and 250 extra claim blocks!
  43.  
  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. default: true
  48. commands:
  49. - eco give %player% 1000
  50. - acb %player% 50
  51. - tm abroadcast &8[&6&lVote&8] &7%player% &8has voted for us on &7%service% &8and was rewarded with &7$1000 and 50 extra claim blocks!
  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. &7--=--=--=--=--=--=--=--=--=--
  75.  
  76. &a&l✔ &7https://bit.ly/2EMKfdj
  77. &a&l✔ &7https://bit.ly/2D8bvS0
  78. &a&l✔ &7https://bit.ly/2CMfVgn
  79. &a&l✔ &7https://bit.ly/2PxAWlF
  80. &a&l✔ &7https://bit.ly/2Q2rqEi
  81. &a&l✔ &7https://bit.ly/2SroYIU
  82.  
  83. &7--=--=--=--=--=--=--=--=--=--
  84.  
  85. # Vote reminder.
  86. vote-reminder:
  87. message: "&8[&6&lVote&8] &eDon't forget to vote for us! You currently have &6%votes%&e votes."
  88. on-join: true
  89. repeat: 180
  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. page: "&7(page %page%/%total%)"
  102.  
  103. # Control the scoreboard.
  104. scoreboard:
  105. title: Top voters
  106. max: 10
  107.  
  108. # Control top player signs.
  109. top-player-signs:
  110. format:
  111. - "#%num%"
  112. - ""
  113. - "%player%"
  114. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement