Advertisement
Guest User

Untitled

a guest
Feb 7th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 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-pecentage: 5
  38. service: SpecialService
  39. commands:
  40. - give %player% diamond 4
  41. player-message: "&0&l:[&5&lE&d&lT&5&lE&0&l]: &5Thank you for voting for Laputa Online!"
  42. broadcast-message: "&a%player% got really lucky and was rewarded with 4 diamonds and $1000!"
  43. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  44. - if: {}
  45. commands:
  46. - eco give %player% 500
  47. - kit luckyblocks1 %player%
  48. - kit mysterydust100 %player%
  49. player-message: "&0&l:[&5&lE&d&lT&5&lE&0&l]: &5Thank you for voting for Laputa Online!"
  50. broadcast-message: "&0&l:[&5&lE&d&lT&5&lE&0&l]: &5%player% has voted and received their rewards!"
  51.  
  52. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  53. require-online: false
  54.  
  55. # Broadcast settings:
  56. broadcast:
  57. # Should we broadcast votes at all?
  58. enabled: true
  59.  
  60. # Should we tell players if they voted?
  61. message-player: false
  62.  
  63. # Should we broadcast queued votes?
  64. queued: true
  65.  
  66. # Vote command.
  67. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  68. # and https://www.minecraftjson.com for json text format
  69. vote-command:
  70. enabled: false
  71. use-json-text: false
  72. text: |-
  73. You could vote for us, but the owner forgot to add the list of websites to vote at!
  74.  
  75. # Vote reminder.
  76. vote-reminder:
  77. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  78. on-join: true
  79. repeat: 1800
  80.  
  81. # Controls the /sv <top/leaderboard> command.
  82. leaderboard:
  83. # Supported: text, scoreboard
  84. display: text
  85.  
  86. # The text format supports pagination.
  87. text:
  88. per-page: 10
  89. header: "&c&m &a&k||&3 Top Voters &a&k||&r &r"
  90. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  91.  
  92. # Control the scoreboard.
  93. scoreboard:
  94. title: Top voters
  95. max: 10
  96.  
  97. # Control top player signs.
  98. top-player-signs:
  99. format:
  100. - "#%num%"
  101. - ""
  102. - "%player%"
  103. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement