View difference between Paste ID: H8sjAF4V and Wdvv4VAK
SHOW: | | - or go back to the newest paste.
1
#VoteRoulette Config
2
3
##################
4
#General 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
# If broadcastToServer is set to true, should VoteRoulette only broadcast the votes from
14
# online players? (Helps cut down on spam on bigger servers)
15
onlyBroadcastOnlinePlayerVotes: true
16
17
# If broadcastToServer is set to true, this is the cooldown period (in minutes) before a 
18
# players votes can be broadcasted to the server again. Useful if you have
19
# many voting sites and arent using a vote threshold.
20
broadcastCooldown: 0
21
22
# Whether or not to log to console when a player votes
23
logToConsole: true
24
25
# Whether or not to have the periodic reminder enabled
26
# You can change this reminder in the messages.yml file.
27
usePeriodicReminder: true
28
29
# How often the reminder is broadcasted (in minutes), if enabled.
30
periodicReminderInterval: 5
31
32
# Whether or not to have players notified when 24 hours has passed since their last vote
33
# You can change this reminder in the messages.yml file.
34
useTwentyFourHourReminder: true
35
36
# Whether or not to only consider a players primary group when doing permission group checks for rewards/milestones
37
# Turning this on helps if you are using inheritance in your permissions plugin.
38
onlyConsiderPlayersPrimaryGroup: true
39
40
# The following edits optional GUI settings
41
GUI:
42
    awards:
43
        # Turn on or off the visual representation of rewards/milestone.
44
        guiForAwards: true
45
        
46
47
        # If "guiForAwards" is true, this is
48
        # whether or not to show the commands that will be ran when the player hovers
49
        # their cursor over the command block
50
        showCommands: false
51
52
    vote-command:
53
        # Turn on or off the use of fancy links for the vote command
54
        # This feature requires MC 1.7 or higher!
55
        # Fancy links allow you to set placeholder text for links that players can 
56
        # click on, instead of the link itself.
57
        # Go to the messages.yml file to see how to create a fancy link.
58
        useFancyLinks: false
59
60
    stats:
61
        # Turn on or off the use of the Scoreboard when players issue the /vr top command.
62
        useScoreboard: true
63
64
# Set which command alias you would like to be used
65
# when VR sends messages about commands to players.
66
# You cannot create a new alias with this, 
67
# select one of the available options below.
68
# Available options: vr, vtr, voteroulette
69
defaultCommandAlias: "vr"        
70
71
# Set the following to false if you do not want VoteRoulette to automatically check
72
# for updates. (Anyone with "voteroulette.admin" permission will be notified of an
73
# update on log in) 
74
checkForUpdates: false
75
76
# Turn on or off a debug mode where VoteRoulette will print various things its doing to
77
# the console.
78
debug: false
79
80
#################
81
#Rewards Section#
82
#################
83
84
##   Rewards List   ##
85
#
86
# Here you can make multiple rewards.
87
# Each reward can have:
88
# - a list of item IDs. Each item can have amount, dataID, enchants, name, and lore sections to further customize item!
89
# - an amount of money (if Vault is installed)
90
# - an amount of xp levels that will be given
91
# - worlds that players can claim the reward in
92
# - a list of commands to be run by the console. %player% will be replaced by the players name.
93
# - a list of permission groups the reward will be considered for (if Vault is installed)
94
# You can leave out any of these options if you do not wish to use them
95
# and you can use them in any order
96
#
97
# REMEMBER: Everything is indented 4 spaces from the next line and you can NOT use tabs
98
#
99
#Example reward:
100
#    Awesome Reward:                   # Name of the reward (Players will see this!)
101
#        items:                        # This one gives 5 diamonds, a diamond sword (with sharpness 5 enchant, 
102
#                                      # a custom name, and a lore message), 16 steak, and 32 green wool!
103
#            264:
104
#                amount: 5
105
#            276:
106
#                amount: 1
107
#                enchants: sharpness(5), looting(3)
108
#                name: Wrath of Herobrine
109
#                lore: A Mighty Sword
110
#            364:
111
#                amount: 16
112
#            35: 
113
#                dataID: 5 
114
#                amount: 32
115
#            
116
#        currency: 100                 # Player will receive $100 in-game currency 
117
#        xpLevels: 5                   # Player will gain 5 xp levels
118
#        commands:
119
#            - gamemode %player% creative   # Players gamemode will be set to creative
120
#        permGroups: Members, Donators      # Only players in the Members or Donators permission groups are eligible for the reward
121
#        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.
122
#                # Dont forget the quotes (" ") for the message section!
123
#        worlds: main_survival, temp_survival, creative_world
124
125
Rewards:
126
# Each reward must have a different name
127
128
    Voter:
129
        items:
130
131
            8256:
132
                amount: 5
133
                name: "&a&lLarry-Craft Voter!"
134
                lore: "&cA Reward For Voting!"
135
            8258:
136
                amount: 2
137
                name: "&a&lLarry-Craft Voter!"
138
                lore: "&cA Reward For Voting!"
139
            10262:
140
                amount: 3
141
                name: "&a&lLarry-Craft Voter!"
142
                lore: "&cA Reward For Voting!"
143
            10261:
144
                amount: 1
145
                name: "&a&lLarry-Craft Voter!"
146
                lore: "&cA Reward For Voting!"
147
            
148
        currency: 200
149
150
    1/10:
151
        items:
152
            8258:
153
                amount: 10
154
                name: "&a&lLucky Voter!"
155
                lore: "&cA Lucky Reward!"
156
157
        chance: 1/10
158
159
    1/25:
160
161
        currency: 850
162
        chance: 1/25
163
164
    1/50:
165
        items:
166
            12257:
167
                amount: 1
168
                name: "&a&lLucky Voter!"
169
                lore: "&cA Lucky Reward!"
170
171
        chance: 1/50
172
173-
    1/:75
173+
    1/75:
174
        items:
175
            8258:
176
                amount: 32
177
                name: "&a&lLucky Voter!"
178
                lore: "&cA Lucky Reward!"
179
180
        chance: 1/75
181
182
    1/100:
183
        items:
184
            10262:
185
                amount: 10
186
                name: "&a&lLucky Voter!"
187
                lore: "&cA Lucky Reward!"
188
            10306:
189
                amount: 10
190
                name: "&a&lLucky Voter!"
191
                lore: "&cA Lucky Reward!"
192
            10307:
193
                amount: 10
194
                name: "&a&lLucky Voter!"
195
                lore: "&cA Lucky Reward!"
196
197
        chance: 1/100
198
199
    1/250:
200
201
        currency: 10000
202
        chance: 1/250
203
204
    1/500:
205
        items:
206
            8259:
207
                amount: 1
208
                name: "&a&lLucky Voter!"
209
                lore: "&cA Lucky Reward!"
210
211
        chance: 1/500
212
213
    1/750:
214
        items:
215
            10261:
216
                amount: 32
217
                name: "&a&lLucky Voter!"
218
                lore: "&cA Lucky Reward!"
219
220
        chance: 1/750
221
222
    1/1000:
223
224
        currency: 40000
225
        chance: 1/1000
226
227
    1/1500:
228
        items:
229
            10261:
230
                amount: 64
231
                name: "&a&lLucky Voter!"
232
                lore: "&cA Lucky Reward!"
233
234
        chance: 1/1500
235
236
# Set the following to true if you want a reward to be chosen at random
237
giveRandomReward: false
238
239
# Use to set the default reward.  (Only applies if giveRandomRewards is set to false)
240
defaultReward: Voter
241
242
# Set the following to true if you only want players to get rewarded after they vote so many times
243
# For example, you want them to vote on all your server lists before getting rewarded
244
# If this is false, players will receive an award every time they vote
245
giveRewardsOnThreshold: false
246
247
# If the above is set to true, this is the number of how many votes till a player will receive a reward
248
voteThreshold: 1
249
250
# If you set any required worlds for a specific rewards, the following setting will make VoteRoulette consider the rewards that qualify for the world the player is currently standing in first. For example, if you had rewards set for a Survival world and a PvP world, and the player was in the Survival world when they voted, rewards that qualify for the Survival world will be considered first. If there is no rewards available for the current world, they will receive a reward as normal and will have to claim it in the correct world.
251
252
considerRewardsForPlayersCurrentWorld: false
253
254
# The following setting dictates whether or not VoteRoulette will automatically give the player a reward with vote streak settings when they qualify, skipping the other
255
# non vote streak rewards. When this is set to false and when a player qualifies for a vote streak, it will be put into the list of the other rewards the player qualifies 
256
# for to be chosen randomly. When this is set to true and a player qualifies for multiple vote streak rewards at the same time, one will be chosen at random.
257
258
prioritizeVoteStreaks: true
259
260
##   Milestones List   ##
261
#
262
# Milestones are special rewards that are given after a player has made so many votes
263
# They are created in the config the same way as regular rewards, however you must include
264
# a "votes: #" section with how many votes you want the milestone to be! The milestone will otherwise
265
# be ignored. 
266
#
267
# You can also include a "recurring: true" section to have the milestone recur upon multiples
268
# 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)
269
#
270
# 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
271
# "priority: #" section. It can be any number but 1 is considered highest priority (Think "first priority") and the number cant be less than 1. 
272
# If multiple milestones have the same priority levels, the first
273
# one will be used. The default priority is 10 if there is none specified.
274
#
275
# Example milestone:
276
#
277
#    Nickel and Dime:        # Name of the milestone (Players will see this!)
278
#        votes: 15           # The number of votes required to reach this milestone
279
#        currency: 200       # $200 in-game currency (if vault is installed)
280
#        xpLevels: 5         # Player will gain 5 xp levels
281
#        permGroups: VIP     # Only players in the VIP permission group are eligible for the milestone
282
#        recurring: false    # This milestone will open happen once, instead of every 15 votes!
283
284
Milestones:
285
# Each milestone must have a different name
286
287
#    My First Milestone:
288
#        votes: 25
289
#        recurring: true
290
#        currency: 100
291
#        priority: 10
292
293
# 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!)    
294
giveRandomMilestone: false
295
296
# If multiple milestones happen at the same time and some or all tie for the highest priority, the following setting dictates if VoteRoulette will choose a random one. This is a good way to mix and max the functionality of random milestones but still having the control of priorities. 
297
randomizeTiedHighestPriorityMilestones: false
298
299
# Set the following to false if you want players to get a regular Reward on top of a Milestone when they reach a Milestone.
300
onlyRewardMilestoneUponCompletion: false
301
302
# If you set any required worlds for a specific milestones, the following setting will make VoteRoulette consider the milestones that qualify for the world the player is currently standing in first. For example, if you had milestones set for a Survival world and a PvP world, and the player was in the Survival world when they voted, only milestones that qualify for the Survival world will be considered first. If there is no milestones available for the current world, they will receive a milestone as normal and will have to claim it in the correct world.
303
304
considerMilestonesForPlayersCurrentWorld: false
305
306
# Here you can turn off the random firework that shoots off from the player 
307
# when they complete a Milestone
308
randomFireworkOnMilestone: true
309
310
#####################
311
#Blacklisted Players#
312
#####################
313
314
# These players will not receive rewards
315
blacklistedPlayers:
316
    - Steve
317
    - Herobrine
318
319
# Set the following to true to switch the above blacklist to a whitelist, meaning only the players on that list will get rewards
320
useBlacklistAsWhitelist: false
321
322
#####################
323
#Blacklisted Worlds#
324
#####################
325
326
# Players will not receive rewards/milestones in these worlds, ever!
327
blacklistedWorlds:
328
    - A_World
329
    - Another_World
330
331
# End of config
332
#####################
333
# No need to touch this
334
configVersion: 1.8