Advertisement
Guest User

Untitled

a guest
Mar 11th, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 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: mysql
  10. json:
  11. file: votes.json
  12. mysql:
  13. host: 127.0.0.1
  14. port: 3306
  15. username: user
  16. password: 'pass1ord'
  17. database: minecraft
  18. table: votes
  19. read-only: false
  20.  
  21. # General vote configuration.
  22. votes:
  23. # At least this many seconds need to pass before allowing another vote (per-service). This will apply per service.
  24. # Default: 3600 seconds (1 hour)
  25. cooldown-per-service: 86400
  26.  
  27. # Whether or not to treat the server as online-mode. This is mostly required for BungeeCord setups.
  28. force-online-mode: false
  29.  
  30. # Rewards. This is the main section you will need to edit. Ordering is important.
  31. rewards:
  32. # Example of matchers.
  33. - if: {}
  34. commands:
  35. - money deposit %player% 100
  36. - points give %player% 50
  37. player-message: "&4thankyou"
  38. broadcast-message: ""
  39. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  40. require-online: false
  41.  
  42. # Broadcast settings:
  43. broadcast:
  44. # Should we broadcast votes at all?
  45. enabled: false
  46.  
  47. # Should we tell players if they voted?
  48. message-player: true
  49.  
  50. # Should we broadcast queued votes?
  51. queued: true
  52.  
  53. # Vote command.
  54. vote-command:
  55. enabled: true
  56. text: |-
  57. &4// &7vote here!
  58. &4// &ehttp://minecraft-mp.com/
  59.  
  60. # Vote reminder.
  61. vote-reminder:
  62. message: "&4vote us!"
  63. on-join: true
  64. repeat: 300
  65.  
  66. # Controls the /sv <top/leaderboard> command.
  67. leaderboard:
  68. # Supported: text, scoreboard
  69. display: text
  70. # The text format supports pagination.
  71. text:
  72. per-page: 10
  73. header: "&c&m &r&b top voter &r&c&m &r"
  74. entry: "&e%num%. &7%player% (&e%votes%&7 v)"
  75.  
  76. # Control the scoreboard.
  77. scoreboard:
  78. title: toper
  79. max: 10
  80.  
  81. # Control top player signs.
  82. top-player-signs:
  83. format:
  84. - "#%num%"
  85. - ""
  86. - "%player%"
  87. - "&l%votes% &rv"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement