Advertisement
Guest User

Untitled

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