Advertisement
Guest User

votifier config

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