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