Advertisement
Guest User

Untitled

a guest
Feb 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.98 KB | None | 0 0
  1. # VotingPlugin by Ben12345rocks
  2.  
  3. # Main Config
  4.  
  5. # See wiki for help:
  6.  
  7. # https://github.com/Ben12345rocks/VotingPlugin/wiki
  8.  
  9.  
  10.  
  11. # Valid Options:
  12.  
  13. # - SQLITE
  14.  
  15. # - FLAT
  16.  
  17. # - MYSQL
  18.  
  19. DataStorage: SQLITE
  20.  
  21.  
  22.  
  23. # Information for mysql
  24.  
  25. MySQL:
  26.  
  27. Host: ''
  28.  
  29. # Default port is 3306
  30.  
  31. Port: 3306
  32.  
  33. Database: ''
  34.  
  35. Username: ''
  36.  
  37. Password: ''
  38.  
  39. # Max number of connections
  40.  
  41. MaxConnections: 1
  42.  
  43.  
  44.  
  45. # Let players who never joined before vote
  46.  
  47. # Recommend: False (Will prevent creating random user data files)
  48.  
  49. AllowUnjoined: true
  50.  
  51.  
  52.  
  53. # If true, plugin will send scoreboards on some commands
  54.  
  55. SendScoreboards: false
  56.  
  57.  
  58.  
  59. # If true, plugin will automaticly generate votesites
  60.  
  61. # Disable this if you experience issues with sites being created randomly
  62.  
  63. AutoCreateVoteSites: false
  64.  
  65.  
  66.  
  67. # Automaticly download the latest version
  68.  
  69. # Will require a restart to actually update
  70.  
  71. # Note that updates take 30-40 minutes to load before they can be downloaded
  72.  
  73. AutoDownload: false
  74.  
  75.  
  76.  
  77. # ------------------------------------------------
  78.  
  79. # VoteReminding
  80.  
  81. # ------------------------------------------------
  82.  
  83.  
  84.  
  85. # Configuration for VoteReminding
  86.  
  87. # By default this should be all setup to work
  88.  
  89. # as long as vote delays are done properly
  90.  
  91. VoteReminding:
  92.  
  93. # Enable vote reminding
  94.  
  95. # This will remind player when he can vote on all sites
  96.  
  97. # Requires VoteDelay's to be setup properly
  98.  
  99. # Use /vote next to see when you can be reminded
  100.  
  101. # Players require the perm "VotingPlugin.Login.RemindVotes" or "VotingPlugin.Player"
  102.  
  103. Enabled: true
  104.  
  105.  
  106.  
  107. # Wether or t to remind only once when the player can vote
  108.  
  109. # Does not apply to login reminds.
  110.  
  111. RemindOnlyOnce: true
  112.  
  113.  
  114.  
  115. # Will remind player on login if he can vote
  116.  
  117. # Ignores value above
  118.  
  119. RemindOnLogin: true
  120.  
  121.  
  122.  
  123. # Delay to remind votes in minutes
  124.  
  125. # Only works if above is false
  126.  
  127. RemindDelay: 30
  128.  
  129.  
  130.  
  131. # Run reward files on remind
  132.  
  133. # By default, the reward file will be created for you
  134.  
  135. # and have the default message
  136.  
  137. # Edit the message at AdvancedCore/Rewards/Remind.yml (or any other reward listed)
  138.  
  139. # Can add titles and more in the reward file
  140.  
  141. Rewards:
  142.  
  143. Messages:
  144.  
  145. Player: '&8ยซ &5Vote &8ยป &6Remember to vote!'
  146.  
  147. Title:
  148.  
  149. Enabled: false
  150.  
  151. Title: '&cRemember to vote!'
  152.  
  153. SubTitle: '&7Type /vote'
  154.  
  155. FadeIn: 10
  156.  
  157. ShowTime: 50
  158.  
  159. FadeOut: 10
  160.  
  161.  
  162.  
  163. Commands:
  164.  
  165. # Wether or not the following commands will open GUIs rather than display text
  166.  
  167. UseGUI:
  168.  
  169. Today: false
  170.  
  171. TopVoter: false
  172.  
  173. Last: false
  174.  
  175. Next: false
  176.  
  177. Total: false
  178.  
  179. Vote: true
  180.  
  181. Best: false
  182.  
  183. Streak: false
  184.  
  185.  
  186.  
  187. # ------------------------------------------------
  188.  
  189. # Format
  190.  
  191. # ------------------------------------------------
  192.  
  193.  
  194.  
  195. # Common PlacesHolders:
  196.  
  197. # Please Note: Not all are usable in all sections
  198.  
  199. # Special PlaceHolders will be commented where available
  200.  
  201. # %player% = player name
  202.  
  203. # %SiteName% = vote site name
  204.  
  205. #
  206.  
  207. # Set Message to '' (2 ') to disable message
  208.  
  209.  
  210.  
  211. Format:
  212.  
  213. # Message when player tries to run command without required permissions
  214.  
  215. NoPerms: '&cYou do not have enough permission!'
  216.  
  217.  
  218.  
  219. # Message when player types a command but does not input a number where needed
  220.  
  221. NotNumber: '&cError on &7%arg%&c, number expected!'
  222.  
  223.  
  224.  
  225. # CommandHandler help message
  226.  
  227. HelpLine: '&3&l%Command% - &3%HelpMessage%'
  228.  
  229.  
  230.  
  231. # Broadcast vote message
  232.  
  233. BroadcastMsg: ''
  234.  
  235.  
  236.  
  237. # Broadcast only when player is online
  238.  
  239. BroadcastWhenOnline: false
  240.  
  241.  
  242.  
  243. Commands:
  244.  
  245. # Format for /vote
  246.  
  247. # %num% = the number of the site, for a numbered list
  248.  
  249. # %url% = site URL
  250.  
  251. Vote:
  252.  
  253. Text:
  254.  
  255. - '&5&lVote for our server!'
  256.  
  257.  
  258.  
  259. # If you want to want to use the feature below where the plugin will
  260.  
  261. # automaticly list the sites then set the message in the text above
  262.  
  263. AutoInputSites: true
  264.  
  265. # For each VoteSite
  266.  
  267. # make sure to set VoteURL in your VoteSites
  268.  
  269. # Requires above to be true
  270.  
  271. # Text will be sent before this
  272.  
  273. Sites: '&7%num%: &5%SiteName% &7- %url%'
  274.  
  275.  
  276.  
  277. # Format for /vote next
  278.  
  279. Next:
  280.  
  281. # First line
  282.  
  283. Title: '&b&l%player%''s &7Next Votes:'
  284.  
  285.  
  286.  
  287. # How each line is setup for each vote site
  288.  
  289. # %info% = Info - See Below
  290.  
  291. # %SiteName% = site name from vote
  292.  
  293. Layout: '&b%SiteName%&8: &7%info%'
  294.  
  295.  
  296.  
  297. Info:
  298.  
  299. # Message when player can vote
  300.  
  301. CanVote: 'Go Vote!'
  302.  
  303. # Time until vote msg
  304.  
  305. # %hours% = hours until next vote
  306.  
  307. # %minutes% = minutes until next vote
  308.  
  309. TimeUntilVote: '%hours% Hours and %minutes% Minutes'
  310.  
  311. # If there is an error finding out time until next vote
  312.  
  313. Error: '&cCould not caculate time until next vote!'
  314.  
  315.  
  316.  
  317. # Format for /vote last
  318.  
  319. Last:
  320.  
  321. # First line
  322.  
  323. Title: '&b&l%player% &7Last Vote Times:'
  324.  
  325. # Lines for each vote site
  326.  
  327. # %time% = time, using timeformat below
  328.  
  329. Line: '&b%SiteName%&8:&7 &7%time%'
  330.  
  331.  
  332.  
  333. # Format for /vote total
  334.  
  335. Total:
  336.  
  337. - '&b%player%&7 Total Votes:'
  338.  
  339. - '&bDaily Total: &7%DailyTotal%'
  340.  
  341. - '&bWeekly Total: &7%WeeklyTotal%'
  342.  
  343. - '&bMonthly Total: &7%MonthlyTotal%'
  344.  
  345. - '&bAllTime Total: &7%AllTimeTotal%'
  346.  
  347.  
  348.  
  349. # Format for /vote total all
  350.  
  351. TotalAll:
  352.  
  353. - '&b&lServer Total Votes:'
  354.  
  355. - '&bDaily Total: &7%DailyTotal%'
  356.  
  357. - '&bWeekly Total: &7%WeeklyTotal%'
  358.  
  359. - '&bMonthly Total: &7%MonthlyTotal%'
  360.  
  361. - '&bAllTime Total: &7%AllTimeTotal%'
  362.  
  363.  
  364.  
  365. # Format for /vote top
  366.  
  367. Top:
  368.  
  369. # First line
  370.  
  371. # %page% = current page
  372.  
  373. # %maxpages% = max number of pages
  374.  
  375. # %Top% = Monthly/Weekly/Daily (depending on command)
  376.  
  377. Title: '&bTop %Top% Voters %page%/%maxpages%'
  378.  
  379. # Line for each player in that page
  380.  
  381. Line: '&5%num%&8: &b%player%&7, &b%votes%'
  382.  
  383.  
  384.  
  385. # Format for /vote help
  386.  
  387. Help:
  388.  
  389. # Title of /vote help
  390.  
  391. Title: '&b&lVoting Player Help'
  392.  
  393. # Format for help message in /v help
  394.  
  395. Line: '&b&l%Command% &f- &7%HelpMessage%'
  396.  
  397. # Require permission to see command in /v help or /av help
  398.  
  399. RequirePermission: true
  400.  
  401.  
  402.  
  403. Best:
  404.  
  405. Title: '&b&l%player%''s Best Votes'
  406.  
  407. Lines:
  408.  
  409. - '&bHighest Daily Total&8: &7%HighestDailyTotal%'
  410.  
  411. - '&bHighest Week Total&8: &7%HighestWeeklyTotal%'
  412.  
  413. - '&bHighest Month Total&8: &7%HighestMonthlyTotal%'
  414.  
  415.  
  416.  
  417. Streak:
  418.  
  419. Title: '&b&l%player%''s Vote Streak'
  420.  
  421. Lines:
  422.  
  423. - '&bCurrent Daily Streak&8: &7%DailyStreak%'
  424.  
  425. - '&bCurrent Week Streak&8: &7%WeeklyStreak%'
  426.  
  427. - '&bCurrent Month Streak&8: &7%MonthlyStreak%'
  428.  
  429. - '&b&lHighest Streaks:'
  430.  
  431. - '&bHighest Daily Streak&8: &7%BestDailyStreak%'
  432.  
  433. - '&bHighest Week Streak&8: &7%BestWeeklyStreak%'
  434.  
  435. - '&bHighest Month Streak&8: &7%BestMonthlyStreak%'
  436.  
  437.  
  438.  
  439. # PlaceHolders:
  440.  
  441. # %VotesRequired% = VotesRequired
  442.  
  443. # %NeededVotes% = Number of votes needed to reach VotesRequired
  444.  
  445. # %Votes% = Number of votes
  446.  
  447. Party:
  448.  
  449. - '&cCurrently at &7%Votes%&c, &7%NeededVotes% &cmore votes to go to reach &7%VotesRequired%'
  450.  
  451.  
  452.  
  453. # %Points% = player points
  454.  
  455. Points: '&b%Player%&7 currently has &b&l%Points%&7 Points!'
  456.  
  457.  
  458.  
  459. # Login message if player can vote on all sites
  460.  
  461. # Must be enabled in config.yml
  462.  
  463. LoginMsg: '&cRemember to vote!'
  464.  
  465.  
  466.  
  467. # Msg on top voter award, will only send message if that place has a reward set
  468.  
  469. # %place% = place - 1,2,b,etc
  470.  
  471. TopVoterAwardMsg: '&8ยซ&5 Vote &8ยป &7You came in &b&l%place% &7in top voters of the month! Here is an award!'
  472.  
  473.  
  474.  
  475. # Time Format
  476.  
  477. # See https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
  478.  
  479. TimeFormat: 'EEE, d MMM yyyy HH:mm'
  480.  
  481.  
  482.  
  483. # Format for signs
  484.  
  485. # SiteName may be all, depending on sign
  486.  
  487. # %position% = position of player, set by sign
  488.  
  489. # %votes% = Number of votes
  490.  
  491. Signs:
  492.  
  493. TopVoterSign:
  494.  
  495. Line1: '&7TopVoter: &b%SiteName%'
  496.  
  497. Line2: '&a#%position%'
  498.  
  499. Lineb: '&b&l%player%'
  500.  
  501. Line4: '&b%votes%&7 Votes'
  502.  
  503. # Message when right clicking sign, uses same placeholders as above
  504.  
  505. RightClickMessage: '&b%player% &7is &b%position% &7with &b%votes% &7votes in &b%SiteName%'
  506.  
  507.  
  508.  
  509. # Message when player tries to run command without required permissions
  510.  
  511. NoPerms: '&cYou do not have enough permission!'
  512.  
  513.  
  514.  
  515. # Message when player types a command but does not input a number where needed
  516.  
  517. NotNumber: '&cError on &7%arg%&c, number expected!'
  518.  
  519.  
  520.  
  521. # Shop messages when using the /vote shop
  522.  
  523. ShopPurchase: '&aYou bought the %Identifier% for %Points% Points!'
  524.  
  525. ShopFailed: '&cYou do not have %Points% points to purhcase this!'
  526.  
  527.  
  528.  
  529. # ------------------------------------------------
  530.  
  531. # GUI Options
  532.  
  533. # ------------------------------------------------
  534.  
  535.  
  536.  
  537. # Configure GUI's here
  538.  
  539. # 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)
  540.  
  541. # Item Material's can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  542.  
  543. GUI:
  544.  
  545. # GUI for /vote gui, /vgui, votegui
  546.  
  547. VoteGUI:
  548.  
  549. # Items will be orders as it is below
  550.  
  551. URL:
  552.  
  553. # Standard item format, lore is automaticly applied
  554.  
  555. Item:
  556.  
  557. Material: 'PAPER'
  558.  
  559. Data: 0
  560.  
  561. Amount: 1
  562.  
  563. Name: '&bClick for URLs'
  564.  
  565. # You can set skulls of the player using the following
  566.  
  567. # Remove the # to enable
  568.  
  569. #Skull: '%Player%'
  570.  
  571. Slot: 2
  572.  
  573. Next:
  574.  
  575. Item:
  576.  
  577. Material: 'COMPASS'
  578.  
  579. Data: 0
  580.  
  581. Amount: 1
  582.  
  583. Name: '&9Future Votes'
  584.  
  585. Slot: 3
  586.  
  587. Last:
  588.  
  589. Item:
  590.  
  591. Material: 'WATCH'
  592.  
  593. Data: 0
  594.  
  595. Amount: 1
  596.  
  597. Name: '&5Last Votes'
  598.  
  599. Slot: 4
  600.  
  601. Total:
  602.  
  603. Item:
  604.  
  605. Material: 'CHEST'
  606.  
  607. Data: 0
  608.  
  609. Amount: 1
  610.  
  611. Name: '&dTotal Votes'
  612.  
  613. Slot: 5
  614.  
  615. Top:
  616.  
  617. Item:
  618.  
  619. Material: 'SIGN'
  620.  
  621. Data: 0
  622.  
  623. Amount: 1
  624.  
  625. Name: '&cTop'
  626.  
  627. Slot: 6
  628.  
  629.  
  630.  
  631.  
  632. # GUI for /vote url
  633.  
  634. # And /vote if enabled in Config.yml
  635.  
  636. VoteURL:
  637. # GUI Name
  638. Name: '&cVoting URLs'
  639. SiteName: '&c%Name%'
  640. SeeURL: '&cClick to see URL'
  641. NextVote: '&cCan Vote In: %Info%'
  642. ViewAllUrlsButtonEnabled: true
  643. AllUrlsButton:
  644. AlreadyVotedItem:
  645. Material: 'REDSTONE_BLOCK'
  646. Data: 0
  647. Amount: 1
  648. CanVoteItem:
  649. Material: 'EMERALD_BLOCK'
  650. Data: 0
  651. Amount: 1
  652. AlreadyVotedItem:
  653. Material: 'REDSTONE_BLOCK'
  654. Data: 0
  655. Amount: 1
  656. CanVoteItem:
  657. Material: 'EMERALD_BLOCK'
  658. Data: 0
  659. Amount: 1
  660.  
  661. # Customize /vote reward
  662.  
  663. # Show players what you get when you vote on each site
  664.  
  665. VoteReward:
  666.  
  667. # Name of votesite
  668.  
  669. All:
  670. # items in /vote reward sitename
  671. Items:
  672. Keys:
  673. # Item ID
  674. Material: 'TRIPWIRE_HOOK'
  675. # Item Data (Eg 1:4, data is 4)
  676. Data: 0
  677. # Amount of items
  678. # Should be greater than 0
  679. Amount: 3
  680. # Item name
  681. # Remove this line for no name
  682. Name: '&d3x Vote key'
  683. Enchants:
  684. - DURABILITY: 1
  685. Slot: 4
  686. VoteLast:
  687.  
  688. Name: 'VoteLast: %player%'
  689.  
  690. VoteNext:
  691.  
  692. Name: 'VoteNext: %player%'
  693.  
  694. VoteToday:
  695.  
  696. Name: 'VoteToday'
  697.  
  698. VoteTop:
  699.  
  700. Name: 'VoteTop %topvoter%'
  701.  
  702. Item:
  703.  
  704. Name: '&b&l%position%: &b%player%'
  705.  
  706. Lore: '&b&lVotes: &b%votes%'
  707.  
  708. SwitchItem:
  709.  
  710. Name: 'Switch TopVoter'
  711.  
  712. Lore: 'Currently: %Top%'
  713.  
  714. Material: 'SIGN'
  715.  
  716. Amount: 1
  717.  
  718. # 8 Slots over from the bottom left
  719.  
  720. Slot: 7
  721.  
  722. # Number of topvoters to display on page +9
  723.  
  724. # 9 Slots on the botton are used for page buttons
  725.  
  726. Size: 27
  727.  
  728. VoteTotal:
  729.  
  730. Name: 'VoteTotal: %player%'
  731.  
  732. DayTotal:
  733.  
  734. Item:
  735.  
  736. Material: 'WATCH'
  737.  
  738. Name: '&cDaily Total'
  739.  
  740. Lore: '&c&lTotal: &c%Total%'
  741.  
  742. Amount: 1
  743.  
  744. WeekTotal:
  745.  
  746. Item:
  747.  
  748. Material: 'WATCH'
  749.  
  750. Name: '&cWeekly Total'
  751.  
  752. Lore: '&c&lTotal: &c%Total%'
  753.  
  754. Amount: 1
  755.  
  756. MonthTotal:
  757.  
  758. Item:
  759.  
  760. Material: 'WATCH'
  761.  
  762. Name: '&cMonthly Total'
  763.  
  764. Lore: '&c&lTotal: &c%Total%'
  765.  
  766. Amount: 1
  767.  
  768. AllTimeTotal:
  769.  
  770. Item:
  771.  
  772. Material: 'WATCH'
  773.  
  774. Name: '&cAllTime Total'
  775.  
  776. Lore: '&c&lTotal: &c%Total%'
  777.  
  778. Amount: 1
  779.  
  780. VoteBest:
  781.  
  782. Name: 'VoteBest: %player%'
  783.  
  784. DayBest:
  785.  
  786. Item:
  787.  
  788. Material: 'WATCH'
  789.  
  790. Name: '&cDaily Best'
  791.  
  792. Lore: '&c&lBest: &c%Best%'
  793.  
  794. Amount: 1
  795.  
  796. WeekBest:
  797.  
  798. Item:
  799.  
  800. Material: 'WATCH'
  801.  
  802. Name: '&cWeekly Best'
  803.  
  804. Lore: '&c&lBest: &c%Best%'
  805.  
  806. Amount: 1
  807.  
  808. MonthBest:
  809.  
  810. Item:
  811.  
  812. Material: 'WATCH'
  813.  
  814. Name: '&cMonthly Best'
  815.  
  816. Lore: '&c&lBest: &c%Best%'
  817.  
  818. Amount: 1
  819.  
  820. VoteStreak:
  821. Name: 'VoteBest: %player%'
  822. CurrentDayStreak:
  823. Item:
  824. Material: 'WATCH'
  825. Name: '&cCurrent Daily Streak'
  826. Lore: '&c&lStreak: &c%Streak%'
  827. Amount: 1
  828. CurrentWeekStreak:
  829. Item:
  830. Material: 'WATCH'
  831. Name: '&cCurrent Weekly Streak'
  832. Lore: '&c&lStreak: &c%Streak%'
  833. Amount: 1
  834. CurrentMonthStreak:
  835. Item:
  836. Material: 'WATCH'
  837. Name: '&cCurrent Monthly Streak'
  838. Lore: '&c&lStreak: &c%Streak%'
  839. Amount: 1
  840. HighestDayStreak:
  841. Item:
  842. Material: 'WATCH'
  843. Name: '&cHighest Daily Streak'
  844. Lore: '&c&lStreak: &c%Streak%'
  845. Amount: 1
  846. HighestWeekStreak:
  847. Item:
  848. Material: 'WATCH'
  849. Name: '&cHighest Weekly Streak'
  850. Lore: '&c&lStreak: &c%Streak%'
  851. Amount: 1
  852. HighestMonthStreak:
  853. Item:
  854. Material: 'WATCH'
  855. Name: '&cHighest Monthly Streak'
  856. Lore: '&c&lStreak: &c%Streak%'
  857. Amount: 1
  858. VoteURLSite:
  859. Name: 'VoteSite: %site%'
  860. VoteGUIName: '&cVoteGUI: &c&l%player%'
  861. VoteRewardName: 'Vote Reward'
  862. VoteShopName: 'Vote Shop'
  863.  
  864.  
  865.  
  866. Shop:
  867. # Identifier
  868. # Used in placeholders for formats
  869. Diamond:
  870. # Item
  871. Material: 'DIAMOND'
  872. Data: 0
  873. Amount: 1
  874. Name: '&4Buy A Diamond'
  875. # You can set skulls of the player using the following
  876. # Remove the # to enable
  877. #Skull: '%Player%'
  878. Lore:
  879. - '&c&lCost: &c30 Voting Points'
  880. # Number of voting points this cost
  881. Cost: 30
  882. # Rewards to run if player buys succesfully
  883. Rewards:
  884. Items:
  885. Material: 'DIAMOND'
  886. Amount: 1
  887. # Slot
  888. Slot: 0
  889.  
  890. # ------------------------------------------------
  891.  
  892. # Extra Rewards
  893.  
  894. # ------------------------------------------------
  895.  
  896.  
  897.  
  898. # To disable reward set value to []
  899.  
  900. # Eg:
  901.  
  902. # FirstVote: [] (All in one line)
  903.  
  904. # By default all rewards are disabled
  905.  
  906.  
  907.  
  908. # First vote rewards
  909.  
  910. FirstVote: []
  911.  
  912. AllSites: []
  913.  
  914. Cumulative:
  915. # Number of votes required
  916. # Allows multiple cumulative rewards
  917. # Number be be around ' (E.g. '1')
  918. # Can have multiple listed here
  919. '1':
  920. Enabled: true
  921. # Wether or not votes must be made in same day/week
  922. # Useful if you want to require a certain number of voting sites to be voted on
  923. # for a daily/weekly reward instead of all of them
  924. VotesInSameDay: false
  925. VotesInSameWeek: false
  926. Rewards:
  927. - SingleVoteAdventure
  928. '2':
  929. Enabled: true
  930. # Wether or not votes must be made in same day/week
  931. # Useful if you want to require a certain number of voting sites to be voted on
  932. # for a daily/weekly reward instead of all of them
  933. VotesInSameDay: false
  934. VotesInSameWeek: false
  935. Rewards:
  936. - TwoVotesAdventure
  937. '6':
  938. Enabled: true
  939. # Wether or not votes must be made in same day/week
  940. # Useful if you want to require a certain number of voting sites to be voted on
  941. # for a daily/weekly reward instead of all of them
  942. VotesInSameDay: false
  943. VotesInSameWeek: false
  944. Rewards:
  945. - AllVotesAdventure
  946. VoteParty:
  947. # Wether or not vote party is enabled
  948. Enabled: true
  949. # Number of votes required to give rewards
  950. VotesRequired: 800
  951. # If true, players who did not vote to reach the votes required will
  952. # recieve the reward
  953. GiveAllPlayers: false
  954. # If true, the vote count will reset each day
  955. ResetEachDay: true
  956. # Number of user votes that apply to vote party total the user needs to get rewards
  957. UserVotesRequired: 5
  958. # Reward files to give
  959. Rewards:
  960. - VoteParty
  961. MileStones:
  962. # Number of votes required
  963. # Allows multiple milestones
  964. # Number be be around ' (E.g. '1')
  965. # Can have multiple listed here
  966. '20':
  967. Enabled: false
  968. Rewards:
  969. Messages:
  970. Player: '&aYou got %milestone% milestone votes!'
  971. ResetMonthly: false
  972.  
  973. VoteStreak:
  974. # Valid options: Day, Week, Month
  975. Day:
  976. # Number of days in a row
  977. '2':
  978. # Enabled or not
  979. Enabled: true
  980. # Rewards to give
  981. Rewards:
  982. Messages:
  983. Player: "&aYou voted for %Streak% %Type%s in a row!"
  984. '3':
  985. # Enabled or not
  986. Enabled: true
  987. # Rewards to give
  988. Rewards:
  989. Messages:
  990. Player: "&aYou voted for %Streak% %Type%s in a row!"
  991. '4':
  992. # Enabled or not
  993. Enabled: true
  994. # Rewards to give
  995. Rewards:
  996. Messages:
  997. Player: "&aYou voted for %Streak% %Type%s in a row!"
  998. '5':
  999. # Enabled or not
  1000. Enabled: true
  1001. # Rewards to give
  1002. Rewards:
  1003. Messages:
  1004. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1005. '6':
  1006. # Enabled or not
  1007. Enabled: true
  1008. # Rewards to give
  1009. Rewards:
  1010. Messages:
  1011. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1012.  
  1013. Week:
  1014. # Number of days in a row
  1015. '1':
  1016. # Enabled or not
  1017. Enabled: true
  1018. # Rewards to give
  1019. Rewards:
  1020. Messages:
  1021. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1022. '2':
  1023. # Enabled or not
  1024. Enabled: true
  1025. # Rewards to give
  1026. Rewards:
  1027. Messages:
  1028. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1029. '3':
  1030. # Enabled or not
  1031. Enabled: true
  1032. # Rewards to give
  1033. Rewards:
  1034. Messages:
  1035. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1036.  
  1037. Month:
  1038. # Number of days in a row
  1039. '1':
  1040. # Enabled or not
  1041. Enabled: true
  1042. # Rewards to give
  1043. Rewards:
  1044. Messages:
  1045. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1046. '2':
  1047. # Enabled or not
  1048. Enabled: true
  1049. # Rewards to give
  1050. Rewards:
  1051. Messages:
  1052. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1053. '3':
  1054. # Enabled or not
  1055. Enabled: true
  1056. # Rewards to give
  1057. Rewards:
  1058. Messages:
  1059. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1060. '4':
  1061. # Enabled or not
  1062. Enabled: true
  1063. # Rewards to give
  1064. Rewards:
  1065. Messages:
  1066. Player: "&aYou voted for %Streak% %Type%s in a row!"
  1067. # ONLY USE THIS FOR TITLES/SOUNDS AND OTHER EFFECTS
  1068.  
  1069. # IT WILL ONLY RUN ONE TIME FOR ANY NUMBER OF OFFLINE VOTES
  1070.  
  1071. # Any reward files listed here are ran on vote of any site
  1072.  
  1073. # It is recommended to add rewards to each site instead of here
  1074.  
  1075. AnySiteRewards: []
  1076.  
  1077. # ------------------------------------------------
  1078.  
  1079. # Top Voter
  1080.  
  1081. # ------------------------------------------------
  1082.  
  1083. # Top voter blacklist
  1084. BlackList:
  1085. - 'Notch'
  1086. # If true players with the permission 'VotingPlugin.TopVoter.Ignore' will act
  1087. # as if their name was added on the the blacklist above
  1088. # This also applies for ops
  1089. TopVoterIgnorePermission: false
  1090. # /vote top default data displayed
  1091. # Valid Options: AllTime, Monthly, Weekly, Daily
  1092. VoteTopDefault: Monthly
  1093. # These are required to be enabled in order for top voter awards to work
  1094. LoadTopVoter:
  1095. AllTime: true
  1096. Monthly: true
  1097. Weekly: false
  1098. Daily: false
  1099. # When top voter awards are given (even if there are none listed) it will store top voters
  1100. # Files will created in TopVoters folder.
  1101. StoreTopVoters:
  1102. Monthly: true
  1103. Weekly: false
  1104. Daily: false
  1105. EnableMonthlyAwards: true
  1106. # Rewards to give
  1107. MonthlyAwards:
  1108. # Position. 1 is first in top voter, 2 is second, etc...
  1109. 1:
  1110. Rewards:
  1111. Messages:
  1112. Player: '&aYou placed 1st for Top Voter of the month!'
  1113. 2:
  1114. Rewards:
  1115. Messages:
  1116. Player: '&aYou placed 2nd for Top Voter of the month!'
  1117. EnableWeeklyAwards: false
  1118. # Rewards to give on weekly top voter
  1119. WeeklyAwards:
  1120. # Position. 1 is first in top voter, 2 is second, etc...
  1121. 1:
  1122. Rewards:
  1123. Messages:
  1124. Player: '&aYou came in first place in %TopVoter%!'
  1125. 2:
  1126. Rewards:
  1127. Messages:
  1128. Player: '&aYou came in second place in %TopVoter%!'
  1129.  
  1130. EnableDailyRewards: false
  1131. # Rewards to give on daily top voter
  1132. DailyAwards:
  1133. # Position. 1 is first in top voter, 2 is second, etc...
  1134. 1:
  1135. # Reward files to give
  1136. Rewards:
  1137. Messages:
  1138. Player: '&aYou came in first place in %TopVoter%!'
  1139. 2:
  1140. Rewards:
  1141. Messages:
  1142. Player: '&aYou came in second place in %TopVoter%!'
  1143. # ------------------------------------------------
  1144. # Advanced
  1145. # Most of these values can be left untouched
  1146. # ------------------------------------------------
  1147. # Wether or not to check on world change
  1148.  
  1149. # Should only be used if you do per world rewards
  1150.  
  1151. CheckOnWorldChange: false
  1152. # Debug
  1153.  
  1154. Debug: false
  1155. # Extra Debug
  1156.  
  1157. # Only needed in extreme cases
  1158.  
  1159. ExtraDebug: false
  1160. # Debug info ingame
  1161.  
  1162. # Players with permission "VotingPlugin.Debug"
  1163.  
  1164. # will see debug info if debug is true
  1165.  
  1166. DebugInGame: false
  1167. # Will log debug messages to VotingPlugin/Log/log.txt
  1168.  
  1169. # Requires Debug to be on
  1170.  
  1171. LogDebugToFile: false
  1172. # Options for request api
  1173.  
  1174. # Current methods
  1175.  
  1176. # ANVIL
  1177.  
  1178. # BOOK
  1179.  
  1180. # CHAT
  1181.  
  1182. # This is mainly used for admin gui's to type in values
  1183. RequestAPI:
  1184. DefaultMethod: 'Anvil'
  1185. DisabledMethods: []
  1186. # Wether or not to log every vote to a file
  1187.  
  1188. # Use this if you wanna track player votes
  1189. # Not recommended though
  1190. LogVotesToFile: false
  1191.  
  1192. # Delay between background updates like signs and more
  1193. # Default: 3 Minutes
  1194. # Longer times result in longer wait in stuff updating after a vote, like topvoter
  1195. DelayBetweenUpdates: 10
  1196.  
  1197. # Set to true to disable no service site message on voting
  1198. # You should never have to touch this if everything is setup properly
  1199. DisableNoServiceSiteMessage: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement