Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 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. # Rewards. This is the main section you will need to edit. Ordering is important.
  27. rewards:
  28. # Example of matchers.
  29. - if:
  30. permission: superbvote.vip
  31. chance: 50
  32. commands:
  33. - eco give %player% 100
  34. player-message: "&fAi primit 100 coins pentru ca ai votat."
  35. broadcast-message: ""
  36. # Default rewards are defined by having no preconditions. Place it at the bottom of the config.
  37. - if: {}
  38. commands:
  39. - give %player% diamond
  40. player-message: "&aThanks for voting for us, you have been rewarded with 1 diamond"
  41. broadcast-message: "&fVoteaza serverul prin /vote! pentru a primi un premiu!"
  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 broadcast queued votes?
  52. queued: true
  53.  
  54. # Vote command.
  55. vote-command:
  56. enabled: true
  57. text: |-
  58. &7&m--------------------------------------------------
  59. &b Link : &NIN LUCRU
  60. &7&m--------------------------------------------------
  61.  
  62. # Vote reminder.
  63. vote-reminder:
  64. message: "&fNu uita sa votezi! Momentan ai &b %votes% &f voturi!"
  65. repeat: 180
  66.  
  67. # Controls the /sv <top/leaderboard> command.
  68. leaderboard:
  69. # Supported: text, scoreboard
  70. display: text
  71.  
  72. # The text format supports pagination.
  73. text:
  74. per-page: 10
  75. header: ""
  76. entry: ""
  77.  
  78. # Control the scoreboard.
  79. scoreboard:
  80. title: Top voters
  81. max: 10
  82.  
  83. # Control top player signs.
  84. top-player-signs:
  85. format:
  86. - "#%num%"
  87. - ""
  88. - "%player%"
  89. - "&l%votes% &rvotes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement