Advertisement
Guest User

fffff

a guest
Mar 25th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.53 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] &c%player% &2has voted on %SiteName% and gained 1 voting point!'
  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. 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. Emerald:
  588. # Item
  589. Material: 'Emerald'
  590. Data: 0
  591. Amount: 10
  592. Name: '&4Buy An Emerald'
  593. # You can set skulls of the player using the following
  594. # Remove the # to enable
  595. #Skull: '%Player%'
  596. Lore:
  597. - '&c&lCost: &c3 Voting Points'
  598. # Number of voting points this cost
  599. Cost: 3
  600. # Permission required, leave blank for no permission
  601. Permission: ''
  602. # Limit how many times you can buy this
  603. #Limit: 3
  604. # Rewards to run if player buys successfully
  605. Rewards:
  606. Items:
  607. Emerald:
  608. Material: 'EMERALD'
  609. Amount: 10
  610. # ------------------------------------------------
  611. # Extra Rewards
  612. # ------------------------------------------------
  613.  
  614. # To disable reward set value to []
  615. # Eg:
  616. # FirstVote: [] (All in one line)
  617. # By default all rewards are disabled
  618.  
  619. # First vote rewards
  620. FirstVote:
  621. Messages:
  622. Player: '&aYou voted for your first time!'
  623. Money: 100
  624.  
  625. # All vote rewards
  626. # Reward for voting on all sites in one day
  627. AllSites:
  628. Messages:
  629. Player: '&aYou voted on all sites in 1 day!'
  630.  
  631. Cumulative:
  632. # Number of votes required
  633. # Allows multiple cumulative rewards
  634. # Number be be around ' (E.g. '1')
  635. # Can have multiple listed here
  636. '20':
  637. Enabled: false
  638. # Wether or not votes must be made in same day/week
  639. # Useful if you want to require a certain number of voting sites to be voted on
  640. # for a daily/weekly reward instead of all of them
  641. VotesInSameDay: false
  642. VotesInSameWeek: false
  643. Rewards:
  644. Messages:
  645. Player: '&aYou got %cumulative% cumulative votes!'
  646.  
  647. VoteParty:
  648. # Wether or not vote party is enabled
  649. Enabled: false
  650. # Number of votes required to give rewards
  651. VotesRequired: 20
  652. # Increase the amount of votes required on each vote party reached
  653. #IncreaseVotesRquired: 10
  654. # If true, players who did not vote to reach the votes required will
  655. # recieve the reward
  656. GiveAllPlayers: false
  657. # If true, the vote count will reset each day
  658. ResetEachDay: false
  659. # Reset at the end of the month
  660. ResetMonthly: false
  661. # Count votes from /av vote?
  662. CountFakeVotes: true
  663. # Number of user votes that apply to vote party total the user needs to get rewards
  664. UserVotesRequired: 0
  665. # Broadcast when vote party reached
  666. Broadcast: '&cReached the vote party amount!'
  667. # List of commands to execute, these only execute once.
  668. # %player% does not work here
  669. Commands: []
  670. # Rewards to give
  671. Rewards:
  672. Commands:
  673. - say %player%
  674. Items:
  675. DIAMOND:
  676. Material: 'DIAMOND'
  677. Amount: 1
  678.  
  679. # Reset milestones at end of the month
  680. ResetMilestonesMonthly: false
  681.  
  682. MileStones:
  683. # Number of votes required
  684. # Allows multiple milestones
  685. # Number be be around ' (E.g. '1')
  686. # Can have multiple listed here
  687. '20':
  688. Enabled: false
  689. Rewards:
  690. Messages:
  691. Player: '&aYou got %milestone% milestone votes!'
  692.  
  693. VoteStreak:
  694. # Valid options: Day, Week, Month
  695. Day:
  696. # Number of days in a row
  697. # Each day requires one vote
  698. # Add a - to give a reward for every multiple (e.g. 2- = 2,4,6,8, and so on)
  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. Week:
  707. # Number of weeks in a row
  708. # Requires atleast one vote per week
  709. '2':
  710. # Enabled or not
  711. Enabled: false
  712. # Rewards to give
  713. Rewards:
  714. Messages:
  715. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  716. Month:
  717. # Number of months in a row
  718. # Requires atleast 1 vote per month
  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. Requirement:
  727. # Require certain percentage of votes
  728. UsePercentage: false
  729. # Percentage requirements of votes
  730. # 50 = %50
  731. Day: 50
  732. Week: 50
  733. Month: 50
  734.  
  735.  
  736. # ONLY USE THIS FOR TITLES/SOUNDS AND OTHER EFFECTS
  737. # IT WILL ONLY RUN ONE TIME FOR ANY NUMBER OF OFFLINE VOTES (3 offline votes = 1 AnySiteReward)
  738. # Any reward files listed here are ran on vote of any site
  739. # It is recommended to add rewards to each site instead of here
  740. # Using forceoffline won't work here
  741. # Use EverySiteReward in VoteSites.yml for a global reward for each site
  742. AnySiteRewards: []
  743.  
  744.  
  745. # ------------------------------------------------
  746. # Top Voter
  747. # ------------------------------------------------
  748.  
  749. # Top voter blacklist
  750. # Hide these names from top voter lists
  751. BlackList:
  752. - 'Notch'
  753.  
  754. # If true players with the permission 'VotingPlugin.TopVoter.Ignore' will act
  755. # as if there name was added on the the blacklist above
  756. # This also applies for players with op
  757. TopVoterIgnorePermission: false
  758.  
  759. # /vote top default data displayed
  760. # Valid Options: AllTime, Monthly, Weekly, Daily
  761. VoteTopDefault: Monthly
  762.  
  763. # Whether or not to have ties on top voter rewards
  764. TopVoterAwardsTies: true
  765.  
  766. # These are required to be enabled in order for top voter awards to work
  767. LoadTopVoter:
  768. AllTime: true
  769. Monthly: true
  770. Weekly: false
  771. Daily: false
  772.  
  773. # When top voter awards are given (even if there are none listed) it will store top voters
  774. # Files will created in TopVoters folder.
  775. StoreTopVoters:
  776. Monthly: true
  777. Weekly: false
  778. Daily: false
  779.  
  780. EnableMonthlyAwards: true
  781. # Rewards to give
  782. MonthlyAwards:
  783. # Position. 1 is first in top voter, 2 is second, etc...
  784. # Using 1-10 will reward players in first to tenth place with the same reward
  785. 1:
  786. Rewards:
  787. Messages:
  788. Player: '&aYou came in first place in %TopVoter%!'
  789. 2:
  790. Rewards:
  791. Messages:
  792. Player: '&aYou came in second place in %TopVoter%!'
  793.  
  794. EnableWeeklyAwards: false
  795. # Rewards to give on weekly top voter
  796. WeeklyAwards:
  797. # Position. 1 is first in top voter, 2 is second, etc...
  798. 1:
  799. Rewards:
  800. Messages:
  801. Player: '&aYou came in first place in %TopVoter%!'
  802. 2:
  803. Rewards:
  804. Messages:
  805. Player: '&aYou came in second place in %TopVoter%!'
  806.  
  807. EnableDailyRewards: false
  808. # Rewards to give on daily top voter
  809. DailyAwards:
  810. # Position. 1 is first in top voter, 2 is second, etc...
  811. 1:
  812. # Reward files to give
  813. Rewards:
  814. Messages:
  815. Player: '&aYou came in first place in %TopVoter%!'
  816. 2:
  817. Rewards:
  818. Messages:
  819. Player: '&aYou came in second place in %TopVoter%!'
  820.  
  821. # ------------------------------------------------
  822. # Advanced
  823. # Most of these values can be left untouched for most setups
  824. # ------------------------------------------------
  825.  
  826. # Number of points to give on vote
  827. # Set to 0 to give no points
  828. PointsOnVote: 1
  829.  
  830. # Set this to false to disable the plugin adding totals
  831. # Not really recommended
  832. AddTotals: true
  833.  
  834. # Click sound when using gui
  835. # Set to none for no sound
  836. ClickSound:
  837. Sound: 'UI_BUTTON_CLICK'
  838. Volume: 1.0
  839. Pitch: 1.0
  840.  
  841. # Debug
  842. Debug: false
  843.  
  844. # Extra Debug
  845. # Only needed in extreme cases
  846. ExtraDebug: false
  847.  
  848. # Debug info ingame
  849. # Players with permission "VotingPlugin.Debug"
  850. # will see debug info if debug is true
  851. DebugInGame: false
  852.  
  853. # Will log debug messages to VotingPlugin/Log/log.txt
  854. # Requires Debug to be on
  855. LogDebugToFile: false
  856.  
  857. # Options for request api
  858. # Current methods
  859. # ANVIL
  860. # BOOK
  861. # CHAT
  862. # This is mainly used for admin gui's to type in values
  863. RequestAPI:
  864. DefaultMethod: 'Anvil'
  865. DisabledMethods: []
  866.  
  867. # Whether or not to log every vote to a file
  868. # Use this if you wanna track player votes
  869. # Not recommended though
  870. LogVotesToFile: false
  871.  
  872. # Only update in the background when needed when set to false
  873. AlwaysUpdate: false
  874.  
  875. # Update in the background only if players are online
  876. UpdateWithPlayersOnlineOnly: false
  877.  
  878. # Delay between background updates like signs and more
  879. # Default: 3 Minutes
  880. # Longer times result in longer wait in stuff updating after a vote, like topvoter
  881. DelayBetweenUpdates: 3
  882.  
  883. # Set to true to disable no service site message on voting
  884. # You should never have to touch this if everything is setup properly
  885. # Will also disable a few other warnings about vote sites
  886. DisableNoServiceSiteMessage: false
  887.  
  888. # Count fake votes
  889. # If true fake votes will give points and totals
  890. CountFakeVotes: true
  891.  
  892. # Give VotingPlugin.Player by default
  893. # Requires restart to take affect
  894. GiveDefaultPermission: true
  895.  
  896. # Remove old player files
  897. # Happens on startup or /av purge
  898. PurgeOldData: false
  899.  
  900. # Minimum number of days offline in order to purge
  901. PurgeMin: 90
  902.  
  903. # Whether or not to create daily backups. (Only the most recent ones get kept)
  904. CreateBackups: true
  905.  
  906. # If true, plugin will send scoreboards on some commands
  907. SendScoreboards: true
  908.  
  909. # If true, plugin will automaticly generate votesites
  910. # Disable this if you experience issues with sites being created randomly
  911. # Most cases this will work all the time
  912. AutoCreateVoteSites: true
  913.  
  914. # Automaticly download the latest version
  915. # Will require a restart to actually update
  916. # Note: It takes 30-40 minutes before being able to download the latest build
  917. # You can also use /av download
  918. AutoDownload: false
  919.  
  920. # Whether or not to disable update checks
  921. DisableUpdateChecking: false
  922.  
  923. # Allow transfer of vote points
  924. AllowVotePointTransfers: 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. # Wait until user is logged in with AuthMe
  938. # Requires AuthMe
  939. WaitUntilLoggedIn: true
  940.  
  941. # Preload skulls to improve performance
  942. # If false, skulls will be cached as they are used
  943. PreloadSkulls: true
  944.  
  945. # ---------------------------------------------------------
  946. # Mysql cache options
  947. # Clearing cache forces the plugin to pull from database
  948. # ---------------------------------------------------------
  949.  
  950. # Clear cache on update, setting to true reduces update speed
  951. ClearCacheOnUpdate: false
  952.  
  953. # Clear mysql on player join always
  954. ClearCacheOnJoin: false
  955.  
  956. # Clears cache for the player who voted only
  957. # Only effects if using mysql
  958. # Would recommend for some bungee setups
  959. ClearCacheOnVote: false
  960.  
  961. # ###############################################################
  962. # Deprecated options, don't recommend using any of these
  963.  
  964. # Whether or not to disable checking names on mojang, disable if you hit the rate limit
  965. # Shouldn't make a noticeable impact if set to false
  966. #CheckNameMojang: false
  967.  
  968. # Shouldn't need to change this
  969. #AutoKillInvs: true
  970.  
  971. # Used in special cases
  972. # Much slower, but may work better
  973. # Not recommended in newer versions
  974. #AlternateUUIDLookup: false
  975.  
  976. # Disable checking on world change
  977. # May improve performance
  978. #DisableCheckOnWorldChange: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement