Advertisement
Guest User

Untitled

a guest
Jul 27th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 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. # Once you've configured SuperbVote, add it to our official server list, CraftServers.net:
  7. # Official server list: https://www.craftservers.net/
  8.  
  9. # Database configuration.
  10. storage:
  11. database: json
  12. json:
  13. file: votes.json
  14. mysql:
  15. host: 127.0.0.1
  16. username: root
  17. password: topsecret
  18. database: superbvote
  19. table: votes
  20. read-only: false
  21.  
  22. # General vote configuration.
  23. votes:
  24. # At least this many seconds must pass before allowing another vote (per-service). This will apply per service.
  25. # Default: 3600 seconds (1 hour)
  26. cooldown-per-service: 3600
  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. See https://github.com/minecrafter/SuperbVote/wiki/Configuration#if for a full list of available
  34. # matchers.
  35. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  36. - if: {}
  37. commands:
  38. - eco give %player% 1000
  39. - crazycrates give p vote 1 %player%
  40. player-message: "&aThanks for voting for us on %service%, you have been rewarded with $1000 and a voting key."
  41. broadcast-message: "&b%player% &7has voted and claimed rewards! &bVote &7to claim yours! &8(&b/vote&8) "
  42.  
  43. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  44. require-online: false
  45.  
  46. # Broadcast settings:
  47. broadcast:
  48. # Should we broadcast votes at all?
  49. enabled: true
  50.  
  51. # Should we tell players if they voted?
  52. message-player: true
  53.  
  54. # Should we broadcast queued votes?
  55. queued: false
  56.  
  57. # Vote command.
  58. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  59. # and https://www.minecraftjson.com for json text format
  60. vote-command:
  61. enabled: true
  62. use-json-text: false
  63. text: |-
  64. &a&lVote for our server!
  65. &9https://factionservers.net/vote/
  66.  
  67. # Vote reminder.
  68. vote-reminder:
  69. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  70. on-join: true
  71. repeat: 360
  72.  
  73. # Controls the /sv <top/leaderboard> command.
  74. leaderboard:
  75. # Supported: text, scoreboard
  76. display: text
  77.  
  78. # The text format supports pagination.
  79. text:
  80. per-page: 10
  81. header: "&c&m &r&b Top Voters &r&c&m &r"
  82. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  83.  
  84. # Control the scoreboard.
  85. scoreboard:
  86. title: Top voters
  87. max: 10
  88.  
  89. # Control top player signs.
  90. top-player-signs:
  91. format:
  92. - "#%num%"
  93. - ""
  94. - "%player%"
  95. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement