Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.30 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: 192.95.30.123
  14.     username: root
  15.     password: ThisPWsucks123
  16.     database: Server
  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.       chance: 10
  31.     commands:
  32.    - addxp %player% 100
  33.     player-message: "&aYou were lucky and received 100 XP!"
  34.     broadcast-message: "&a%player% got lucky and got 100 XP!"
  35.   - if:
  36.       chance: 20
  37.     commands:
  38.    - addxp %player% 250
  39.     player-message: "&aYou were really lucky and received 250 XP!"
  40.     broadcast-message: "&a%player% got really lucky and got 250 XP!"
  41.   - if:
  42.       chance: 100
  43.     commands:
  44.    - addxp %player% 1000
  45.     - addpack normal %player%
  46.     player-message: "&aYou were extremely lucky and received 1000 XP & an XP Pack!"
  47.     broadcast-message: "&a%player% was extremely lucky and got 1000 XP & an XP Pack!"
  48.   - if:
  49.       chance: 250
  50.     commands:
  51.    - addxp %player% 2000
  52.     - addpack super %player%
  53.     player-message: "&aYou were outrageously lucky and received 2000 XP & a super XP Pack!"
  54.     broadcast-message: "&a%player% was outrageously lucky and got 2000 XP & a super XP Pack!"
  55.   - if:
  56.       chance: 1000
  57.     commands:
  58.    - addxp %player% 10000
  59.     player-message: "&aYou were outrageously lucky and received 10000 XP!"
  60.     broadcast-message: "&a%player% was outrageously lucky and got 10000 XP!"
  61.   - if: {}
  62.     commands:
  63.    - addxp %player% 50
  64.     player-message: "&aThanks for voting on %service%! Here's 50 XP!"
  65.     broadcast-message: "&a%player% has voted on %service% and received 50 XP!"
  66.  
  67. # Whether or not players need to be online to vote. If set, offline player votes are queued for when the player next logs in.
  68. require-online: false
  69.  
  70. # Broadcast settings:
  71. broadcast:
  72. # Should we broadcast votes at all?
  73.   enabled: true
  74.  
  75.   # Should we broadcast queued votes?
  76.   queued: true
  77.  
  78. # Vote command.
  79. vote-command:
  80.   enabled: true
  81.   text: |-
  82.     &2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-
  83.     &e&l>>> &6&lVoting Sites &e&l<<<
  84.     &aPlanet Minecraft: &lhttp://goo.gl/slSQBr
  85.     &aMCServers: &lhttp://goo.gl/ctASdj
  86.     &2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-&2-&6-
  87. # Vote reminder.
  88. vote-reminder:
  89.   message: "&cDon't forget to vote with /vote! You currently have &a%votes%&c votes this month."
  90.   on-join: true
  91.   repeat: 600
  92.  
  93. # Controls the /sv <top/leaderboard> command.
  94. leaderboard:
  95. # Supported: text, scoreboard
  96.   display: text
  97.  
  98.   # The text format supports pagination.
  99.   text:
  100.     per-page: 10
  101.     header: "&c&m         &r&b Top Voters &r&c&m         &r"
  102.     entry: "&e%num%. &7%player% (&e%votes%&7 votes)"
  103.  
  104.   # Control the scoreboard.
  105.   scoreboard:
  106.     title: Top voters
  107.     max: 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement