Advertisement
Guest User

superbvote

a guest
Jun 26th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. # SuperbVote configuration
  2. # A superb vote plugin made by Tux.
  3. #
  4. # https://github.com/minecrafter/SuperbVote/wiki
  5.  
  6. # Database configuration.
  7. storage:
  8. database: json
  9. json:
  10. file: votes.json
  11. mysql:
  12. host: 107.181.154.237
  13. username: mysql1875
  14. password: 2d013ee503
  15. database: superbvote
  16. table: votes
  17. read-only: false
  18.  
  19. # General vote configuration.
  20. votes:
  21. # At least this many seconds need to pass before allowing another vote (per-service). This will apply per service.
  22. # Default: 3600 seconds (1 hour)
  23. cooldown-per-service: 3600
  24.  
  25. # Whether or not to treat the server as online-mode. This is mostly required for BungeeCord setups.
  26. force-online-mode: false
  27.  
  28. # Whether or not to treat fake votes as real votes
  29. process-fake-votes: true
  30.  
  31. # Rewards. This is the main section you will need to edit. Ordering is important.
  32. rewards:
  33. # Example of matchers.
  34. - if:
  35. permission: superbvote.test
  36. chance: 100
  37. service: SpecialService
  38. commands:
  39. - crate givekey %player% Crate 1
  40. - eco give %player% 10000
  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 givekey %player% Crate 1
  47. player-message: "&aThanks for voting for us on %service%, you have been rewarded with a Crate key!"
  48. broadcast-message: "&a%player% has voted for us on %service% and was rewarded with a Crate key!"
  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. &bhttp://topg.org/Minecraft/in-463158
  72. &bhttps://www.planetminecraft.com/server/fiercefactions-3938988/vote/
  73. &bhttp://minecraftservers.org/vote/440844
  74.  
  75. # Vote reminder.
  76. vote-reminder:
  77. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  78. on-join: true
  79. repeat: 180
  80.  
  81. # Controls the /sv <top/leaderboard> command.
  82. leaderboard:
  83. # Supported: text, scoreboard
  84. display: text
  85.  
  86. # The text format supports pagination.
  87. text:
  88. per-page: 10
  89. header: "&c&m &r&b Top Voters &r&c&m &r"
  90. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  91.  
  92. # Control the scoreboard.
  93. scoreboard:
  94. title: Top voters
  95. max: 10
  96.  
  97. # Control top player signs.
  98. top-player-signs:
  99. format:
  100. - "#%num%"
  101. - ""
  102. - "%player%"
  103. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement