Advertisement
Guest User

Untitled

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