Advertisement
Guest User

Untitled

a guest
Jan 13th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.74 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: false
  97. TopVoter: false
  98. Last: false
  99. Next: false
  100. Total: false
  101. Vote: true
  102. Best: false
  103. Streak: false
  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: '&aBroadcast > &b%player% &7Just Voted For The Server And Recieve &bVote Dust'
  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. - '&atg'
  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: '&b%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: '&7Purchased %Identifier% For %Points% &bVote Dusts'
  280. ShopFailed: '&cYou Do Not Have Enough Vote Dust To Make This Purchase!'
  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: 'PAPER'
  314. Data: 0
  315. Amount: 1
  316. Name: '&bVotes'
  317. # You can set skulls of the player using the following
  318. # Remove the # to enable
  319. #Skull: '%Player%'
  320. Lore:
  321. - '&fVote Links'
  322. Top:
  323. Item:
  324. Material: 'SIGN'
  325. Data: 0
  326. Amount: 1
  327. Name: '&bLeaderBoard'
  328. Lore:
  329. - '&fTop Voters'
  330. Shop:
  331. Item:
  332. Material: 'CHEST_MINECART'
  333. Data: 0
  334. Amount: 1
  335. Name: '&bVote Shop'
  336. Lore:
  337. - '&fVote Dust: %points%'
  338.  
  339. # GUI for /vote url
  340. # And /vote if enabled in Config.yml
  341. VoteURL:
  342. # GUI Name
  343. Name: ' Vote'
  344. BackButton: true
  345. SiteName: '&c%Name%'
  346. SeeURL: '&cClick to see URL'
  347. NextVote: '&cCan Vote In: %Info%'
  348. ViewAllUrlsButtonEnabled: false
  349. AllUrlsButton:
  350. AlreadyVotedItem:
  351. Material: 'MAP'
  352. Data: 0
  353. Amount: 1
  354. Name: '%name%'
  355. Lore:
  356. - '&cClick Me'
  357. CanVoteItem:
  358. Material: 'PAPER'
  359. Data: 0
  360. Amount: 1
  361. Name: '%name%'
  362. Lore:
  363. - '&cClick Me'
  364. AlreadyVotedItem:
  365. Material: 'MAP'
  366. Data: 0
  367. Amount: 1
  368. CanVoteItem:
  369. Material: 'PAPER'
  370. Data: 0
  371. Amount: 1
  372. URLText: '%VoteUrl%'
  373.  
  374. VoteRewardBackButton: false
  375. # Customize /vote reward
  376. # Show players what you get when you vote on each site
  377. VoteReward:
  378. # Name of votesite
  379. ExampleVoteSite:
  380. # items in /vote reward sitename
  381. Items:
  382. # Item
  383. # This is not the item display name
  384. # Do not have 2 of the same items
  385. Diamond:
  386. # Item ID
  387. Material: 'DIAMOND'
  388. # Item Data (Eg 1:4, data is 4)
  389. Data: 0
  390. # Amount of items
  391. # Should be greater than 0
  392. Amount: 1
  393. # Item name
  394. # Remove this line for no name
  395. Name: '&4Example'
  396. # Lore
  397. # Remove this line for no lore
  398. Lore:
  399. - '&4Line 1'
  400. VoteLast:
  401. Name: 'VoteLast: %player%'
  402. BackButton: true
  403. VoteNext:
  404. Name: 'VoteNext: %player%'
  405. BackButton: true
  406. VoteToday:
  407. Name: 'VoteToday'
  408. BackButton: true
  409. VoteTop:
  410. Name: 'VoteTop %topvoter%'
  411. BackButton: false
  412. Item:
  413. Name: '&3&l%position%: &3%player%'
  414. Lore: '&3&lVotes: &3%votes%'
  415. SwitchItem:
  416. Name: 'Switch TopVoter'
  417. Lore: 'Currently: %Top%'
  418. Material: 'SIGN'
  419. Amount: 1
  420. # 8 Slots over from the bottom left
  421. Slot: 7
  422. # Number of topvoters to display on page +9
  423. # 9 Slots on the botton are used for page buttons
  424. Size: 27
  425. VoteTotal:
  426. Name: 'VoteTotal: %player%'
  427. BackButton: true
  428. DayTotal:
  429. Item:
  430. Material: 'CLOCK'
  431. Name: '&cDaily Total'
  432. Lore: '&c&lTotal: &c%Total%'
  433. Amount: 1
  434. WeekTotal:
  435. Item:
  436. Material: 'CLOCK'
  437. Name: '&cWeekly Total'
  438. Lore: '&c&lTotal: &c%Total%'
  439. Amount: 1
  440. MonthTotal:
  441. Item:
  442. Material: 'CLOCK'
  443. Name: '&cMonthly Total'
  444. Lore: '&c&lTotal: &c%Total%'
  445. Amount: 1
  446. AllTimeTotal:
  447. Item:
  448. Material: 'CLOCK'
  449. Name: '&cAllTime Total'
  450. Lore: '&c&lTotal: &c%Total%'
  451. Amount: 1
  452. VoteBest:
  453. Name: 'VoteBest: %player%'
  454. DayBest:
  455. Item:
  456. Material: 'CLOCK'
  457. Name: '&cDaily Best'
  458. Lore: '&c&lBest: &c%Best%'
  459. Amount: 1
  460. WeekBest:
  461. Item:
  462. Material: 'CLOCK'
  463. Name: '&cWeekly Best'
  464. Lore: '&c&lBest: &c%Best%'
  465. Amount: 1
  466. MonthBest:
  467. Item:
  468. Material: 'CLOCK'
  469. Name: '&cMonthly Best'
  470. Lore: '&c&lBest: &c%Best%'
  471. Amount: 1
  472. VoteStreak:
  473. Name: 'VoteStreak: %player%'
  474. BackButton: false
  475. CurrentDayStreak:
  476. Item:
  477. Material: 'CLOCK'
  478. Name: '&cCurrent Daily Streak'
  479. Lore: '&c&lStreak: &c%Streak%'
  480. Amount: 1
  481. CurrentWeekStreak:
  482. Item:
  483. Material: 'CLOCK'
  484. Name: '&cCurrent Weekly Streak'
  485. Lore: '&c&lStreak: &c%Streak%'
  486. Amount: 1
  487. CurrentMonthStreak:
  488. Item:
  489. Material: 'CLOCK'
  490. Name: '&cCurrent Monthly Streak'
  491. Lore: '&c&lStreak: &c%Streak%'
  492. Amount: 1
  493. HighestDayStreak:
  494. Item:
  495. Material: 'CLOCK'
  496. Name: '&cHighest Daily Streak'
  497. Lore: '&c&lStreak: &c%Streak%'
  498. Amount: 1
  499. HighestWeekStreak:
  500. Item:
  501. Material: 'CLOCK'
  502. Name: '&cHighest Weekly Streak'
  503. Lore: '&c&lStreak: &c%Streak%'
  504. Amount: 1
  505. HighestMonthStreak:
  506. Item:
  507. Material: 'CLOCK'
  508. Name: '&cHighest Monthly Streak'
  509. Lore: '&c&lStreak: &c%Streak%'
  510. Amount: 1
  511. VoteURLSite:
  512. Name: 'VoteSite: %site%'
  513. VoteGUIName: ' Vote'
  514. VoteRewardName: 'VoteReward'
  515. VoteShopName: 'VoteShop'
  516.  
  517. BackButton:
  518. Material: 'PAPER'
  519. Data: 0
  520. Amount: 1
  521. Name: '← Back'
  522.  
  523. VoteShopBackButton: true
  524. VoteShopEnabled: true
  525. Shop:
  526. # Identifier
  527. # Used in placeholders for formats
  528. 1000:
  529. # Item
  530. Material: 'GOLD_INGOT'
  531. Data: 0
  532. Amount: 1
  533. Name: '&6$1000'
  534. # You can set skulls of the player using the following
  535. # Remove the # to enable
  536. #Skull: '%Player%'
  537. Lore:
  538. - '&7Buy: &b10 Vote Dusts'
  539. # Number of voting points this cost
  540. Cost: 10
  541. # Permission required, leave blank for no permission
  542. Permission: ''
  543. # Limit how many times you can buy this
  544. #Limit: 0
  545. # Rewards to run if player buys succesfully
  546. Rewards:
  547. Commands:
  548. - eco give %player% 1000
  549.  
  550. 2000:
  551. # Item
  552. Material: 'GOLD_INGOT'
  553. Data: 0
  554. Amount: 1
  555. Name: '&6$2000'
  556. # You can set skulls of the player using the following
  557. # Remove the # to enable
  558. #Skull: '%Player%'
  559. Lore:
  560. - '&7Buy: &b18 Vote Dusts'
  561. # Number of voting points this cost
  562. Cost: 18
  563. # Permission required, leave blank for no permission
  564. Permission: ''
  565. # Limit how many times you can buy this
  566. #Limit: 0
  567. # Rewards to run if player buys succesfully
  568. Rewards:
  569. Commands:
  570. - eco give %player% 2000
  571.  
  572. 3000:
  573. # Item
  574. Material: 'GOLD_INGOT'
  575. Data: 0
  576. Amount: 1
  577. Name: '&6$3000'
  578. # You can set skulls of the player using the following
  579. # Remove the # to enable
  580. #Skull: '%Player%'
  581. Lore:
  582. - '&7Buy: &b24 Vote Dusts'
  583. # Number of voting points this cost
  584. Cost: 24
  585. # Permission required, leave blank for no permission
  586. Permission: ''
  587. # Limit how many times you can buy this
  588. #Limit: 0
  589. # Rewards to run if player buys succesfully
  590. Rewards:
  591. Commands:
  592. - eco give %player% 3000
  593.  
  594. # ------------------------------------------------
  595. # Extra Rewards
  596. # ------------------------------------------------
  597.  
  598. # To disable reward set value to []
  599. # Eg:
  600. # FirstVote: [] (All in one line)
  601. # By default all rewards are disabled
  602.  
  603. # All vote rewards
  604. # Reward for voting on all sites in one day
  605. AllSites:
  606. Messages:
  607. Player: '&7You Received A &bBonus Reward &7Because You Voted For All 5 Voting Sites!'
  608. Commands:
  609. - eco give %player% 250
  610.  
  611. Cumulative:
  612. # Number of votes required
  613. # Allows multiple cumulative rewards
  614. # Number be be around ' (E.g. '1')
  615. # Can have multiple listed here
  616. '20':
  617. Enabled: false
  618. # Wether or not votes must be made in same day/week
  619. # Useful if you want to require a certain number of voting sites to be voted on
  620. # for a daily/weekly reward instead of all of them
  621. VotesInSameDay: false
  622. VotesInSameWeek: false
  623. Rewards:
  624. Messages:
  625. Player: '&aYou got %cumulative% cumulative votes!'
  626.  
  627. VoteParty:
  628. # Wether or not vote party is enabled
  629. Enabled: false
  630. # Number of votes required to give rewards
  631. VotesRequired: 20
  632. # Increase the amount of votes required on each vote party reached
  633. #IncreaseVotesRquired: 10
  634. # If true, players who did not vote to reach the votes required will
  635. # recieve the reward
  636. GiveAllPlayers: false
  637. # If true, the vote count will reset each day
  638. ResetEachDay: false
  639. # Reset at the end of the month
  640. ResetMonthly: false
  641. # Count votes from /av vote?
  642. CountFakeVotes: true
  643. # Number of user votes that apply to vote party total the user needs to get rewards
  644. UserVotesRequired: 0
  645. # Broadcast when vote party reached
  646. Broadcast: '&cReached the vote party amount!'
  647. # List of commands to execute, these only execute once.
  648. # %player% does not work here
  649. Commands: []
  650. # Rewards to give
  651. Rewards:
  652. Commands:
  653. - say %player%
  654. Items:
  655. DIAMOND:
  656. Material: 'DIAMOND'
  657. Amount: 1
  658.  
  659. # Reset milestones at end of the month
  660. ResetMilestonesMonthly: false
  661.  
  662. MileStones:
  663. # Number of votes required
  664. # Allows multiple milestones
  665. # Number be be around ' (E.g. '1')
  666. # Can have multiple listed here
  667. '20':
  668. Enabled: false
  669. Rewards:
  670. Messages:
  671. Player: '&aYou got %milestone% milestone votes!'
  672.  
  673. VoteStreak:
  674. # Valid options: Day, Week, Month
  675. Day:
  676. # Number of days in a row
  677. # Each day requires one vote
  678. # Add a - to give a reward for every multiple (e.g. 2- = 2,4,6,8, and so on)
  679. '2':
  680. # Enabled or not
  681. Enabled: false
  682. # Rewards to give
  683. Rewards:
  684. Messages:
  685. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  686. Week:
  687. # Number of weeks in a row
  688. # Requires atleast one vote per week
  689. '2':
  690. # Enabled or not
  691. Enabled: false
  692. # Rewards to give
  693. Rewards:
  694. Messages:
  695. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  696. Month:
  697. # Number of months in a row
  698. # Requires atleast 1 vote per month
  699. '2':
  700. # Enabled or not
  701. Enabled: false
  702. # Rewards to give
  703. Rewards:
  704. Messages:
  705. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  706. Requirement:
  707. # Require certain percentage of votes
  708. UsePercentage: false
  709. # Percentage requirements of votes
  710. # 50 = %50
  711. Day: 50
  712. Week: 50
  713. Month: 50
  714.  
  715.  
  716. # ONLY USE THIS FOR TITLES/SOUNDS AND OTHER EFFECTS
  717. # IT WILL ONLY RUN ONE TIME FOR ANY NUMBER OF OFFLINE VOTES (3 offline votes = 1 AnySiteReward)
  718. # Any reward files listed here are ran on vote of any site
  719. # It is recommended to add rewards to each site instead of here
  720. # Using forceoffline won't work here
  721. # Use EverySiteReward in VoteSites.yml for a global reward for each site
  722. AnySiteRewards: []
  723.  
  724.  
  725. # ------------------------------------------------
  726. # Top Voter
  727. # ------------------------------------------------
  728.  
  729. # Top voter blacklist
  730. # Hide these names from top voter lists
  731. BlackList:
  732. - 'Notch'
  733.  
  734. # If true players with the permission 'VotingPlugin.TopVoter.Ignore' will act
  735. # as if there name was added on the the blacklist above
  736. # This also applies for players with op
  737. TopVoterIgnorePermission: false
  738.  
  739. # /vote top default data displayed
  740. # Valid Options: AllTime, Monthly, Weekly, Daily
  741. VoteTopDefault: Monthly
  742.  
  743. # Whether or not to have ties on top voter rewards
  744. TopVoterAwardsTies: true
  745.  
  746. # These are required to be enabled in order for top voter awards to work
  747. LoadTopVoter:
  748. AllTime: true
  749. Monthly: true
  750. Weekly: false
  751. Daily: false
  752.  
  753. # When top voter awards are given (even if there are none listed) it will store top voters
  754. # Files will created in TopVoters folder.
  755. StoreTopVoters:
  756. Monthly: true
  757. Weekly: false
  758. Daily: false
  759.  
  760. EnableMonthlyAwards: true
  761. # Rewards to give
  762. MonthlyAwards:
  763. # Position. 1 is first in top voter, 2 is second, etc...
  764. # Using 1-10 will reward players in first to tenth place with the same reward
  765. 1:
  766. Rewards:
  767. Messages:
  768. Player: '&aYou came in first place in %TopVoter%!'
  769. 2:
  770. Rewards:
  771. Messages:
  772. Player: '&aYou came in second place in %TopVoter%!'
  773.  
  774. EnableWeeklyAwards: false
  775. # Rewards to give on weekly top voter
  776. WeeklyAwards:
  777. # Position. 1 is first in top voter, 2 is second, etc...
  778. 1:
  779. Rewards:
  780. Messages:
  781. Player: '&aYou came in first place in %TopVoter%!'
  782. 2:
  783. Rewards:
  784. Messages:
  785. Player: '&aYou came in second place in %TopVoter%!'
  786.  
  787. EnableDailyRewards: false
  788. # Rewards to give on daily top voter
  789. DailyAwards:
  790. # Position. 1 is first in top voter, 2 is second, etc...
  791. 1:
  792. # Reward files to give
  793. Rewards:
  794. Messages:
  795. Player: '&aYou came in first place in %TopVoter%!'
  796. 2:
  797. Rewards:
  798. Messages:
  799. Player: '&aYou came in second place in %TopVoter%!'
  800.  
  801. # ------------------------------------------------
  802. # Advanced
  803. # Most of these values can be left untouched for most setups
  804. # ------------------------------------------------
  805.  
  806. # Number of points to give on vote
  807. # Set to 0 to give no points
  808. PointsOnVote: 1
  809.  
  810. # Set this to false to disable the plugin adding totals
  811. # Not really recommended
  812. AddTotals: true
  813.  
  814. # Debug
  815. Debug: false
  816.  
  817. # Extra Debug
  818. # Only needed in extreme cases
  819. ExtraDebug: false
  820.  
  821. # Debug info ingame
  822. # Players with permission "VotingPlugin.Debug"
  823. # will see debug info if debug is true
  824. DebugInGame: false
  825.  
  826. # Will log debug messages to VotingPlugin/Log/log.txt
  827. # Requires Debug to be on
  828. LogDebugToFile: false
  829.  
  830. # Options for request api
  831. # Current methods
  832. # ANVIL
  833. # BOOK
  834. # CHAT
  835. # This is mainly used for admin gui's to type in values
  836. RequestAPI:
  837. DefaultMethod: 'Anvil'
  838. DisabledMethods: []
  839.  
  840. # Wether or not to log every vote to a file
  841. # Use this if you wanna track player votes
  842. # Not recommended though
  843. LogVotesToFile: false
  844.  
  845. # Only update in the background when needed when set to false
  846. AlwaysUpdate: false
  847.  
  848. # Update in the background only if players are online
  849. UpdateWithPlayersOnlineOnly: false
  850.  
  851. # Delay between background updates like signs and more
  852. # Default: 3 Minutes
  853. # Longer times result in longer wait in stuff updating after a vote, like topvoter
  854. DelayBetweenUpdates: 3
  855.  
  856. # Set to true to disable no service site message on voting
  857. # You should never have to touch this if everything is setup properly
  858. # Will also disable a few other warnings about vote sites
  859. DisableNoServiceSiteMessage: false
  860.  
  861. # Count fake votes
  862. # If true fake votes will give points and totals
  863. CountFakeVotes: true
  864.  
  865. # Give VotingPlugin.Player by default
  866. # Requires restart to take affect
  867. GiveDefaultPermission: true
  868.  
  869. # Remove old player files
  870. # Happens on startup or /av purge
  871. PurgeOldData: false
  872.  
  873. # Minimum number of days offline in order to purge
  874. PurgeMin: 90
  875.  
  876. # Whether or not to create daily backups. (Only the most recent ones get kept)
  877. CreateBackups: true
  878.  
  879. # If true, plugin will send scoreboards on some commands
  880. SendScoreboards: true
  881.  
  882. # If true, plugin will automaticly generate votesites
  883. # Disable this if you experience issues with sites being created randomly
  884. # Most cases this will work all the time
  885. AutoCreateVoteSites: true
  886.  
  887. # Automaticly download the latest version
  888. # Will require a restart to actually update
  889. # Note: It takes 30-40 minutes before being able to download the latest build
  890. # You can also use /av download
  891. AutoDownload: false
  892.  
  893. # Whether or not to disable update checks
  894. DisableUpdateChecking: false
  895.  
  896. # Disable this on a hub server for example
  897. # Still processes rewards for offline rewards (just won't give any)
  898. ProcessRewards: true
  899.  
  900. # Disable checking permissions on tab complete
  901. DisableAdvancedTab: false
  902.  
  903. # Load command aliases, such as /avgui
  904. # Requires restart to take effect
  905. LoadCommandAliases: true
  906.  
  907. # ---------------------------------------------------------
  908. # Mysql cache options
  909. # Clearing cache forces the plugin to pull from database
  910. # ---------------------------------------------------------
  911.  
  912. # Clear cache on update, setting to true reduces update speed
  913. ClearCacheOnUpdate: false
  914.  
  915. # Clear mysql on player join always
  916. ClearCacheOnJoin: false
  917.  
  918. # Clears cache for the player who voted only
  919. # Only effects if using mysql
  920. # Would recommend for some bungee setups
  921. ClearCacheOnVote: false
  922.  
  923. # ###############################################################
  924. # Deprecated options, don't recommend using any of these
  925.  
  926. # Whether or not to disable checking names on mojang, disable if you hit the rate limit
  927. # Shouldn't make a noticeable impact if set to false
  928. #CheckNameMojang: false
  929.  
  930. # Shouldn't need to change this
  931. #AutoKillInvs: true
  932.  
  933. # Used in special cases
  934. # Much slower, but may work better
  935. # Not recommended in newer versions
  936. #AlternateUUIDLookup: false
  937.  
  938. # Disable checking on world change
  939. # May improve performance
  940. #DisableCheckOnWorldChange: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement