Advertisement
Guest User

Untitled

a guest
Jan 19th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.24 KB | None | 0 0
  1. #VoteRoulette Config
  2.  
  3. ##########
  4. #Settings#
  5. ##########
  6.  
  7. # Whether or not to send a message to a player when they vote
  8. messagePlayer: true
  9.  
  10. # Whether or not to broadcast to the server when a player votes
  11. broadcastToServer: true
  12.  
  13. # Whether or not to log to console when a player votes
  14. logToConsole: true
  15.  
  16. # Whether or not to have the periodic reminder enabled
  17. # You can change this reminder in the messages.yml file.
  18. usePeriodicReminder: true
  19.  
  20. # How often the reminder is broadcasted (in minutes), if enabled.
  21. periodicReminderInterval: 60
  22.  
  23. #################
  24. #Rewards Section#
  25. #################
  26.  
  27. ## Rewards List ##
  28. #
  29. # Here you can make multiple rewards.
  30. # Each reward can have:
  31. # - a list of item IDs. Each item can have amount, dataID, enchants, name, and lore sections to further customize item!
  32. # - an amount of money (if Vault is installed)
  33. # - an amount of xp levels that will be given
  34. # - a list of commands to be run by the console. %player% will be replaced by the players name.
  35. # - a list of permission groups the reward will be considered for (if Vault is installed)
  36. # You can leave out any of these options if you do not wish to use them
  37. # and you can use them in any order
  38. #
  39. # REMEMBER: Everything is indented 4 spaces from the next line and you can NOT use tabs
  40. #
  41. #Example reward:
  42. # Awesome Reward: # Name of the reward (Players will see this!)
  43. # items: # This one gives 5 diamonds, a diamond sword (with sharpness 5 enchant,
  44. # # a custom name, and a lore message), 16 steak, and 32 green wool!
  45. # 264:
  46. # amount: 5
  47. # 276:
  48. # amount: 1
  49. # enchants: sharpness(5), looting(3)
  50. # name: Wrath of Herobrine
  51. # lore: Thy Mighty Sword
  52. # 364:
  53. # amount: 16
  54. # 35:
  55. # dataID: 5
  56. # amount: 32
  57. #
  58. # currency: 100 # Player will receive $100 in-game currency
  59. # xpLevels: 5 # Player will gain 5 xp levels
  60. # commands:
  61. # - gamemode %player% creative # Players gamemode will be set to creative
  62. # permGroups: Members, Donators # Only players in the Members or Donators permission groups are eligible for the reward
  63. # message: "&eCongrats %player%! You have received some awesome stuff and got creative mode!" # This message will display to the player instead of the default one.
  64. # # Dont forget the quotes (" ") for the message section!
  65.  
  66. Rewards:
  67. # Each reward must have a different name
  68.  
  69. Ooh Shiny:
  70. items:
  71. 264:
  72. amount: 3
  73.  
  74.  
  75. Lame Reward:
  76. items:
  77. 3:
  78. amount: 64
  79.  
  80. Exp Bottles:
  81. items:
  82. 384:
  83. amount: 64
  84.  
  85. Spongey!:
  86. items:
  87. 19:
  88. amount: 1
  89. 276:
  90. amount: 1
  91. enchants: sharpness(4), looting(3)
  92. name: Wrath of Herobrine
  93. lore: Thy Mighty Sword
  94.  
  95.  
  96. # Set the following to true if you want a reward to be chosen at random
  97. giveRandomReward: true
  98.  
  99. # Use to set the default reward. (Only applies if giveRandomRewards is set to false)
  100. defaultReward: Ooh Shiny
  101.  
  102. # Set the following to true if you only want players to get rewarded after they vote so many times
  103. # For example, you want them to vote on all your server lists before getting rewarded
  104. # If this is false, players will receive an award every time they vote
  105. giveRewardsOnThreshold: false
  106.  
  107. # If the above is set to true, this is the number of how many votes till a player will receive a reward
  108. voteThreshold: 5
  109.  
  110. ## Milestones List ##
  111. #
  112. # Milestones are special rewards that are given after a player has made so many votes
  113. # They are created in the config the same way as regular rewards, however you must include
  114. # a "votes: #" section with how many votes you want the milestone to be! The milestone will otherwise
  115. # be ignored.
  116. #
  117. # You can also include a "recurring: true" section to have the milestone recur upon multiples
  118. # For example, if the votes is set to 50 and recurring is true, players will receive this reward every 50 votes! (50, 100, 150, etc)
  119. #
  120. # If multiple milestones land on the same vote count, you can have one chosen at random (see below) or you can set which milestones have more priority over others using a
  121. # "priority: #" section. It can be any number but 1 is considered highest priority (Think "first priority") and the number cant be less than 1.
  122. # If multiple milestones have the same priority levels, the first
  123. # one will be used. The default priority is 10 if there is none specified.
  124. #
  125. #Example milestone:
  126. # Nickel and Dime: # Name of the milestone (Players will see this!)
  127. # votes: 15 # The number of votes required to reach this milestone
  128. # currency: 200 # $200 in-game currency (if vault is installed)
  129. # xpLevels: 5 # Player will gain 5 xp levels
  130. # permGroups: VIP # Only players in the VIP permission group are eligible for the milestone
  131. # recurring: false # This milestone will open happen once, instead of every 15 votes!
  132.  
  133. Milestones:
  134. # Each milestone must have a different name
  135.  
  136. # My First Milestone:
  137. # votes: 25
  138. # recurring: true
  139. # currency: 100
  140.  
  141. # Set this to true to if you set multiple milestones with the same vote count and you want a random one to be chosen (if false, the one with the highest priority will be given!)
  142. giveRandomMilestone: false
  143.  
  144. # Set the following to false if you want players to get a regular reward on top of a milestone reward when they reach a milestone.
  145. onlyRewardMilestoneUponCompletion: true
  146.  
  147. #####################
  148. #Blacklisted Players#
  149. #####################
  150.  
  151. # These players will not receive rewards
  152. blacklistedPlayers:
  153. - Steve
  154. - Herobrine
  155.  
  156. # Set the following to true to switch the above blacklist to a whitelist, meaning only the players on that list will get rewards
  157. useBlacklistAsWhitelist: false
  158.  
  159. # End of config
  160. #####################
  161. # No need to touch this
  162. configVersion: 1.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement