Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 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: 0
  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. - give %player% diamond 4
  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. - eco give %player% 500
  47. - cratekeys give %player% votecrate 1
  48. broadcast-message: "&a%player% has voted on for &6&lBAZE &aat %service% and was rewarded with a &2Vote Key &and &2$500"
  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: |-
  71. &a&m----------------------------------------
  72. &a Click on the links to vote.
  73.  
  74. &6① &2&l→&ehttp://minecraft-mp.com/server/125304/vote/&2&l←
  75. &6② →&eLink2←
  76. &6③ →&eLink3←
  77. &6④ →&eLink4←
  78.  
  79. &a&m----------------------------------------
  80.  
  81. # Vote reminder.
  82. vote-reminder:
  83. message: "&a&m----------------------------------------&r ►&bIf you need a boost, vote by typing &a/vote&r &a&m----------------------------------------"
  84. on-join: true
  85. repeat: 900
  86.  
  87. # Controls the /sv <top/leaderboard> command.
  88. leaderboard:
  89. # Supported: text, scoreboard
  90. display: text
  91.  
  92. # The text format supports pagination.
  93. text:
  94. per-page: 10
  95. header: "&c&m &r&b Top Voters &r&c&m &r"
  96. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  97.  
  98. # Control the scoreboard.
  99. scoreboard:
  100. title: Top voters
  101. max: 10
  102.  
  103. # Control top player signs.
  104. top-player-signs:
  105. format:
  106. - "#%num%"
  107. - ""
  108. - "%player%"
  109. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement