Advertisement
Guest User

Config

a guest
Dec 30th, 2018
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. # SuperbVote configuration
  2. # A superb vote plugin made by Tux.
  3. #
  4. # https://minecraft.minimum.io/wiki/SuperbVote
  5.  
  6. # Database configuration.
  7. # Currently supported: "json".
  8. storage:
  9. database: json
  10. json:
  11. file: votes.json
  12. mysql:
  13. host: 127.0.0.1
  14. username: root
  15. password: topsecret
  16. database: superbvote
  17. table: votes
  18. read-only: false
  19.  
  20. # General vote configuration.
  21. votes:
  22. # At least this many seconds need to pass before allowing another vote (per-service). This will apply per service.
  23. # Default: 3600 seconds (1 hour)
  24. cooldown-per-service: 3600
  25.  
  26. # Whether or not to treat the server as online-mode. This is mostly required for BungeeCord setups.
  27. force-online-mode: false
  28.  
  29. # Whether or not to treat fake votes as real votes
  30. process-fake-votes: true
  31.  
  32. # Rewards. This is the main section you will need to edit. Ordering is important.
  33. rewards:
  34. # Example of matchers.
  35. - if:
  36. permission: superbvote.test
  37. chance: 100
  38. service: SpecialService
  39. commands:
  40. - crate key %player% vote
  41. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  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. - crate key %player% vote
  47. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 1 Vote Key."
  48. broadcast-message: "&a%player% Voted and was rewarded with 1 Vote Key go vote for yours"
  49.  
  50. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  51. require-online: true
  52.  
  53. # Broadcast settings:
  54. broadcast:
  55. # Should we broadcast votes at all?
  56. enabled: true
  57.  
  58. # Should we tell players if they voted?
  59. message-player: true
  60.  
  61. # Should we broadcast queued votes?
  62. queued: true
  63.  
  64. # Vote command.
  65. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  66. # and https://www.minecraftjson.com for json text format
  67. vote-command:
  68. enabled: true
  69. use-json-text: false
  70. text: &8{&6===================&8}@&6&l1. &9&lhttps://goo.gl/FiAXFt@&8{&6===================&8}@&6&l2. &9&lhttps://goo.gl/Giht7r@&8{&6===================&8}@&6&l3. &9&lhttps://goo.gl/4L9ctV@&8{&6===================&8}@&6&l4. &9&lhttps://goo.gl/sfmZWe@&8{&6===================&8}@&6&l5. &9&lhttps://goo.gl/5GXgYD@&8{&6===================&8}@&6&l6 . &9&lhttps://goo.gl/JCBfs3
  71.  
  72. # Vote reminder.
  73. vote-reminder:
  74. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  75. on-join: true
  76. repeat: 7200
  77.  
  78. # Controls the /sv <top/leaderboard> command.
  79. leaderboard:
  80. # Supported: text, scoreboard
  81. display: text
  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