Advertisement
Guest User

Untitled

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