Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 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 need to pass before allowing another vote (per-service). This will apply per service.
  22. # Default: 3600 seconds (1 hour)
  23. cooldown-per-service: 0
  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. permission: superbvote.test
  36. chance: 100
  37. service: SpecialService
  38. commands:
  39. - give %player% diamond 4
  40. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  41. broadcast-message: "&a%player% got really lucky and was rewarded with 4 diamonds and $1000!"
  42. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  43. - if: {}
  44. commands:
  45. - eco give %player% 2500
  46. player-message: "&aThanks for voting for us on %service%, you have been rewarded with $2500."
  47. broadcast-message: "&9%player% has voted for us on &c%service% &9and was rewarded with &c$2500!"
  48.  
  49. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  50. require-online: true
  51.  
  52. # Broadcast settings:
  53. broadcast:
  54. # Should we broadcast votes at all?
  55. enabled: true
  56.  
  57. # Should we tell players if they voted?
  58. message-player: true
  59.  
  60. # Should we broadcast queued votes?
  61. queued: true
  62.  
  63. # Vote command.
  64. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  65. # and https://www.minecraftjson.com for json text format
  66. vote-command:
  67. enabled: true
  68. use-json-text: true
  69. text: |-
  70. &9---------| &cVote For Us For Rewards! &9|---------
  71.  
  72. # Vote reminder.
  73. vote-reminder:
  74. message: "&9Don't forget to vote for us to support the server! You currently have &c%votes%&9 votes."
  75. on-join: true
  76. repeat: 300
  77.  
  78. # Controls the /sv <top/leaderboard> command.
  79. leaderboard: true
  80. # Supported: text, scoreboard
  81. display: scoreboard
  82.  
  83. # The text format supports pagination.
  84. text:
  85. per-page: 10
  86. header: "&c&m &r&b Top Voters &r&c&m &r"
  87. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  88.  
  89. # Control the scoreboard.
  90. scoreboard:
  91. title: Top voters
  92. max: 10
  93.  
  94. # Control top player signs.
  95. top-player-signs:
  96. format:
  97. - "#%num%"
  98. - ""
  99. - "%player%"
  100. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement