· 6 years ago · Sep 22, 2019, 05:06 PM
1# VotingPlugin by Ben12345rocks
2# Main Config
3# See wiki for help:
4# https://github.com/Ben12345rocks/VotingPlugin/wiki
5
6# Valid Options:
7# - SQLITE
8# - FLAT
9# - MYSQL
10DataStorage: SQLITE
11
12# Information for mysql
13# See the end of the config for cache options
14MySQL:
15 Host: ''
16 # Default port is 3306
17 Port: 3306
18 Database: ''
19 Username: ''
20 Password: ''
21 # Max number of connections
22 MaxConnections: 1
23 # Maxium size of caching mysql
24 # -1 for no limit
25 # Affecting this value may affect performance
26 MaxSize: -1
27 # Table name prefix, for use with mutliple servers
28 Prefix: ''
29 #UseSSL: true
30
31# Let players who never joined before vote
32# Recommend: False (Will prevent creating random user data)
33AllowUnjoined: true
34
35# ------------------------------------------------
36# VoteReminding
37# ------------------------------------------------
38
39# Configuration for VoteReminding
40# By default this should be all setup to work
41# as long as vote delays are done properly
42VoteReminding:
43 # Enable vote reminding
44 # This will remind player when he can vote on all sitessh
45 # Requires VoteDelays to be setup properly
46 # Use /vote next to see when you can be reminded
47 # Players require the perm "VotingPlugin.Login.RemindVotes" or "VotingPlugin.Player"
48 Enabled: true
49
50 # Whether or not to remind only once when the player can vote
51 # Does not apply to login reminds.
52 RemindOnlyOnce: true
53
54 # Will remind player on login if he can vote
55 # Ignores value above
56 RemindOnLogin: false
57
58 # Delay to remind votes in minutes
59 # Only works if above is false
60 RemindDelay: 30
61
62 # Run reward files on remind
63 # By default, the reward file will be created for you
64 # and have the default message
65 # Edit the message at AdvancedCore/Rewards/Remind.yml (or any other reward listed)
66 # Can add titles and more in the reward file
67 Rewards:
68 Messages:
69 Player: '&bDo not forget to vote!'
70 Title:
71 Enabled: false
72 Title: '&cRemember to vote!'
73 SubTitle: '&aType /vote'
74 FadeIn: 10
75 ShowTime: 50
76 FadeOut: 10
77 ActionBar:
78 Message: '&cRemember to vote'
79 Delay: 30
80
81# ------------------------------------------------
82# Format
83# ------------------------------------------------
84
85# Common PlacesHolders:
86# Please Note: Not all are usable in all sections
87# Special PlaceHolders will be commented where available
88# %player% = player name
89# %SiteName% = vote site name
90#
91# Set Message to '' (2 ') to disable message
92
93Commands:
94 # Whether or not the following commands will open GUIs rather than display text
95 UseGUI:
96 Today: true
97 TopVoter: true
98 Last: false
99 Next: false
100 Total: true
101 Vote: true
102 Best: true
103 Streak: true
104 # If true, you can right click a votesite from /vote (gui version) and open the vote reward gui for that site
105 # Can be used to display rewards for that site
106 VoteRewardFromVoteURL: false
107 # disable /vote reward commands
108 # Effective after restart
109 DisableVoteRewardGUIs: false
110
111Format:
112 # CommandHandler help message
113 HelpLine: '&b%Command% - &f%HelpMessage%'
114
115 # Broadcast vote message
116 # Set to an empty message to disable
117 BroadcastMsg: '&b%player% &fvoted with &c/vote &fand received: &b$800&f, &bFly for 5 min&f, &b75 claim blocks&f, &bVote Crate Key and &bVote Point&c!'
118 # Broadcast only when player is online
119 BroadcastWhenOnline: false
120
121 Commands:
122 # Format for /vote
123 # %num% = the number of the site, for a numbered list
124 # %url% = site URL
125 Vote:
126 Text:
127 - '&bDo not forget to vote!'
128
129 # If you want to want to use the feature below where the plugin will
130 # automaticly list the sites then set the message in the text above
131 AutoInputSites: true
132 # For each VoteSite
133 # make sure to set VoteURL in your VoteSites
134 # Requires above to be true
135 # Text will be sent before this
136 Sites: '&7%num%: &b%SiteName% &7- &f%url%'
137
138 # Format for /vote next
139 Next:
140 # First line
141 Title: '&b%player% &fNext Votes:'
142
143 # How each line is setup for each vote site
144 # %info% = Info - See Below
145 # %SiteName% = site name from vote
146 Layout: '&b%SiteName%: &f%info%'
147
148 Info:
149 # Message when player can vote
150 CanVote: '&724h have passed since your last vote!'
151 # Time until vote msg
152 # %hours% = hours until next vote
153 # %minutes% = minutes until next vote
154 TimeUntilVote: '%hours% Hours and %minutes% Minutes'
155 # If there is an error finding out time until next vote
156 Error: '&cCould not caculate time until next vote!'
157 # For sites that have this, requires votedelaydaily to be set to true in the site
158 VoteDelayDaily: '%hours% Hours and %minutes% Minutes'
159
160 # Format for /vote last
161 Last:
162 # First line
163 Title: '&3&l%player% Last Vote Times:'
164 # Lines for each vote site
165 # %time% = time, using timeformat below
166 # %timesince% = time since vote
167 Line: '&3%SiteName%: &6%timeSince%'
168 # Spelling of TimeType can be changed under Format.Commands.TimeFormats
169 TimeFormat: '%amount% %TimeType%'
170 LastVoted: '%times% ago'
171 NeverVoted: 'Never voted'
172
173 # Format for /vote total
174 Total:
175 - '&3&l%player% Total Votes:'
176 - '&3&lDaily Total: &6&l%DailyTotal%'
177 - '&3&lWeekly Total: &6&l%WeeklyTotal%'
178 - '&3&lMonthly Total: &6&l%MonthlyTotal%'
179 - '&3&lAllTime Total: &6&l%AllTimeTotal%'
180
181 # Format for /vote total all
182 TotalAll:
183 - '&3&lServer Total Votes:'
184 - '&3&lDaily Total: &6&l%DailyTotal%'
185 - '&3&lWeekly Total: &6&l%WeeklyTotal%'
186 - '&3&lMonthly Total: &6&l%MonthlyTotal%'
187 - '&3&lAllTime Total: &6&l%AllTimeTotal%'
188
189 # Format for /vote top
190 Top:
191 # First line
192 # %page% = current page
193 # %maxpages% = max number of pages
194 # %Top% = Monthly/Weekly/Daily (depending on command)
195 Title: '&3Top %Top% Voters %page%/%maxpages%'
196 # Line for each player in that page
197 Line: '&c%num%: &6%player%, %votes%'
198
199 # Format for /vote help
200 Help:
201 # Title of /vote help
202 Title: '&3&lVoting Player Help'
203 # Format for help message in /v help
204 Line: '&3&l%Command% - &3%HelpMessage%'
205 # Require permission to see command in /v help or /av help
206 RequirePermission: true
207
208 Best:
209 Title: '&3&l%player% Best Votes'
210 Lines:
211 - '&3Highest Daily Total: &3&l%HighestDailyTotal%'
212 - '&3Highest Week Total: &3&l%HighestWeeklyTotal%'
213 - '&3Highest Month Total: &3&l%HighestMonthlyTotal%'
214
215 Streak:
216 Title: '&3&l%player% Vote Streak'
217 Lines:
218 - '&3Current Daily Streak: &3&l%DailyStreak%'
219 - '&3Current Week Streak: &3&l%WeeklyStreak%'
220 - '&3Current Month Streak: &3&l%MonthlyStreak%'
221 - '&3&lHighest Streaks:'
222 - '&3Highest Daily Streak: &3&l%BestDailyStreak%'
223 - '&3Highest Week Streak: &3&l%BestWeeklyStreak%'
224 - '&3Highest Month Streak: &3&l%BestMonthlyStreak%'
225
226 Today:
227 Line: '&6%player% : %VoteSite% : %Time%'
228
229 # PlaceHolders:
230 # %VotesRequired% = VotesRequired
231 # %NeededVotes% = Number of votes needed to reach VotesRequired
232 # %Votes% = Number of votes
233 Party:
234 - '&cCurrently at &6%Votes%&c, &6%NeededVotes% &cmore votes to go to reach &6%VotesRequired%'
235
236 # %Points% = player points
237 Points: '&a%Player% currently has &a&l%Points%&a Points!'
238
239 ToggleBroadcast:
240 Enabled: '&cYou will now see vote broadcasts'
241 Disabled: '&cYou will no longer see vote broadcasts'
242
243 # Msg on top voter award, will only send message if that place has a reward set
244 # %place% = place - 1,2,3,etc
245 TopVoterAwardMsg: '&aYou came in %place% in top voters of the month! Here is an award!'
246
247 # Time Format
248 # See https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
249 TimeFormat: 'EEE, d MMM yyyy HH:mm'
250
251 TimeFormats:
252 Day: 'Day'
253 Days: 'Days'
254 Hour: 'Hour'
255 Hours: 'Hours'
256 Minute: 'Minute'
257 Minutes: 'Minutes'
258 Second: 'Second'
259 Seconds: 'Seconds'
260
261 # Format for signs
262 # SiteName may be all, depending on sign
263 # %position% = position of player, set by sign
264 # %votes% = Number of votes
265 Signs:
266 TopVoterSign:
267 Line1: 'TopVoter: %SiteName%'
268 Line2: '#%position%'
269 Line3: '%player%'
270 Line4: '%votes% Votes'
271 # Message when right clicking sign, uses same placeholders as above
272 RightClickMessage: '&c&l%player% &cis &c&l%position% &cwith &c&l%votes% &cvotes in &c&l%SiteName%'
273
274 # Message when player tries to run command without required permissions
275 NoPerms: '&cYou do not have enough permission!'
276
277 # Message when player types a command but does not input a number where needed
278 NotNumber: '&cError on &6%arg%&c, number expected!'
279
280 # Shop messages when using the /vote shop
281 ShopPurchase: '&bYou bought the &f%Identifier% &bfor &f%Points% &bPoints!'
282 ShopFailed: '&cYou do not have %Points% points to purchase this!'
283
284 # User not exist message, from commands such as /vote next (player)
285 UserNotExist: '&cUser does not exist: %player%'
286
287 # Prev/Next page tems in GUIs
288 PrevItem:
289 Material: 'BLACK_STAINED_GLASS_PANE'
290 Amount: 1
291 Name: '&aPrevious Page'
292
293 NextItem:
294 Material: 'BLACK_STAINED_GLASS_PANE'
295 Amount: 1
296 Name: '&aNext Page'
297
298 InvFull: '&cInventory full, dropping items on ground'
299
300 # Display text
301 # Used in /vote top (GUI)
302 TopVoter:
303 Daily: 'Daily'
304 Weekly: 'Weekly'
305 Monthly: 'Monthly'
306 AllTime: 'AllTime'
307
308# ------------------------------------------------
309# GUI Options
310# ------------------------------------------------
311
312# Enable command for last month gui
313# Requires restart to take effect
314LastMonthGUI: false
315
316# Configure GUI's here
317# Note: Slots start at 0 instead of 1, max slot is 53 (don't go over) (E.g: last slot in first row of inventory is 8)
318# Item Material's can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
319GUI:
320 # GUI for /vote gui, /vgui, votegui
321 VoteGUI:
322 # Items will be orders as it is below
323 URL:
324 # Standard item format, lore is automaticly applied
325 Item:
326 Material: 'BOW'
327 Data: 0
328 Amount: 1
329 Name: '&4URL'
330 # You can set skulls of the player using the following
331 # Remove the # to enable
332 #Skull: '%Player%'
333 Total:
334 Item:
335 Material: 'CHEST'
336 Data: 0
337 Amount: 1
338 Name: '&4Total'
339 Top:
340 Item:
341 Material: 'SIGN'
342 Data: 0
343 Amount: 1
344 Name: '&4Top'
345 Today:
346 Item:
347 Material: 'BOOK'
348 Data: 0
349 Amount: 1
350 Name: '&4Today'
351
352
353 # GUI for /vote url
354 # And /vote if enabled in Config.yml
355 VoteURL:
356 # GUI Name
357 Name: '&cVoteURL'
358 BackButton: false
359 SiteName: '&c%Name%'
360 SeeURL: '&cClick to see URL'
361 NextVote: '&cCan Vote In: %Info%'
362 ViewAllUrlsButtonEnabled: true
363 AllUrlsButton:
364 AlreadyVotedItem:
365 Material: 'REDSTONE_BLOCK'
366 Data: 0
367 Amount: 1
368 Name: '&4All Voting Sites'
369 Lore:
370 - '&cClick Me'
371 CanVoteItem:
372 Material: 'EMERALD_BLOCK'
373 Data: 0
374 Amount: 1
375 Name: '&4All Voting Sites'
376 Lore:
377 - '&cClick Me'
378 AlreadyVotedItem:
379 Material: 'REDSTONE_BLOCK'
380 Data: 0
381 Amount: 1
382 CanVoteItem:
383 Material: 'EMERALD_BLOCK'
384 Data: 0
385 Amount: 1
386 URLText: '%VoteUrl%'
387
388 VoteRewardBackButton: false
389 # Customize /vote reward
390 # Show players what you get when you vote on each site
391 VoteReward:
392 # Name of votesite
393 ExampleVoteSite:
394 # items in /vote reward sitename
395 Items:
396 # Item
397 # This is not the item display name
398 # Do not have 2 of the same items
399 Diamond:
400 # Item ID
401 Material: 'DIAMOND'
402 # Item Data (Eg 1:4, data is 4)
403 Data: 0
404 # Amount of items
405 # Should be greater than 0
406 Amount: 1
407 # Item name
408 # Remove this line for no name
409 Name: '&4Example'
410 # Lore
411 # Remove this line for no lore
412 Lore:
413 - '&4Line 1'
414 VoteLast:
415 Name: 'VoteLast: %player%'
416 BackButton: true
417 VoteNext:
418 Name: 'VoteNext: %player%'
419 BackButton: true
420 VoteToday:
421 Name: 'VoteToday'
422 BackButton: true
423 VoteTop:
424 Name: 'VoteTop %topvoter%'
425 BackButton: false
426 Item:
427 Name: '&3&l%position%: &3%player%'
428 Lore: '&3&lVotes: &3%votes%'
429 SwitchItem:
430 Name: 'Switch TopVoter'
431 Lore: 'Currently: %Top%'
432 Material: 'SIGN'
433 Amount: 1
434 # 8 Slots over from the bottom left
435 Slot: 7
436 # Number of topvoters to display on page +9
437 # 9 Slots on the botton are used for page buttons
438 Size: 27
439 # If true, /vote top will show player heads
440 UseSkull: true
441 # Item for player in GUI if use skull is false
442 PlayerItem:
443 Material: 'PAPER'
444 VoteTotal:
445 Name: 'VoteTotal: %player%'
446 BackButton: true
447 DayTotal:
448 Item:
449 Material: 'CLOCK'
450 Name: '&cDaily Total'
451 Lore: '&c&lTotal: &c%Total%'
452 Amount: 1
453 WeekTotal:
454 Item:
455 Material: 'CLOCK'
456 Name: '&cWeekly Total'
457 Lore: '&c&lTotal: &c%Total%'
458 Amount: 1
459 MonthTotal:
460 Item:
461 Material: 'CLOCK'
462 Name: '&cMonthly Total'
463 Lore: '&c&lTotal: &c%Total%'
464 Amount: 1
465 AllTimeTotal:
466 Item:
467 Material: 'CLOCK'
468 Name: '&cAllTime Total'
469 Lore: '&c&lTotal: &c%Total%'
470 Amount: 1
471 VoteBest:
472 Name: 'VoteBest: %player%'
473 DayBest:
474 Item:
475 Material: 'CLOCK'
476 Name: '&cDaily Best'
477 Lore: '&c&lBest: &c%Best%'
478 Amount: 1
479 WeekBest:
480 Item:
481 Material: 'CLOCK'
482 Name: '&cWeekly Best'
483 Lore: '&c&lBest: &c%Best%'
484 Amount: 1
485 MonthBest:
486 Item:
487 Material: 'CLOCK'
488 Name: '&cMonthly Best'
489 Lore: '&c&lBest: &c%Best%'
490 Amount: 1
491 VoteStreak:
492 Name: 'VoteStreak: %player%'
493 BackButton: false
494 CurrentDayStreak:
495 Item:
496 Material: 'CLOCK'
497 Name: '&cCurrent Daily Streak'
498 Lore: '&c&lStreak: &c%Streak%'
499 Amount: 1
500 CurrentWeekStreak:
501 Item:
502 Material: 'CLOCK'
503 Name: '&cCurrent Weekly Streak'
504 Lore: '&c&lStreak: &c%Streak%'
505 Amount: 1
506 CurrentMonthStreak:
507 Item:
508 Material: 'CLOCK'
509 Name: '&cCurrent Monthly Streak'
510 Lore: '&c&lStreak: &c%Streak%'
511 Amount: 1
512 HighestDayStreak:
513 Item:
514 Material: 'CLOCK'
515 Name: '&cHighest Daily Streak'
516 Lore: '&c&lStreak: &c%Streak%'
517 Amount: 1
518 HighestWeekStreak:
519 Item:
520 Material: 'CLOCK'
521 Name: '&cHighest Weekly Streak'
522 Lore: '&c&lStreak: &c%Streak%'
523 Amount: 1
524 HighestMonthStreak:
525 Item:
526 Material: 'CLOCK'
527 Name: '&cHighest Monthly Streak'
528 Lore: '&c&lStreak: &c%Streak%'
529 Amount: 1
530 VoteURLSite:
531 Name: 'VoteSite: %site%'
532 VoteGUIName: '&cVoteGUI: &c&l%player%'
533 VoteRewardName: 'VoteReward'
534 VoteShopName: 'VoteShop'
535
536BackButton:
537 Material: 'PAPER'
538 Data: 0
539 Amount: 1
540 Name: '&8Back to VoteGUI'
541
542VoteShopBackButton: false
543VoteShopEnabled: true
544# Hide items in vote shop which user can not buy
545VoteShopHideLimitedReached: true
546# Requires above to be false
547VoteShopLimitReached: '&aYou reached your limit'
548Shop:
549 # Identifier
550 # Used in placeholders for formats
551 Spawner Crate Key:
552 # Item
553 Material: 'Spawner'
554 Data: 0
555 Amount: 1
556 Name: '&fBuy &cSpawner Crate Key'
557 # You can set skulls of the player using the following
558 # Remove the # to enable
559 #Skull: '%Player%'
560 Lore:
561 - '&c&lCost: &465 &bVoting Points'
562 # Number of voting points this cost
563 Cost: 65
564 # Permission required, leave blank for no permission
565 Permission: ''
566 # Limit how many times you can buy this
567 #Limit: 3
568 # If true, item is not buyable
569 #NotBuyable: false
570 # Rewards to run if player buys successfully
571 Rewards:
572 Commands:
573 - crazycrate give v spawners 1 %player%
574 Fly for 30min:
575 # Item
576 Material: 'ELYTRA'
577 Data: 0
578 Amount: 1
579 Name: '&FBuy &cFly &ffor &c30m'
580 # You can set skulls of the player using the following
581 # Remove the # to enable
582 #Skull: '%Player%'
583 Lore:
584 - '&c&lCost: &430 &bVoting Points'
585 # Number of voting points this cost
586 Cost: 30
587 # Permission required, leave blank for no permission
588 Permission: ''
589 # Limit how many times you can buy this
590 #Limit: 3
591 # If true, item is not buyable
592 #NotBuyable: false
593 # Rewards to run if player buys successfully
594 Rewards:
595 Commands:
596 - fly %player% add 30m
597 50000$:
598 # Item
599 Material: 'sunflower'
600 Data: 0
601 Amount: 1
602 Name: '&FBuy ingame money - &c50,000'
603 # You can set skulls of the player using the following
604 # Remove the # to enable
605 #Skull: '%Player%'
606 Lore:
607 - '&c&lCost: &425 &bVoting Points'
608 # Number of voting points this cost
609 Cost: 25
610 # Permission required, leave blank for no permission
611 Permission: ''
612 # Limit how many times you can buy this
613 #Limit: 3
614 # If true, item is not buyable
615 #NotBuyable: false
616 # Rewards to run if player buys successfully
617 Rewards:
618 Commands:
619 - eco give %player% 50000
620# ------------------------------------------------
621# Extra Rewards
622# ------------------------------------------------
623
624# To disable reward set value to []
625# Eg:
626# FirstVote: [] (All in one line)
627# By default all rewards are disabled
628
629# First vote rewards
630FirstVote:
631 Messages:
632 Player: '&bYou voted for your first time!'
633 Money: 1500
634
635# All vote rewards
636# Reward for voting on all sites in one day
637#AllSites:
638# Messages:
639# Player: ''
640
641Cumulative:
642 # Number of votes required
643 # Allows multiple cumulative rewards
644 # Number be be around ' (E.g. '1')
645 # Can have multiple listed here
646 '20':
647 Enabled: false
648 # Wether or not votes must be made in same day/week
649 # Useful if you want to require a certain number of voting sites to be voted on
650 # for a daily/weekly reward instead of all of them
651 VotesInSameDay: false
652 VotesInSameWeek: false
653 Rewards:
654 Messages:
655 Player: '&aYou got %cumulative% cumulative votes!'
656
657VoteParty:
658 # Wether or not vote party is enabled
659 Enabled: false
660 # Number of votes required to give rewards
661 VotesRequired: 20
662 # Increase the amount of votes required on each vote party reached
663 #IncreaseVotesRquired: 10
664 # If true, players who did not vote to reach the votes required will
665 # recieve the reward
666 GiveAllPlayers: false
667 # If true, the vote count will reset each day
668 ResetEachDay: false
669 # Reset at the end of the month
670 ResetMonthly: false
671 # Count votes from /av vote?
672 CountFakeVotes: true
673 # Number of user votes that apply to vote party total the user needs to get rewards
674 UserVotesRequired: 0
675 # Broadcast when vote party reached
676 Broadcast: '&cReached the vote party amount!'
677 # List of commands to execute, these only execute once.
678 # %player% does not work here
679 Commands: []
680 # Rewards to give per player
681 Rewards:
682 Commands:
683 - say %player%
684 Items:
685 DIAMOND:
686 Material: 'DIAMOND'
687 Amount: 1
688
689# Reset milestones at end of the month
690ResetMilestonesMonthly: false
691
692MileStones:
693 # Number of votes required
694 # Allows multiple milestones
695 # Number be around ' (E.g. '1')
696 # Can have multiple listed here
697 '20':
698 Enabled: false
699 Rewards:
700 Messages:
701 Player: '&aYou got %milestone% milestone votes!'
702
703VoteStreak:
704 # Valid options: Day, Week, Month
705 Day:
706 # Number of days in a row
707 # Each day requires one vote
708 # Add a - to give a reward for every multiple (e.g. 2- = 2,4,6,8, and so on)
709 '2':
710 # Enabled or not
711 Enabled: false
712 # Rewards to give
713 Rewards:
714 Messages:
715 Player: "&aYou voted for %Streak% %Type%'s in a row!"
716 Week:
717 # Number of weeks in a row
718 # Requires atleast one vote per week
719 '2':
720 # Enabled or not
721 Enabled: false
722 # Rewards to give
723 Rewards:
724 Messages:
725 Player: "&aYou voted for %Streak% %Type%'s in a row!"
726 Month:
727 # Number of months in a row
728 # Requires atleast 1 vote per month
729 '2':
730 # Enabled or not
731 Enabled: false
732 # Rewards to give
733 Rewards:
734 Messages:
735 Player: "&aYou voted for %Streak% %Type%'s in a row!"
736 Requirement:
737 # Require certain percentage of votes
738 UsePercentage: false
739 # Percentage requirements of votes
740 # 50 = %50
741 Day: 50
742 Week: 50
743 Month: 50
744
745# Reward given when vote cooldown ended
746VoteCoolDownEndedReward: []
747
748
749# ONLY USE THIS FOR TITLES/SOUNDS AND OTHER EFFECTS
750# IT WILL ONLY RUN ONE TIME FOR ANY NUMBER OF OFFLINE VOTES (3 offline votes = 1 AnySiteReward)
751# Any reward files listed here are ran on vote of any site
752# It is recommended to add rewards to each site instead of here
753# Using forceoffline won't work here
754# Use EverySiteReward in VoteSites.yml for a global reward for each site
755AnySiteRewards: []
756
757
758# ------------------------------------------------
759# Top Voter
760# ------------------------------------------------
761
762# Top voter blacklist
763# Hide these names from top voter lists
764BlackList:
765- 'Notch'
766
767# If true players with the permission 'VotingPlugin.TopVoter.Ignore' will act
768# as if there name was added on the the blacklist above
769# This also applies for players with op
770TopVoterIgnorePermission: false
771
772# /vote top default data displayed
773# Valid Options: AllTime, Monthly, Weekly, Daily
774VoteTopDefault: Monthly
775
776# Whether or not to have ties on top voter rewards
777TopVoterAwardsTies: true
778
779# These are required to be enabled in order for top voter awards to work
780LoadTopVoter:
781 AllTime: true
782 Monthly: true
783 Weekly: false
784 Daily: false
785
786# When top voter awards are given (even if there are none listed) it will store top voters
787# Files will created in TopVoters folder.
788StoreTopVoters:
789 Monthly: true
790 Weekly: false
791 Daily: false
792
793EnableMonthlyAwards: false
794# Rewards to give
795MonthlyAwards:
796 # Position. 1 is first in top voter, 2 is second, etc...
797 # Using 1-10 will reward players in first to tenth place with the same reward
798 1:
799 Rewards:
800 Messages:
801 Player: '&aYou came in first place in %TopVoter%!'
802 2:
803 Rewards:
804 Messages:
805 Player: '&aYou came in second place in %TopVoter%!'
806
807EnableWeeklyAwards: false
808# Rewards to give on weekly top voter
809WeeklyAwards:
810 # Position. 1 is first in top voter, 2 is second, etc...
811 1:
812 Rewards:
813 Messages:
814 Player: '&aYou came in first place in %TopVoter%!'
815 2:
816 Rewards:
817 Messages:
818 Player: '&aYou came in second place in %TopVoter%!'
819
820EnableDailyRewards: false
821# Rewards to give on daily top voter
822DailyAwards:
823 # Position. 1 is first in top voter, 2 is second, etc...
824 1:
825 # Reward files to give
826 Rewards:
827 Messages:
828 Player: '&aYou came in first place in %TopVoter%!'
829 2:
830 Rewards:
831 Messages:
832 Player: '&aYou came in second place in %TopVoter%!'
833
834# ------------------------------------------------
835# Advanced
836# Most of these values can be left untouched for most setups
837# ------------------------------------------------
838
839# Number of points to give on vote
840# Set to 0 to give no points
841PointsOnVote: 1
842
843AlwaysCloseInventory: false
844
845# Set this to false to disable the plugin adding totals
846# Not really recommended
847AddTotals: true
848
849# Click sound when using gui
850# Set to none for no sound
851ClickSound:
852 Sound: 'UI_BUTTON_CLICK'
853 Volume: 1.0
854 Pitch: 1.0
855
856# Limit monthly votes to number of days of a month multipled by the number of sites
857LimitMonthlyVotes: false
858
859# Debug
860Debug: false
861
862# Extra Debug
863# Only needed in extreme cases
864ExtraDebug: false
865
866# Debug info ingame
867# Players with permission "VotingPlugin.Debug"
868# will see debug info if debug is true
869DebugInGame: false
870
871# Will log debug messages to VotingPlugin/Log/log.txt
872# Requires Debug to be on
873# Only needed for extra cases
874#LogDebugToFile: false
875
876# Options for request api
877# Current methods
878# ANVIL
879# BOOK
880# CHAT
881# This is mainly used for admin gui's to type in values
882RequestAPI:
883 DefaultMethod: 'Anvil'
884 DisabledMethods: []
885
886# Whether or not to log every vote to a file
887# Use this if you wanna track player votes
888# Not recommended though
889LogVotesToFile: false
890
891# Only update in the background when needed when set to false
892AlwaysUpdate: false
893
894# Update in the background only if players are online
895UpdateWithPlayersOnlineOnly: false
896
897# Delay between background updates like signs and more
898# Default: 3 Minutes
899# Longer times result in longer wait in stuff updating after a vote, like topvoter
900DelayBetweenUpdates: 3
901
902# Set to true to disable no service site message on voting
903# You should never have to touch this if everything is setup properly
904# Will also disable a few other warnings about vote sites
905DisableNoServiceSiteMessage: false
906
907# Count fake votes
908# If true fake votes will give points and totals
909CountFakeVotes: true
910
911# Give VotingPlugin.Player by default
912# Requires restart to take affect
913GiveDefaultPermission: true
914
915# Remove old player files
916# Happens on startup or /av purge
917PurgeOldData: false
918
919# Minimum number of days offline in order to purge
920PurgeMin: 90
921
922# Whether or not to create daily backups. (Only the most recent ones get kept)
923CreateBackups: true
924
925# If true, plugin will send scoreboards on some commands
926SendScoreboards: true
927
928# If true, plugin will automaticly generate votesites
929# Disable this if you experience issues with sites being created randomly
930# Most cases this will work all the time
931AutoCreateVoteSites: true
932
933# Automaticly download the latest version
934# Will require a restart to actually update
935# Note: It takes 30-40 minutes before being able to download the latest build
936# You can also use /av download
937AutoDownload: false
938
939# Whether or not to disable update checks
940DisableUpdateChecking: false
941
942# Allow transfer of vote points
943AllowVotePointTransfers: false
944
945# Disable this on a hub server for example
946# Still processes rewards for offline rewards (just won't give any)
947ProcessRewards: true
948
949# Disable checking permissions on tab complete
950DisableAdvancedTab: false
951
952# Load command aliases, such as /avgui
953# Requires restart to take effect
954LoadCommandAliases: true
955
956# Wait until user is logged in with AuthMe
957# Requires AuthMe
958WaitUntilLoggedIn: true
959
960# Preload skulls to improve performance
961# If false, skulls will be cached as they are used
962PreloadSkulls: false
963
964# ---------------------------------------------------------
965# Mysql cache options
966# Clearing cache forces the plugin to pull from database
967# ---------------------------------------------------------
968
969# Clear cache on update, setting to true reduces update speed
970ClearCacheOnUpdate: false
971
972# Clear mysql on player join always
973ClearCacheOnJoin: false
974
975# Clears cache for the player who voted only
976# Only effects if using mysql
977# Would recommend for some bungee setups
978ClearCacheOnVote: false
979
980# Use vault for permission checks
981# May not work on some plugins
982UseVaultPermissions: false
983
984# ###############################################################
985# Deprecated options, don't recommend using any of these
986
987# Whether or not to disable checking names on mojang, disable if you hit the rate limit
988# Shouldn't make a noticeable impact if set to false
989#CheckNameMojang: false
990
991# Shouldn't need to change this
992#AutoKillInvs: true
993
994# Used in special cases
995# Much slower, but may work better
996# Not recommended in newer versions
997#AlternateUUIDLookup: false
998
999# Disable checking on world change
1000# May improve performance
1001#DisableCheckOnWorldChange: false