Advertisement
Guest User

Untitled

a guest
Mar 7th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 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: 10
  25.  
  26. # Whether or not to treat the server as online-mode. This is mostly required for BungeeCord setups.
  27. force-online-mode: true
  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. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  35. - if: {}
  36. commands:
  37. - eco give %player% 2500
  38. - crate gk %player% Vote 2
  39. - addcredits %player% 5
  40. - xp give %player% 15l
  41. - give %player% grass 32
  42. - give %player% cobble 32
  43. - give %player% diamondblock 1
  44. player-message: "&e&lVOTE &aThanks for voting for us on %service%, you rewards have been credited."
  45. broadcast-message: ""
  46.  
  47. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  48. require-online: true
  49.  
  50. # Broadcast settings:
  51. broadcast:
  52. # Should we broadcast votes at all?
  53. enabled: false
  54.  
  55. # Should we tell players if they voted?
  56. message-player: true
  57.  
  58. # Should we broadcast queued votes?
  59. queued: false
  60.  
  61. # Vote command.
  62. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  63. # and https://www.minecraftjson.com for json text format
  64. vote-command:
  65. enabled: true
  66. use-json-text: false
  67. text: |-
  68. &e&lVOTE LINKS: &a(1) &f&nhttp://bit.ly/2la3N1g&a (2) &f&nhttp://bit.ly/2lUnZkY&a (3) &f&nhttp://bit.ly/2l9Tdr5
  69.  
  70. # Vote reminder.
  71. vote-reminder:
  72. message: ""
  73. on-join: false
  74. repeat: 3600
  75.  
  76. # Controls the /sv <top/leaderboard> command.
  77. leaderboard:
  78. # Supported: text, scoreboard
  79. display: text
  80.  
  81. # The text format supports pagination.
  82. text:
  83. per-page: 10
  84. header: "&c&m &r&b Top Voters &r&c&m &r"
  85. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  86.  
  87. # Control the scoreboard.
  88. scoreboard:
  89. title: Top voters
  90. max: 10
  91.  
  92. # Control top player signs.
  93. top-player-signs:
  94. format:
  95. - "#%num%"
  96. - ""
  97. - "%player%"
  98. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement