Guest User

Untitled

a guest
Jan 26th, 2018
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 23.29 KB | None | 0 0
  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
  10. DataStorage: SQLITE
  11.  
  12. # Information for mysql
  13. MySQL:
  14.   Host: ''
  15.   # Default port is 3306
  16.   Port: 3306
  17.   Database: ''
  18.   Username: ''
  19.   Password: ''
  20.   # Max number of connections
  21.   MaxConnections: 1
  22.   # Maxium size of caching mysql
  23.   # -1 for no limit
  24.   # Affecting this value may affect performance
  25.   MaxSize: -1
  26.   # Table name prefix, for use with mutliple servers
  27.   Prefix: ''
  28.   #UseSSL: true
  29.  
  30. # Let players who never joined before vote
  31. # Recommend: False (Will prevent creating random user data files)
  32. AllowUnjoined: false
  33.  
  34. # If true, plugin will send scoreboards on some commands
  35. SendScoreboards: true
  36.  
  37. # If true, plugin will automaticly generate votesites
  38. # Disable this if you experience issues with sites being created randomly
  39. AutoCreateVoteSites: true
  40.  
  41. # Automaticly download the latest version
  42. # Will require a restart to actually update
  43. # Note that updates take 30-40 minutes to load before they can be downloaded
  44. AutoDownload: false
  45.  
  46. # ------------------------------------------------
  47. # VoteReminding
  48. # ------------------------------------------------
  49.  
  50. # Configuration for VoteReminding
  51. # By default this should be all setup to work
  52. # as long as vote delays are done properly
  53. VoteReminding:
  54.  # Enable vote reminding
  55.   # This will remind player when he can vote on all sites
  56.   # Requires VoteDelay's to be setup properly
  57.   # Use /vote next to see when you can be reminded
  58.   # Players require the perm "VotingPlugin.Login.RemindVotes" or "VotingPlugin.Player"
  59.   Enabled: true
  60.  
  61.   # Wether or t to remind only once when the player can vote
  62.   # Does not apply to login reminds.
  63.   RemindOnlyOnce: true
  64.  
  65.   # Will remind player on login if he can vote
  66.   # Ignores value above
  67.   RemindOnLogin: true
  68.  
  69.   # Delay to remind votes in minutes
  70.   # Only works if above is false
  71.   RemindDelay: 30
  72.  
  73.   # Run reward files on remind
  74.   # By default, the reward file will be created for you
  75.   # and have the default message
  76.   # Edit the message at AdvancedCore/Rewards/Remind.yml (or any other reward listed)
  77.   # Can add titles and more in the reward file
  78.   Rewards:
  79.     Messages:
  80.       Player: '&7Don''t forget to &b/vote!'
  81.     Title:
  82.       Enabled: false
  83.       Title: '&cRemember to vote!'
  84.       SubTitle: '&aType /vote'
  85.       FadeIn: 10
  86.       ShowTime: 50
  87.       FadeOut: 10
  88.  
  89. Commands:
  90.  # Wether or not the following commands will open GUIs rather than display text
  91.   UseGUI:
  92.     Today: true
  93.     TopVoter: true
  94.     Last: true
  95.     Next: true
  96.     Total: true
  97.     Vote: true
  98.     Best: true
  99.     Streak: true
  100.    
  101. # ------------------------------------------------
  102. # Format
  103. # ------------------------------------------------
  104.    
  105. # Common PlacesHolders:
  106. # Please Note: Not all are usable in all sections
  107. # Special PlaceHolders will be commented where available
  108. # %player% = player name  
  109. # %SiteName% = vote site name
  110. #
  111. # Set Message to '' (2 ') to disable message
  112.  
  113. Format:
  114.  # CommandHandler help message
  115.   HelpLine: '&b%Command% - &7%HelpMessage%'
  116.  
  117.   # Broadcast vote message
  118.   BroadcastMsg: '&8[&bVote&8] &b%player% &7just voted fo Nitrous MC on &b%SiteName%&7 and got a &aVote Key!'
  119.  
  120.   # Broadcast only when player is online
  121.   BroadcastWhenOnline: false
  122.  
  123.   Commands:
  124.    # Format for /vote
  125.     # %num% = the number of the site, for a numbered list
  126.     # %url% = site URL
  127.     Vote:
  128.       Text:
  129.      - '&bVote for Nitrous MC!'
  130.      
  131.       # If you want to want to use the feature below where the plugin will
  132.       # automaticly list the sites then set the message in the text above
  133.       AutoInputSites: true
  134.       # For each VoteSite
  135.       # make sure to set VoteURL in your VoteSites
  136.       # Requires above to be true
  137.       # Text will be sent before this
  138.       - '&b#1 &7http://tiny.cc/NitrousVote1'
  139.       - '&b#2 &7http://tiny.cc/NitrousVote2'
  140.       - '&b#3 &7http://tiny.cc/NitrousVote3'
  141.      
  142.       # Format for /vote next
  143.       Next:
  144.         # First line
  145.         Title: '&b%player% Next Votes:'
  146.        
  147.         # How each line is setup for each vote site
  148.         # %info% = Info - See Below
  149.         # %SiteName% = site name from vote
  150.         Layout: '&b%SiteName%: &7%info%'
  151.        
  152.         Info:
  153.          # Message when player can vote
  154.           CanVote: '&7Don''t forget to vote!'
  155.           # Time until vote msg
  156.           # %hours% = hours until next vote
  157.           # %minutes% = minutes until next vote
  158.           TimeUntilVote: '&7%hours% Hours and %minutes% Minutes'
  159.           # If there is an error finding out time until next vote
  160.           Error: '&7Could not caculate time until next vote.'
  161.           # For sites that have this, requires votedelaydaily to be set to true in the site
  162.           VoteDelayDaily: '&7%hours% Hours and %minutes% Minutes'
  163.          
  164.        # Format for /vote last
  165.       Last:
  166.        # First line
  167.         Title: '&b%player% Last Vote Times:'
  168.         # Lines for each vote site
  169.         # %time% = time, using timeformat below
  170.         Line: '&b%SiteName%: &7%time%'
  171.        
  172.       # Format for /vote total
  173.       Total:
  174.      - '&b%player% Total Votes:'
  175.       - '&bDaily Total: &7%DailyTotal%'
  176.       - '&bWeekly Total: &7WeeklyTotal%'
  177.       - '&bMonthly Total: &7%MonthlyTotal%'
  178.       - '&bAllTime Total: &7%AllTimeTotal%'
  179.        
  180.       # Format for /vote total all  
  181.       TotalAll:
  182.      - '&b&lServer Total Votes:'
  183.       - '&b&lDaily Total: &7%DailyTotal%'
  184.       - '&b&lWeekly Total: &7%WeeklyTotal%'
  185.       - '&b&lMonthly Total: &7%MonthlyTotal%'
  186.       - '&b&lAllTime Total: &7%AllTimeTotal%'
  187.        
  188.       # Format for /vote top
  189.       Top:
  190.        # First line
  191.         # %page% = current page
  192.         # %maxpages% = max number of pages
  193.         # %Top% = Monthly/Weekly/Daily (depending on command)
  194.         Title: '&bTop %Top% Voters %page%/%maxpages%'
  195.         # Line for each player in that page
  196.         Line: '&b%num%: &7%player%, %votes%'
  197.        
  198.       # Format for /vote help
  199.       Help:
  200.        # Title of /vote help
  201.         Title: '&bVoting Player Help'
  202.         # Format for help message in /v help
  203.         Line: '&b%Command% - &7%HelpMessage%'
  204.         # Require permission to see command in /v help or /av help
  205.         RequirePermission: true
  206.        
  207.       Best:
  208.         Title: '&b%player% Best Votes'
  209.         Lines:
  210.         - '&bHighest Daily Total: &7%HighestDailyTotal%'
  211.         - '&bHighest Week Total: &7%HighestWeeklyTotal%'
  212.         - '&bHighest Month Total: &7%HighestMonthlyTotal%'
  213.        
  214.       Streak:
  215.         Title: '&b%player% Vote Streak'
  216.         Lines:
  217.         - '&bCurrent Daily Streak: &7%DailyStreak%'
  218.         - '&bCurrent Week Streak: &7%WeeklyStreak%'
  219.         - '&bCurrent Month Streak: &7%MonthlyStreak%'
  220.         - '&bHighest Streaks:'
  221.         - '&bHighest Daily Streak: &7%BestDailyStreak%'
  222.         - '&bHighest Week Streak: &7%BestWeeklyStreak%'
  223.         - '&bHighest Month Streak: &7%BestMonthlyStreak%'
  224.        
  225.       # PlaceHolders:
  226.       # %VotesRequired% = VotesRequired
  227.       # %NeededVotes% = Number of votes needed to reach VotesRequired
  228.       # %Votes% = Number of votes
  229.       Party:
  230.      - '&bCurrently at &b%Votes%. %NeededVotes% &7more votes to go to reach &b%VotesRequired%.'
  231.      
  232.       # %Points% = player points
  233.       Points: '&b%Player% &7currently has &b%Points% &7Points!'
  234.      
  235.   # Login message if player can vote on all sites
  236.   # Must be enabled in config.yml  
  237.   LoginMsg: '&Don''t forget to vote!'
  238.  
  239.   # Msg on top voter award, will only send message if that place has a reward set
  240.   # %place% = place - 1,2,3,etc
  241.   TopVoterAwardMsg: '&7You came in &b%place% &7in top voters of the month! Here is an award!'
  242.  
  243.   # Time Format
  244.   # See https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
  245.   TimeFormat: 'EEE, d MMM yyyy HH:mm'
  246.  
  247.   # Format for signs
  248.   # SiteName may be all, depending on sign
  249.   # %position% = position of player, set by sign
  250.   # %votes% = Number of votes
  251.   Signs:
  252.     TopVoterSign:
  253.       Line1: 'TopVoter: %SiteName%'
  254.       Line2: '#%position%'
  255.       Line3: '%player%'
  256.       Line4: '%votes% Votes'
  257.     # Message when right clicking sign, uses same placeholders as above
  258.     RightClickMessage: '&b%player% &7is &b%position% &7with &b%votes% &7votes in &b%SiteName%.'
  259.      
  260.   # Message when player tries to run command without required permissions
  261.   NoPerms: '&4You do not have permission to do that.'
  262.  
  263.   # Message when player types a command but does not input a number where needed
  264.   NotNumber: '&7Error on &b%arg%, &7number expected.'
  265.  
  266.   # Shop messages when using the /vote shop
  267.   ShopPurchase: '&7You bought the &b%Identifier% &7for &b%Points% &7Points.'
  268.   ShopFailed: '&7You do not have &b%Points% &7points to purchase this.'
  269.  
  270.   # User not exist message, from commands such as /vote next (player)
  271.   UserNotExist: '&7User does not exist: &b%player%'
  272.  
  273.   # Text for page buttons in inventories
  274.   PrevPage: '&bPrevious Page'
  275.   NextPage: '&bNext Page'
  276.  
  277.   # Display text
  278.   # Used in /vote top (GUI)
  279.   TopVoter:
  280.     Daily: 'Daily'
  281.     Weekly: 'Weekly'
  282.     Monthly: 'Monthly'
  283.     AllTime: 'AllTime'
  284.  
  285. # ------------------------------------------------
  286. # GUI Options
  287. # ------------------------------------------------
  288.  
  289. # Configure GUI's here
  290. # 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)
  291. # Item Material's can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  292. GUI:
  293.  # GUI for /vote gui, /vgui, votegui
  294.   VoteGUI:
  295.    # Items will be orders as it is below
  296.     URL:
  297.      # Standard item format, lore is automaticly applied
  298.       Item:
  299.         Material: 'BOW'
  300.         Data: 0
  301.         Amount: 1
  302.         Name: '&bVote Links'
  303.         # You can set skulls of the player using the following
  304.         # Remove the # to enable
  305.         #Skull: '%Player%'
  306.       Slot: 0
  307.     Next:
  308.       Item:
  309.         Material: 'COMPASS'
  310.         Data: 0
  311.         Amount: 1
  312.         Name: '&bNext'
  313.       Slot: 1
  314.     Last:
  315.       Item:
  316.         Material: 'WATCH'
  317.         Data: 0
  318.         Amount: 1
  319.         Name: '&bLast'
  320.       Slot: 2
  321.     Total:
  322.       Item:
  323.         Material: 'CHEST'
  324.         Data: 0
  325.         Amount: 1
  326.         Name: '&bTotal'
  327.       Slot: 3
  328.     Top:
  329.       Item:
  330.         Material: 'SIGN'
  331.         Data: 0
  332.         Amount: 1
  333.         Name: '&bTop'
  334.       Slot: 4
  335.     Today:
  336.       Item:
  337.         Material: 'BOOK'
  338.         Data: 0
  339.         Amount: 1
  340.         Name: '&bToday'
  341.       Slot: 5
  342.     Shop:
  343.       Item:
  344.         Material: 'DIAMOND'
  345.         Data: 0
  346.         Amount: 1
  347.         Name: '&bVote Shop'
  348.       Slot: 6
  349.      
  350.   # GUI for /vote url
  351.   # And /vote if enabled in Config.yml
  352.   VoteURL:
  353.    # GUI Name
  354.     Name: '&bVote Links'
  355.     BackButton: true
  356.     SiteName: '&b%Name%'
  357.     SeeURL: '&7Click to get the link.'
  358.     NextVote: '&7Can Vote In:&b %Info%'
  359.     ViewAllUrlsButtonEnabled: true
  360.     AllUrlsButton:
  361.       AlreadyVotedItem:
  362.         Material: 'REDSTONE_BLOCK'
  363.         Data: 0
  364.         Amount: 1
  365.         Name: '&bAll Voting Sites'
  366.         Lore:
  367.        - '&7View all voting sites.'
  368.       CanVoteItem:
  369.         Material: 'EMERALD_BLOCK'
  370.         Data: 0
  371.         Amount: 1
  372.         Name: '&bAll Voting Sites'
  373.         Lore:
  374.        - '&7View all voting sites.'
  375.     AlreadyVotedItem:
  376.       Material: 'REDSTONE_BLOCK'
  377.       Data: 0
  378.       Amount: 1
  379.     CanVoteItem:
  380.       Material: 'EMERALD_BLOCK'
  381.       Data: 0
  382.       Amount: 1
  383.     URLText: '%VoteUrl%'
  384.   # Customize /vote reward
  385.   # Show players what you get when you vote on each site
  386.   VoteReward:
  387.    # Name of votesite
  388.     ExampleVoteSite:
  389.      # items in /vote reward sitename
  390.       Items:
  391.        # Item
  392.         # This is not the item display name
  393.         # Do not have 2 of the same items
  394.         Diamond:
  395.          # Item ID
  396.           Material: 'TRIPWIRE_HOOK'
  397.           # Item Data (Eg 1:4, data is 4)
  398.           Data: 0
  399.           # Amount of items
  400.           # Should be greater than 0
  401.           Amount: 1
  402.           # Item name
  403.           # Remove this line for no name
  404.           Name: '&aVote Key'
  405.           # Lore
  406.           # Remove this line for no lore
  407.           Lore:
  408.          - '&7Right-click on a "&aVote&7" crate'
  409.           - '&7to win an item.'
  410.           Slot: 0
  411.   VoteLast:
  412.     Name: 'VoteLast: %player%'
  413.     BackButton: true
  414.   VoteNext:
  415.     Name: 'VoteNext: %player%'
  416.     BackButton: true
  417.   VoteToday:
  418.     Name: 'VoteToday'
  419.     BackButton: true
  420.   VoteTop:
  421.     Name: 'VoteTop %topvoter%'
  422.     BackButton: false
  423.     Item:
  424.       Name: '&3&l%position%: &3%player%'
  425.       Lore: '&3&lVotes: &3%votes%'
  426.     SwitchItem:
  427.       Name: 'Switch TopVoter'
  428.       Lore: 'Currently: %Top%'
  429.       Material: 'SIGN'
  430.       Amount: 1
  431.       # 8 Slots over from the bottom left
  432.       Slot: 7
  433.     # Number of topvoters to display on page +9
  434.     # 9 Slots on the botton are used for page buttons
  435.     Size: 27
  436.   VoteTotal:
  437.     Name: 'VoteTotal: %player%'
  438.     BackButton: true
  439.     DayTotal:
  440.       Item:
  441.         Material: 'WATCH'
  442.         Name: '&cDaily Total'
  443.         Lore: '&c&lTotal: &c%Total%'
  444.         Amount: 1
  445.     WeekTotal:
  446.       Item:
  447.         Material: 'WATCH'
  448.         Name: '&cWeekly Total'
  449.         Lore: '&c&lTotal: &c%Total%'
  450.         Amount: 1
  451.     MonthTotal:
  452.       Item:
  453.         Material: 'WATCH'
  454.         Name: '&cMonthly Total'
  455.         Lore: '&c&lTotal: &c%Total%'
  456.         Amount: 1
  457.     AllTimeTotal:
  458.       Item:
  459.         Material: 'WATCH'
  460.         Name: '&cAllTime Total'
  461.         Lore: '&c&lTotal: &c%Total%'
  462.         Amount: 1
  463.   VoteBest:
  464.     Name: 'VoteBest: %player%'
  465.     DayBest:
  466.       Item:
  467.         Material: 'WATCH'
  468.         Name: '&cDaily Best'
  469.         Lore: '&c&lBest: &c%Best%'
  470.         Amount: 1
  471.     WeekBest:
  472.       Item:
  473.         Material: 'WATCH'
  474.         Name: '&cWeekly Best'
  475.         Lore: '&c&lBest: &c%Best%'
  476.         Amount: 1
  477.     MonthBest:
  478.       Item:
  479.         Material: 'WATCH'
  480.         Name: '&cMonthly Best'
  481.         Lore: '&c&lBest: &c%Best%'
  482.         Amount: 1
  483.   VoteStreak:
  484.     Name: 'VoteStreak: %player%'
  485.     BackButton: false
  486.     CurrentDayStreak:
  487.       Item:
  488.         Material: 'WATCH'
  489.         Name: '&cCurrent Daily Streak'
  490.         Lore: '&c&lStreak: &c%Streak%'
  491.         Amount: 1
  492.     CurrentWeekStreak:
  493.       Item:
  494.         Material: 'WATCH'
  495.         Name: '&cCurrent Weekly Streak'
  496.         Lore: '&c&lStreak: &c%Streak%'
  497.         Amount: 1
  498.     CurrentMonthStreak:
  499.       Item:
  500.         Material: 'WATCH'
  501.         Name: '&cCurrent Monthly Streak'
  502.         Lore: '&c&lStreak: &c%Streak%'
  503.         Amount: 1
  504.     HighestDayStreak:
  505.       Item:
  506.         Material: 'WATCH'
  507.         Name: '&cHighest Daily Streak'
  508.         Lore: '&c&lStreak: &c%Streak%'
  509.         Amount: 1
  510.     HighestWeekStreak:
  511.       Item:
  512.         Material: 'WATCH'
  513.         Name: '&cHighest Weekly Streak'
  514.         Lore: '&c&lStreak: &c%Streak%'
  515.         Amount: 1
  516.     HighestMonthStreak:
  517.       Item:
  518.         Material: 'WATCH'
  519.         Name: '&cHighest Monthly Streak'
  520.         Lore: '&c&lStreak: &c%Streak%'
  521.         Amount: 1
  522.   VoteURLSite:
  523.     Name: 'VoteSite: %site%'
  524.   VoteGUIName: '&cVoteGUI: &c&l%player%'
  525.   VoteRewardName: 'VoteReward'
  526.   VoteShopName: 'VoteShop'
  527.  
  528. BackButton:
  529.   Material: 'PAPER'
  530.   Data: 0
  531.   Amount: 1
  532.   Name: '&8Back to VoteGUI'
  533.  
  534. VoteShopBackButton: true
  535. Shop:
  536.  # Identifier
  537.   # Used in placeholders for formats
  538.   Diamond:
  539.    # Item
  540.     Material: 'DIAMOND'
  541.     Data: 0
  542.     Amount: 1
  543.     Name: '&4Buy A Diamond'
  544.     # You can set skulls of the player using the following
  545.     # Remove the # to enable
  546.     #Skull: '%Player%'
  547.     Lore:
  548.     - '&c&lCost: &c3 Voting Points'
  549.     # Number of voting points this cost
  550.     Cost: 3
  551.     # Rewards to run if player buys succesfully
  552.     Rewards:
  553.       Items:
  554.         Diamond:
  555.           Material: 'DIAMOND'
  556.           Amount: 1
  557.     # Slot
  558.     Slot: 0          
  559.      
  560. # ------------------------------------------------
  561. # Extra Rewards
  562. # ------------------------------------------------
  563.    
  564. # To disable reward set value to []
  565. # Eg:
  566. # FirstVote: [] (All in one line)
  567. # By default all rewards are disabled
  568.  
  569. # First vote rewards
  570. FirstVote:
  571.   Messages:
  572.     Player: '&7You voted for your first time!'
  573.   Money: 100
  574.  
  575. # All vote rewards
  576. # Reward for voting on all sites in one day
  577. AllSites:
  578.   Messages:
  579.     Player: '&7You voted on all sites in 1 day!'
  580.  
  581. Cumulative:
  582.  # Number of votes required
  583.   # Allows multiple cumulative rewards
  584.   # Number be be around ' (E.g. '1')
  585.   # Can have multiple listed here
  586.   '20':
  587.     Enabled: false
  588.     # Wether or not votes must be made in same day/week
  589.     # Useful if you want to require a certain number of voting sites to be voted on
  590.     # for a daily/weekly reward instead of all of them
  591.     VotesInSameDay: false
  592.     VotesInSameWeek: false
  593.     Rewards:
  594.       Messages:
  595.         Player: '&7You got &b%cumulative% &7cumulative votes!'
  596.  
  597. VoteParty:
  598.  # Wether or not vote party is enabled
  599.   Enabled: false
  600.   # Number of votes required to give rewards
  601.   VotesRequired: 20
  602.   # If true, players who did not vote to reach the votes required will
  603.   # recieve the reward
  604.   GiveAllPlayers: false
  605.   # If true, the vote count will reset each day
  606.   ResetEachDay: false
  607.   # Reset at the end of the month
  608.   ResetMonthly: false
  609.   # Count votes from /av vote?
  610.   CountFakeVotes: true
  611.   # Number of user votes that apply to vote party total the user needs to get rewards
  612.   UserVotesRequired: 0
  613.   # Broadcast when vote party reached
  614.   Broadcast: '&7Reached the vote party amount!'
  615.   # List of commands to execute, these only execute once.
  616.   Commands: []
  617.   # Reward files to give
  618.   Rewards: []
  619.  
  620. # Reset milestons at end of the month
  621. ResetMilestonesMonthly: false
  622.  
  623. MileStones:
  624.  # Number of votes required
  625.   # Allows multiple milestones
  626.   # Number be be around ' (E.g. '1')
  627.   # Can have multiple listed here
  628.   '20':
  629.     Enabled: false
  630.     Rewards:
  631.       Messages:
  632.         Player: '&7You got &b%milestone% &7milestone votes!'
  633.    
  634. VoteStreak:
  635.  # Valid options: Day, Week, Month
  636.   Day:
  637.    # Number of days in a row
  638.     # Each day requires one vote
  639.     # Add a - to give a reward for every multiple (e.g. 2-)
  640.     '2':
  641.      # Enabled or not
  642.       Enabled: false
  643.       # Rewards to give
  644.       Rewards:
  645.         Messages:
  646.           Player: "&7You voted for &b%Streak% %Type%'s &7in a row!"
  647.   Week:
  648.    # Number of weeks in a row
  649.     # Requires atleast one vote per week
  650.     '2':
  651.      # Enabled or not
  652.       Enabled: false
  653.       # Rewards to give
  654.       Rewards:
  655.         Messages:
  656.           Player: "&7You voted for &b%Streak% %Type%'s &7in a row!"
  657.   Month:
  658.    # Number of months in a row
  659.     # Requires atleast 1 vote per month
  660.     '2':
  661.      # Enabled or not
  662.       Enabled: false
  663.       # Rewards to give
  664.       Rewards:
  665.         Messages:
  666.           Player: "&7You voted for &b%Streak% %Type%'s &7in a row!"
  667.          
  668.  
  669. # ONLY USE THIS FOR TITLES/SOUNDS AND OTHER EFFECTS
  670. # IT WILL ONLY RUN ONE TIME FOR ANY NUMBER OF OFFLINE VOTES
  671. # Any reward files listed here are ran on vote of any site
  672. # It is recommended to add rewards to each site instead of here
  673. # Using forceoffline won't work here
  674. AnySiteRewards: []
  675.  
  676.  
  677. # ------------------------------------------------
  678. # Top Voter
  679. # ------------------------------------------------
  680.  
  681. # Top voter blacklist
  682. BlackList:
  683. - 'Notch'
  684.  
  685. # If true players with the permission 'VotingPlugin.TopVoter.Ignore' will act
  686. # as if there name was added on the the blacklist above
  687. # This also applies for ops
  688. TopVoterIgnorePermission: false
  689.  
  690. # /vote top default data displayed
  691. # Valid Options: AllTime, Monthly, Weekly, Daily
  692. VoteTopDefault: Monthly
  693.  
  694. # These are required to be enabled in order for top voter awards to work
  695. LoadTopVoter:
  696.   AllTime: true
  697.   Monthly: true
  698.   Weekly: false
  699.   Daily: false
  700.  
  701. # When top voter awards are given (even if there are none listed) it will store top voters
  702. # Files will created in TopVoters folder.
  703. StoreTopVoters:
  704.   Monthly: true
  705.   Weekly: false
  706.   Daily: false
  707.  
  708. EnableMonthlyAwards: true
  709. # Rewards to give
  710. MonthlyAwards:
  711.  # Position. 1 is first in top voter, 2 is second, etc...
  712.   1:
  713.     Rewards:
  714.       Messages:
  715.         Player: '&7You came in first place in&b %TopVoter%!'
  716.   2:
  717.     Rewards:
  718.       Messages:
  719.         Player: '&7You came in second place in &b%TopVoter%!'
  720.    
  721. EnableWeeklyAwards: false
  722. # Rewards to give on weekly top voter
  723. WeeklyAwards:
  724.  # Position. 1 is first in top voter, 2 is second, etc...
  725.   1:
  726.     Rewards:
  727.       Messages:
  728.         Player: '&7You came in first place in &b%TopVoter%!'
  729.   2:
  730.     Rewards:
  731.       Messages:
  732.         Player: '&7You came in second place in &b%TopVoter%!'
  733.    
  734. EnableDailyRewards: false
  735. # Rewards to give on daily top voter
  736. DailyAwards:
  737.  # Position. 1 is first in top voter, 2 is second, etc...
  738.   1:
  739.    # Reward files to give
  740.     Rewards:
  741.       Messages:
  742.         Player: '&7You came in first place in &b%TopVoter%!'
  743.   2:
  744.     Rewards:
  745.       Messages:
  746.         Player: '&7You came in second place in &b%TopVoter%!'
  747.    
  748. # ------------------------------------------------
  749. # Advanced
  750. # Most of these values can be left untouched
  751. # ------------------------------------------------
  752.  
  753. # Number of points to give on vote
  754. # Set to 0 to give no points
  755. PointsOnVote: 1
  756.  
  757. # Set this to false to disable the plugin adding totals
  758. # Not really recommended
  759. AddTotals: true
  760.  
  761. # Disable checking on world change
  762. # May improve performance
  763. DisableCheckOnWorldChange: false
  764.  
  765. # Debug
  766. Debug: false
  767.  
  768. # Extra Debug
  769. # Only needed in extreme cases
  770. ExtraDebug: false
  771.  
  772. # Debug info ingame
  773. # Players with permission "VotingPlugin.Debug"
  774. # will see debug info if debug is true
  775. DebugInGame: false
  776.  
  777. # Will log debug messages to VotingPlugin/Log/log.txt
  778. # Requires Debug to be on
  779. LogDebugToFile: false
  780.  
  781. # Options for request api
  782. # Current methods
  783. # ANVIL
  784. # BOOK
  785. # CHAT
  786. # This is mainly used for admin gui's to type in values
  787. RequestAPI:
  788.   DefaultMethod: 'Anvil'
  789.   DisabledMethods: []
  790.  
  791. # Wether or not to log every vote to a file
  792. # Use this if you wanna track player votes
  793. # Not recommended though
  794. LogVotesToFile: false
  795.  
  796. # Delay between background updates like signs and more
  797. # Default: 3 Minutes
  798. # Longer times result in longer wait in stuff updating after a vote, like topvoter
  799. DelayBetweenUpdates: 3
  800.  
  801. # Clear cache on update, setting to true reduces performance
  802. ClearCacheOnUpdate: false
  803.  
  804. # Set to true to disable no service site message on voting
  805. # You should never have to touch this if everything is setup properly
  806. # Will also disable a few other warnings about vote sites
  807. DisableNoServiceSiteMessage: false
  808.  
  809. # Used in special cases
  810. # Much slower, but may work better
  811. AlternateUUIDLookup: false
  812.  
  813. # Shouldn't need to change this
  814. AutoKillInvs: true
  815.  
  816. # Count fake votes
  817. # If true fake votes will give points and totals
  818. CountFakeVotes: true
  819.  
  820. # Give VotingPlugin.Player by default
  821. # Requires restart to take affect
  822. GiveDefaultPermission: true
  823.  
  824. # Remove old player files
  825. # Happens on startup or /av purge
  826. PurgeOldData: false
  827.  
  828. # Minimum number of days offline in order to purge
  829. PurgeMin: 90
  830.  
  831. # Whether or not to disable checking names on mojang, disable if you hit the rate limit
  832. # Shouldn't make a noticeable impact if set to false
  833. CheckNameMojang: true
Add Comment
Please, Sign In to add comment