Advertisement
Guest User

ada

a guest
Mar 13th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 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. - if:
  36. permission: superbvote.test
  37. chance-pecentage: 5
  38. service: SpecialService
  39. commands:
  40. - /eco give %player% 1000
  41. - /crate key %player Vote 1
  42. - /give %player minecraft:diamond 12
  43. player-message: "&aThanks for meeting nearly impossible conditions, you have been rewarded with 4 diamonds and $1000."
  44. broadcast-message: "&a%player% got really lucky and was rewarded with 4 diamonds and $1000!"
  45. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  46. - if: {}
  47. commands:
  48. - /eco give %player% 1000
  49. - /crate key %player Vote 1
  50. - /give %player minecraft:diamond 12
  51. player-message: "&aTerima Kasih Karna Kamu Sudah Vote di %service%, Kamu Mendapatkan $1000."
  52. broadcast-message: "&a%player% Terima kasih Vote kamu di server ini adalah %votes% dan kamu mendapatkan 1 Key Vote!"
  53.  
  54. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  55. require-online: true
  56.  
  57. # Broadcast settings:
  58. broadcast:
  59. # Should we broadcast votes at all?
  60. enabled: true
  61.  
  62. # Should we tell players if they voted?
  63. message-player: true
  64.  
  65. # Should we broadcast queued votes?
  66. queued: true
  67.  
  68. # Vote command.
  69. # See http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/351959-1-9-json-text-component-for-tellraw-title-books
  70. # and https://www.minecraftjson.com for json text format
  71. vote-command:
  72. enabled: false
  73. use-json-text: false
  74. text: |-
  75. You could vote for us, but the owner forgot to add the list of websites to vote at!
  76.  
  77. # Vote reminder.
  78. vote-reminder:
  79. message: "&cDon't forget to vote for us! You currently have &a%votes%&c votes."
  80. on-join: true
  81. repeat: 180
  82.  
  83. # Controls the /sv <top/leaderboard> command.
  84. leaderboard:
  85. # Supported: text, scoreboard
  86. display: text
  87.  
  88. # The text format supports pagination.
  89. text:
  90. per-page: 10
  91. header: "&c&m &r&b Top Voters &r&c&m &r"
  92. entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  93.  
  94. # Control the scoreboard.
  95. scoreboard:
  96. title: Top voters
  97. max: 10
  98.  
  99. # Control top player signs.
  100. top-player-signs:
  101. format:
  102. - "#%num%"
  103. - ""
  104. - "%player%"
  105. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement