Advertisement
Guest User

voting stuff

a guest
Mar 26th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 53.85 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. # ------------------------------------------------
  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
  956. RAW Paste Data
  957. # VotingPlugin by Ben12345rocks
  958. # Main Config
  959. # See wiki for help:
  960. # https://github.com/Ben12345rocks/VotingPlugin/wiki
  961.  
  962. # Valid Options:
  963. # - SQLITE
  964. # - FLAT
  965. # - MYSQL
  966. DataStorage: SQLITE
  967.  
  968. # Information for mysql
  969. # See the end of the config for cache options
  970. MySQL:
  971. Host: ''
  972. # Default port is 3306
  973. Port: 3306
  974. Database: ''
  975. Username: ''
  976. Password: ''
  977. # Max number of connections
  978. MaxConnections: 1
  979. # Maxium size of caching mysql
  980. # -1 for no limit
  981. # Affecting this value may affect performance
  982. MaxSize: -1
  983. # Table name prefix, for use with mutliple servers
  984. Prefix: ''
  985. #UseSSL: true
  986.  
  987. # Let players who never joined before vote
  988. # Recommend: False (Will prevent creating random user data)
  989. AllowUnjoined: false
  990.  
  991. # ------------------------------------------------
  992. # VoteReminding
  993. # ------------------------------------------------
  994.  
  995. # Configuration for VoteReminding
  996. # By default this should be all setup to work
  997. # as long as vote delays are done properly
  998. VoteReminding:
  999. # Enable vote reminding
  1000. # This will remind player when he can vote on all sites
  1001. # Requires VoteDelays to be setup properly
  1002. # Use /vote next to see when you can be reminded
  1003. # Players require the perm "VotingPlugin.Login.RemindVotes" or "VotingPlugin.Player"
  1004. Enabled: true
  1005.  
  1006. # Whether or not to remind only once when the player can vote
  1007. # Does not apply to login reminds.
  1008. RemindOnlyOnce: true
  1009.  
  1010. # Will remind player on login if he can vote
  1011. # Ignores value above
  1012. RemindOnLogin: true
  1013.  
  1014. # Delay to remind votes in minutes
  1015. # Only works if above is false
  1016. RemindDelay: 30
  1017.  
  1018. # Run reward files on remind
  1019. # By default, the reward file will be created for you
  1020. # and have the default message
  1021. # Edit the message at AdvancedCore/Rewards/Remind.yml (or any other reward listed)
  1022. # Can add titles and more in the reward file
  1023. Rewards:
  1024. Messages:
  1025. Player: '&aRemember to vote!'
  1026. Title:
  1027. Enabled: false
  1028. Title: '&cRemember to vote!'
  1029. SubTitle: '&aType /vote'
  1030. FadeIn: 10
  1031. ShowTime: 50
  1032. FadeOut: 10
  1033. ActionBar:
  1034. Message: '&cRemember to vote'
  1035. Delay: 30
  1036.  
  1037. # ------------------------------------------------
  1038. # Format
  1039. # ------------------------------------------------
  1040.  
  1041. # Common PlacesHolders:
  1042. # Please Note: Not all are usable in all sections
  1043. # Special PlaceHolders will be commented where available
  1044. # %player% = player name
  1045. # %SiteName% = vote site name
  1046. #
  1047. # Set Message to '' (2 ') to disable message
  1048.  
  1049. Commands:
  1050. # Whether or not the following commands will open GUIs rather than display text
  1051. UseGUI:
  1052. Today: true
  1053. TopVoter: true
  1054. Last: true
  1055. Next: true
  1056. Total: true
  1057. Vote: true
  1058. Best: true
  1059. Streak: true
  1060. # If true, you can right click a votesite from /vote (gui version) and open the vote reward gui for that site
  1061. # Can be used to display rewards for that site
  1062. VoteRewardFromVoteURL: false
  1063. # disable /vote reward commands
  1064. # Effective after restart
  1065. DisableVoteRewardGUIs: false
  1066.  
  1067. Format:
  1068. # CommandHandler help message
  1069. HelpLine: '&3&l%Command% - &3%HelpMessage%'
  1070.  
  1071. # Broadcast vote message
  1072. # Set to an empty message to disable
  1073. BroadcastMsg: '&6[&4Broadcast&6] &2Thanks &c%player% &2for voting on %SiteName%'
  1074.  
  1075. # Broadcast only when player is online
  1076. BroadcastWhenOnline: true
  1077.  
  1078. Commands:
  1079. # Format for /vote
  1080. # %num% = the number of the site, for a numbered list
  1081. # %url% = site URL
  1082. Vote:
  1083. Text:
  1084. - '&4&lVote for our server!'
  1085.  
  1086. # If you want to want to use the feature below where the plugin will
  1087. # automaticly list the sites then set the message in the text above
  1088. AutoInputSites: true
  1089. # For each VoteSite
  1090. # make sure to set VoteURL in your VoteSites
  1091. # Requires above to be true
  1092. # Text will be sent before this
  1093. Sites: '&4%num%: &c&l%SiteName% - &c%url%'
  1094.  
  1095. # Format for /vote next
  1096. Next:
  1097. # First line
  1098. Title: '&3&l%player% Next Votes:'
  1099.  
  1100. # How each line is setup for each vote site
  1101. # %info% = Info - See Below
  1102. # %SiteName% = site name from vote
  1103. Layout: '&3%SiteName%: &6%info%'
  1104.  
  1105. Info:
  1106. # Message when player can vote
  1107. CanVote: 'Go Vote!'
  1108. # Time until vote msg
  1109. # %hours% = hours until next vote
  1110. # %minutes% = minutes until next vote
  1111. TimeUntilVote: '%hours% Hours and %minutes% Minutes'
  1112. # If there is an error finding out time until next vote
  1113. Error: '&cCould not caculate time until next vote!'
  1114. # For sites that have this, requires votedelaydaily to be set to true in the site
  1115. VoteDelayDaily: '%hours% Hours and %minutes% Minutes'
  1116.  
  1117. # Format for /vote last
  1118. Last:
  1119. # First line
  1120. Title: '&3&l%player% Last Vote Times:'
  1121. # Lines for each vote site
  1122. # %time% = time, using timeformat below
  1123. # %timesince% = time since vote
  1124. Line: '&3%SiteName%: &6%timeSince%'
  1125. # Spelling of TimeType can be changed under Format.Commands.TimeFormats
  1126. TimeFormat: '%amount% %TimeType%'
  1127. LastVoted: '%times% ago'
  1128. NeverVoted: 'Never voted'
  1129.  
  1130. # Format for /vote total
  1131. Total:
  1132. - '&3&l%player% Total Votes:'
  1133. - '&3&lDaily Total: &6&l%DailyTotal%'
  1134. - '&3&lWeekly Total: &6&l%WeeklyTotal%'
  1135. - '&3&lMonthly Total: &6&l%MonthlyTotal%'
  1136. - '&3&lAllTime Total: &6&l%AllTimeTotal%'
  1137.  
  1138. # Format for /vote total all
  1139. TotalAll:
  1140. - '&3&lServer Total Votes:'
  1141. - '&3&lDaily Total: &6&l%DailyTotal%'
  1142. - '&3&lWeekly Total: &6&l%WeeklyTotal%'
  1143. - '&3&lMonthly Total: &6&l%MonthlyTotal%'
  1144. - '&3&lAllTime Total: &6&l%AllTimeTotal%'
  1145.  
  1146. # Format for /vote top
  1147. Top:
  1148. # First line
  1149. # %page% = current page
  1150. # %maxpages% = max number of pages
  1151. # %Top% = Monthly/Weekly/Daily (depending on command)
  1152. Title: '&3Top %Top% Voters %page%/%maxpages%'
  1153. # Line for each player in that page
  1154. Line: '&c%num%: &6%player%, %votes%'
  1155.  
  1156. # Format for /vote help
  1157. Help:
  1158. # Title of /vote help
  1159. Title: '&3&lVoting Player Help'
  1160. # Format for help message in /v help
  1161. Line: '&3&l%Command% - &3%HelpMessage%'
  1162. # Require permission to see command in /v help or /av help
  1163. RequirePermission: true
  1164.  
  1165. Best:
  1166. Title: '&3&l%player% Best Votes'
  1167. Lines:
  1168. - '&3Highest Daily Total: &3&l%HighestDailyTotal%'
  1169. - '&3Highest Week Total: &3&l%HighestWeeklyTotal%'
  1170. - '&3Highest Month Total: &3&l%HighestMonthlyTotal%'
  1171.  
  1172. Streak:
  1173. Title: '&3&l%player% Vote Streak'
  1174. Lines:
  1175. - '&3Current Daily Streak: &3&l%DailyStreak%'
  1176. - '&3Current Week Streak: &3&l%WeeklyStreak%'
  1177. - '&3Current Month Streak: &3&l%MonthlyStreak%'
  1178. - '&3&lHighest Streaks:'
  1179. - '&3Highest Daily Streak: &3&l%BestDailyStreak%'
  1180. - '&3Highest Week Streak: &3&l%BestWeeklyStreak%'
  1181. - '&3Highest Month Streak: &3&l%BestMonthlyStreak%'
  1182.  
  1183. Today:
  1184. Line: '&6%player% : %VoteSite% : %Time%'
  1185.  
  1186. # PlaceHolders:
  1187. # %VotesRequired% = VotesRequired
  1188. # %NeededVotes% = Number of votes needed to reach VotesRequired
  1189. # %Votes% = Number of votes
  1190. Party:
  1191. - '&cCurrently at &6%Votes%&c, &6%NeededVotes% &cmore votes to go to reach &6%VotesRequired%'
  1192.  
  1193. # %Points% = player points
  1194. Points: '&a%Player% currently has &a&l%Points%&a Points!'
  1195.  
  1196. ToggleBroadcast:
  1197. Enabled: '&cYou will now see vote broadcasts'
  1198. Disabled: '&cYou will no longer see vote broadcasts'
  1199.  
  1200. # Msg on top voter award, will only send message if that place has a reward set
  1201. # %place% = place - 1,2,3,etc
  1202. TopVoterAwardMsg: '&aYou came in %place% in top voters of the month! Here is an award!'
  1203.  
  1204. # Time Format
  1205. # See https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
  1206. TimeFormat: 'EEE, d MMM yyyy HH:mm'
  1207.  
  1208. TimeFormats:
  1209. Day: 'Day'
  1210. Days: 'Days'
  1211. Hour: 'Hour'
  1212. Hours: 'Hours'
  1213. Minute: 'Minute'
  1214. Minutes: 'Minutes'
  1215. Second: 'Second'
  1216. Seconds: 'Seconds'
  1217.  
  1218. # Format for signs
  1219. # SiteName may be all, depending on sign
  1220. # %position% = position of player, set by sign
  1221. # %votes% = Number of votes
  1222. Signs:
  1223. TopVoterSign:
  1224. Line1: 'TopVoter: %SiteName%'
  1225. Line2: '#%position%'
  1226. Line3: '%player%'
  1227. Line4: '%votes% Votes'
  1228. # Message when right clicking sign, uses same placeholders as above
  1229. RightClickMessage: '&c&l%player% &cis &c&l%position% &cwith &c&l%votes% &cvotes in &c&l%SiteName%'
  1230.  
  1231. # Message when player tries to run command without required permissions
  1232. NoPerms: '&cYou do not have enough permission!'
  1233.  
  1234. # Message when player types a command but does not input a number where needed
  1235. NotNumber: '&cError on &6%arg%&c, number expected!'
  1236.  
  1237. # Shop messages when using the /vote shop
  1238. ShopPurchase: '&aYou bought the %Identifier% for %Points% Points!'
  1239. ShopFailed: '&cYou do not have %Points% points to purchase this!'
  1240.  
  1241. # User not exist message, from commands such as /vote next (player)
  1242. UserNotExist: '&cUser does not exist: %player%'
  1243.  
  1244. # Prev/Next page tems in GUIs
  1245. PrevItem:
  1246. Material: 'BLACK_STAINED_GLASS_PANE'
  1247. Amount: 1
  1248. Name: '&aPrevious Page'
  1249.  
  1250. NextItem:
  1251. Material: 'BLACK_STAINED_GLASS_PANE'
  1252. Amount: 1
  1253. Name: '&aNext Page'
  1254.  
  1255. InvFull: '&cInventory full, dropping items on ground'
  1256.  
  1257. # Display text
  1258. # Used in /vote top (GUI)
  1259. TopVoter:
  1260. Daily: 'Daily'
  1261. Weekly: 'Weekly'
  1262. Monthly: 'Monthly'
  1263. AllTime: 'AllTime'
  1264.  
  1265. # ------------------------------------------------
  1266. # GUI Options
  1267. # ------------------------------------------------
  1268.  
  1269. # Configure GUI's here
  1270. # 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)
  1271. # Item Material's can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  1272. GUI:
  1273. # GUI for /vote gui, /vgui, votegui
  1274. VoteGUI:
  1275. # Items will be orders as it is below
  1276. URL:
  1277. # Standard item format, lore is automaticly applied
  1278. Item:
  1279. Material: 'BOW'
  1280. Data: 0
  1281. Amount: 1
  1282. Name: '&4URL'
  1283. # You can set skulls of the player using the following
  1284. # Remove the # to enable
  1285. #Skull: '%Player%'
  1286. Next:
  1287. Item:
  1288. Material: 'COMPASS'
  1289. Data: 0
  1290. Amount: 1
  1291. Name: '&4Next'
  1292. Last:
  1293. Item:
  1294. Material: 'CLOCK'
  1295. Data: 0
  1296. Amount: 1
  1297. Name: '&4Last'
  1298. Total:
  1299. Item:
  1300. Material: 'CHEST'
  1301. Data: 0
  1302. Amount: 1
  1303. Name: '&4Total'
  1304. Top:
  1305. Item:
  1306. Material: 'SIGN'
  1307. Data: 0
  1308. Amount: 1
  1309. Name: '&4Top'
  1310. Today:
  1311. Item:
  1312. Material: 'BOOK'
  1313. Data: 0
  1314. Amount: 1
  1315. Name: '&4Today'
  1316. Shop:
  1317. Item:
  1318. Material: 'DIAMOND'
  1319. Data: 0
  1320. Amount: 1
  1321. Name: '&4Vote Shop'
  1322. Lore:
  1323. - '&aYou currently have %points% points'
  1324.  
  1325. # GUI for /vote url
  1326. # And /vote if enabled in Config.yml
  1327. VoteURL:
  1328. # GUI Name
  1329. Name: '&cVoteURL'
  1330. BackButton: true
  1331. SiteName: '&c%Name%'
  1332. SeeURL: '&cClick to see URL'
  1333. NextVote: '&cCan Vote In: %Info%'
  1334. ViewAllUrlsButtonEnabled: true
  1335. AllUrlsButton:
  1336. AlreadyVotedItem:
  1337. Material: 'REDSTONE_BLOCK'
  1338. Data: 0
  1339. Amount: 1
  1340. Name: '&4All Voting Sites'
  1341. Lore:
  1342. - '&cClick Me'
  1343. CanVoteItem:
  1344. Material: 'EMERALD_BLOCK'
  1345. Data: 0
  1346. Amount: 1
  1347. Name: '&4All Voting Sites'
  1348. Lore:
  1349. - '&cClick Me'
  1350. AlreadyVotedItem:
  1351. Material: 'REDSTONE_BLOCK'
  1352. Data: 0
  1353. Amount: 1
  1354. CanVoteItem:
  1355. Material: 'EMERALD_BLOCK'
  1356. Data: 0
  1357. Amount: 1
  1358. URLText: '%VoteUrl%'
  1359.  
  1360. VoteRewardBackButton: false
  1361. # Customize /vote reward
  1362. # Show players what you get when you vote on each site
  1363. VoteReward:
  1364. # Name of votesite
  1365. ExampleVoteSite:
  1366. # items in /vote reward sitename
  1367. Items:
  1368. # Item
  1369. # This is not the item display name
  1370. # Do not have 2 of the same items
  1371. Diamond:
  1372. # Item ID
  1373. Material: 'DIAMOND'
  1374. # Item Data (Eg 1:4, data is 4)
  1375. Data: 0
  1376. # Amount of items
  1377. # Should be greater than 0
  1378. Amount: 1
  1379. # Item name
  1380. # Remove this line for no name
  1381. Name: '&4Example'
  1382. # Lore
  1383. # Remove this line for no lore
  1384. Lore:
  1385. - '&4Line 1'
  1386. VoteLast:
  1387. Name: 'VoteLast: %player%'
  1388. BackButton: true
  1389. VoteNext:
  1390. Name: 'VoteNext: %player%'
  1391. BackButton: true
  1392. VoteToday:
  1393. Name: 'VoteToday'
  1394. BackButton: true
  1395. VoteTop:
  1396. Name: 'VoteTop %topvoter%'
  1397. BackButton: false
  1398. Item:
  1399. Name: '&3&l%position%: &3%player%'
  1400. Lore: '&3&lVotes: &3%votes%'
  1401. SwitchItem:
  1402. Name: 'Switch TopVoter'
  1403. Lore: 'Currently: %Top%'
  1404. Material: 'SIGN'
  1405. Amount: 1
  1406. # 8 Slots over from the bottom left
  1407. Slot: 7
  1408. # Number of topvoters to display on page +9
  1409. # 9 Slots on the botton are used for page buttons
  1410. Size: 27
  1411. # If true, /vote top will show player heads
  1412. UseSkull: true
  1413. # Item for player in GUI if use skull is false
  1414. PlayerItem:
  1415. Material: 'PAPER'
  1416. VoteTotal:
  1417. Name: 'VoteTotal: %player%'
  1418. BackButton: true
  1419. DayTotal:
  1420. Item:
  1421. Material: 'CLOCK'
  1422. Name: '&cDaily Total'
  1423. Lore: '&c&lTotal: &c%Total%'
  1424. Amount: 1
  1425. WeekTotal:
  1426. Item:
  1427. Material: 'CLOCK'
  1428. Name: '&cWeekly Total'
  1429. Lore: '&c&lTotal: &c%Total%'
  1430. Amount: 1
  1431. MonthTotal:
  1432. Item:
  1433. Material: 'CLOCK'
  1434. Name: '&cMonthly Total'
  1435. Lore: '&c&lTotal: &c%Total%'
  1436. Amount: 1
  1437. AllTimeTotal:
  1438. Item:
  1439. Material: 'CLOCK'
  1440. Name: '&cAllTime Total'
  1441. Lore: '&c&lTotal: &c%Total%'
  1442. Amount: 1
  1443. VoteBest:
  1444. Name: 'VoteBest: %player%'
  1445. DayBest:
  1446. Item:
  1447. Material: 'CLOCK'
  1448. Name: '&cDaily Best'
  1449. Lore: '&c&lBest: &c%Best%'
  1450. Amount: 1
  1451. WeekBest:
  1452. Item:
  1453. Material: 'CLOCK'
  1454. Name: '&cWeekly Best'
  1455. Lore: '&c&lBest: &c%Best%'
  1456. Amount: 1
  1457. MonthBest:
  1458. Item:
  1459. Material: 'CLOCK'
  1460. Name: '&cMonthly Best'
  1461. Lore: '&c&lBest: &c%Best%'
  1462. Amount: 1
  1463. VoteStreak:
  1464. Name: 'VoteStreak: %player%'
  1465. BackButton: false
  1466. CurrentDayStreak:
  1467. Item:
  1468. Material: 'CLOCK'
  1469. Name: '&cCurrent Daily Streak'
  1470. Lore: '&c&lStreak: &c%Streak%'
  1471. Amount: 1
  1472. CurrentWeekStreak:
  1473. Item:
  1474. Material: 'CLOCK'
  1475. Name: '&cCurrent Weekly Streak'
  1476. Lore: '&c&lStreak: &c%Streak%'
  1477. Amount: 1
  1478. CurrentMonthStreak:
  1479. Item:
  1480. Material: 'CLOCK'
  1481. Name: '&cCurrent Monthly Streak'
  1482. Lore: '&c&lStreak: &c%Streak%'
  1483. Amount: 1
  1484. HighestDayStreak:
  1485. Item:
  1486. Material: 'CLOCK'
  1487. Name: '&cHighest Daily Streak'
  1488. Lore: '&c&lStreak: &c%Streak%'
  1489. Amount: 1
  1490. HighestWeekStreak:
  1491. Item:
  1492. Material: 'CLOCK'
  1493. Name: '&cHighest Weekly Streak'
  1494. Lore: '&c&lStreak: &c%Streak%'
  1495. Amount: 1
  1496. HighestMonthStreak:
  1497. Item:
  1498. Material: 'CLOCK'
  1499. Name: '&cHighest Monthly Streak'
  1500. Lore: '&c&lStreak: &c%Streak%'
  1501. Amount: 1
  1502. VoteURLSite:
  1503. Name: 'VoteSite: %site%'
  1504. VoteGUIName: '&cVoteGUI: &c&l%player%'
  1505. VoteRewardName: 'VoteReward'
  1506. VoteShopName: 'VoteShop'
  1507.  
  1508. BackButton:
  1509. Material: 'PAPER'
  1510. Data: 0
  1511. Amount: 1
  1512. Name: '&8Back to VoteGUI'
  1513.  
  1514. VoteShopBackButton: true
  1515. VoteShopEnabled: true
  1516. Shop:
  1517. # Identifier
  1518. # Used in placeholders for formats
  1519. Diamond:
  1520. # Item
  1521. Material: 'DIAMOND'
  1522. Data: 0
  1523. Amount: 1
  1524. Name: '&4Buy A Diamond'
  1525. # You can set skulls of the player using the following
  1526. # Remove the # to enable
  1527. #Skull: '%Player%'
  1528. Lore:
  1529. - '&c&lCost: &c3 Voting Points'
  1530. # Number of voting points this cost
  1531. Cost: 3
  1532. # Permission required, leave blank for no permission
  1533. Permission: ''
  1534. # Limit how many times you can buy this
  1535. #Limit: 3
  1536. # Rewards to run if player buys successfully
  1537. Rewards:
  1538. Items:
  1539. Diamond:
  1540. Material: 'DIAMOND'
  1541. Amount: 1
  1542.  
  1543. # ------------------------------------------------
  1544. # Extra Rewards
  1545. # ------------------------------------------------
  1546.  
  1547. # To disable reward set value to []
  1548. # Eg:
  1549. # FirstVote: [] (All in one line)
  1550. # By default all rewards are disabled
  1551.  
  1552. # First vote rewards
  1553. FirstVote:
  1554. Messages:
  1555. Player: '&aYou voted for your first time!'
  1556. Money: 100
  1557.  
  1558. # All vote rewards
  1559. # Reward for voting on all sites in one day
  1560. AllSites:
  1561. Messages:
  1562. Player: '&aYou voted on all sites in 1 day!'
  1563.  
  1564. Cumulative:
  1565. # Number of votes required
  1566. # Allows multiple cumulative rewards
  1567. # Number be be around ' (E.g. '1')
  1568. # Can have multiple listed here
  1569. '20':
  1570. Enabled: false
  1571. # Wether or not votes must be made in same day/week
  1572. # Useful if you want to require a certain number of voting sites to be voted on
  1573. # for a daily/weekly reward instead of all of them
  1574. VotesInSameDay: false
  1575. VotesInSameWeek: false
  1576. Rewards:
  1577. Messages:
  1578. Player: '&aYou got %cumulative% cumulative votes!'
  1579.  
  1580. VoteParty:
  1581. # Wether or not vote party is enabled
  1582. Enabled: false
  1583. # Number of votes required to give rewards
  1584. VotesRequired: 20
  1585. # Increase the amount of votes required on each vote party reached
  1586. #IncreaseVotesRquired: 10
  1587. # If true, players who did not vote to reach the votes required will
  1588. # recieve the reward
  1589. GiveAllPlayers: false
  1590. # If true, the vote count will reset each day
  1591. ResetEachDay: false
  1592. # Reset at the end of the month
  1593. ResetMonthly: false
  1594. # Count votes from /av vote?
  1595. CountFakeVotes: true
  1596. # Number of user votes that apply to vote party total the user needs to get rewards
  1597. UserVotesRequired: 0
  1598. # Broadcast when vote party reached
  1599. Broadcast: '&cReached the vote party amount!'
  1600. # List of commands to execute, these only execute once.
  1601. # %player% does not work here
  1602. Commands: []
  1603. # Rewards to give
  1604. Rewards:
  1605. Commands:
  1606. - say %player%
  1607. Items:
  1608. DIAMOND:
  1609. Material: 'DIAMOND'
  1610. Amount: 1
  1611.  
  1612. # Reset milestones at end of the month
  1613. ResetMilestonesMonthly: false
  1614.  
  1615. MileStones:
  1616. # Number of votes required
  1617. # Allows multiple milestones
  1618. # Number be be around ' (E.g. '1')
  1619. # Can have multiple listed here
  1620. '20':
  1621. Enabled: false
  1622. Rewards:
  1623. Messages:
  1624. Player: '&aYou got %milestone% milestone votes!'
  1625.  
  1626. VoteStreak:
  1627. # Valid options: Day, Week, Month
  1628. Day:
  1629. # Number of days in a row
  1630. # Each day requires one vote
  1631. # Add a - to give a reward for every multiple (e.g. 2- = 2,4,6,8, and so on)
  1632. '2':
  1633. # Enabled or not
  1634. Enabled: false
  1635. # Rewards to give
  1636. Rewards:
  1637. Messages:
  1638. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  1639. Week:
  1640. # Number of weeks in a row
  1641. # Requires atleast one vote per week
  1642. '2':
  1643. # Enabled or not
  1644. Enabled: false
  1645. # Rewards to give
  1646. Rewards:
  1647. Messages:
  1648. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  1649. Month:
  1650. # Number of months in a row
  1651. # Requires atleast 1 vote per month
  1652. '2':
  1653. # Enabled or not
  1654. Enabled: false
  1655. # Rewards to give
  1656. Rewards:
  1657. Messages:
  1658. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  1659. Requirement:
  1660. # Require certain percentage of votes
  1661. UsePercentage: false
  1662. # Percentage requirements of votes
  1663. # 50 = %50
  1664. Day: 50
  1665. Week: 50
  1666. Month: 50
  1667.  
  1668.  
  1669. # ONLY USE THIS FOR TITLES/SOUNDS AND OTHER EFFECTS
  1670. # IT WILL ONLY RUN ONE TIME FOR ANY NUMBER OF OFFLINE VOTES (3 offline votes = 1 AnySiteReward)
  1671. # Any reward files listed here are ran on vote of any site
  1672. # It is recommended to add rewards to each site instead of here
  1673. # Using forceoffline won't work here
  1674. # Use EverySiteReward in VoteSites.yml for a global reward for each site
  1675. AnySiteRewards: []
  1676.  
  1677.  
  1678. # ------------------------------------------------
  1679. # Top Voter
  1680. # ------------------------------------------------
  1681.  
  1682. # Top voter blacklist
  1683. # Hide these names from top voter lists
  1684. BlackList:
  1685. - 'Notch'
  1686.  
  1687. # If true players with the permission 'VotingPlugin.TopVoter.Ignore' will act
  1688. # as if there name was added on the the blacklist above
  1689. # This also applies for players with op
  1690. TopVoterIgnorePermission: false
  1691.  
  1692. # /vote top default data displayed
  1693. # Valid Options: AllTime, Monthly, Weekly, Daily
  1694. VoteTopDefault: Monthly
  1695.  
  1696. # Whether or not to have ties on top voter rewards
  1697. TopVoterAwardsTies: true
  1698.  
  1699. # These are required to be enabled in order for top voter awards to work
  1700. LoadTopVoter:
  1701. AllTime: true
  1702. Monthly: true
  1703. Weekly: false
  1704. Daily: false
  1705.  
  1706. # When top voter awards are given (even if there are none listed) it will store top voters
  1707. # Files will created in TopVoters folder.
  1708. StoreTopVoters:
  1709. Monthly: true
  1710. Weekly: false
  1711. Daily: false
  1712.  
  1713. EnableMonthlyAwards: true
  1714. # Rewards to give
  1715. MonthlyAwards:
  1716. # Position. 1 is first in top voter, 2 is second, etc...
  1717. # Using 1-10 will reward players in first to tenth place with the same reward
  1718. 1:
  1719. Rewards:
  1720. Messages:
  1721. Player: '&aYou came in first place in %TopVoter%!'
  1722. 2:
  1723. Rewards:
  1724. Messages:
  1725. Player: '&aYou came in second place in %TopVoter%!'
  1726.  
  1727. EnableWeeklyAwards: false
  1728. # Rewards to give on weekly top voter
  1729. WeeklyAwards:
  1730. # Position. 1 is first in top voter, 2 is second, etc...
  1731. 1:
  1732. Rewards:
  1733. Messages:
  1734. Player: '&aYou came in first place in %TopVoter%!'
  1735. 2:
  1736. Rewards:
  1737. Messages:
  1738. Player: '&aYou came in second place in %TopVoter%!'
  1739.  
  1740. EnableDailyRewards: false
  1741. # Rewards to give on daily top voter
  1742. DailyAwards:
  1743. # Position. 1 is first in top voter, 2 is second, etc...
  1744. 1:
  1745. # Reward files to give
  1746. Rewards:
  1747. Messages:
  1748. Player: '&aYou came in first place in %TopVoter%!'
  1749. 2:
  1750. Rewards:
  1751. Messages:
  1752. Player: '&aYou came in second place in %TopVoter%!'
  1753.  
  1754. # ------------------------------------------------
  1755. # Advanced
  1756. # Most of these values can be left untouched for most setups
  1757. # ------------------------------------------------
  1758.  
  1759. # Number of points to give on vote
  1760. # Set to 0 to give no points
  1761. PointsOnVote: 1
  1762.  
  1763. # Set this to false to disable the plugin adding totals
  1764. # Not really recommended
  1765. AddTotals: true
  1766.  
  1767. # Click sound when using gui
  1768. # Set to none for no sound
  1769. ClickSound:
  1770. Sound: 'UI_BUTTON_CLICK'
  1771. Volume: 1.0
  1772. Pitch: 1.0
  1773.  
  1774. # Debug
  1775. Debug: false
  1776.  
  1777. # Extra Debug
  1778. # Only needed in extreme cases
  1779. ExtraDebug: false
  1780.  
  1781. # Debug info ingame
  1782. # Players with permission "VotingPlugin.Debug"
  1783. # will see debug info if debug is true
  1784. DebugInGame: false
  1785.  
  1786. # Will log debug messages to VotingPlugin/Log/log.txt
  1787. # Requires Debug to be on
  1788. LogDebugToFile: false
  1789.  
  1790. # Options for request api
  1791. # Current methods
  1792. # ANVIL
  1793. # BOOK
  1794. # CHAT
  1795. # This is mainly used for admin gui's to type in values
  1796. RequestAPI:
  1797. DefaultMethod: 'Anvil'
  1798. DisabledMethods: []
  1799.  
  1800. # Whether or not to log every vote to a file
  1801. # Use this if you wanna track player votes
  1802. # Not recommended though
  1803. LogVotesToFile: false
  1804.  
  1805. # Only update in the background when needed when set to false
  1806. AlwaysUpdate: false
  1807.  
  1808. # Update in the background only if players are online
  1809. UpdateWithPlayersOnlineOnly: false
  1810.  
  1811. # Delay between background updates like signs and more
  1812. # Default: 3 Minutes
  1813. # Longer times result in longer wait in stuff updating after a vote, like topvoter
  1814. DelayBetweenUpdates: 3
  1815.  
  1816. # Set to true to disable no service site message on voting
  1817. # You should never have to touch this if everything is setup properly
  1818. # Will also disable a few other warnings about vote sites
  1819. DisableNoServiceSiteMessage: false
  1820.  
  1821. # Count fake votes
  1822. # If true fake votes will give points and totals
  1823. CountFakeVotes: true
  1824.  
  1825. # Give VotingPlugin.Player by default
  1826. # Requires restart to take affect
  1827. GiveDefaultPermission: true
  1828.  
  1829. # Remove old player files
  1830. # Happens on startup or /av purge
  1831. PurgeOldData: false
  1832.  
  1833. # Minimum number of days offline in order to purge
  1834. PurgeMin: 90
  1835.  
  1836. # Whether or not to create daily backups. (Only the most recent ones get kept)
  1837. CreateBackups: true
  1838.  
  1839. # If true, plugin will send scoreboards on some commands
  1840. SendScoreboards: true
  1841.  
  1842. # If true, plugin will automaticly generate votesites
  1843. # Disable this if you experience issues with sites being created randomly
  1844. # Most cases this will work all the time
  1845. AutoCreateVoteSites: true
  1846.  
  1847. # Automaticly download the latest version
  1848. # Will require a restart to actually update
  1849. # Note: It takes 30-40 minutes before being able to download the latest build
  1850. # You can also use /av download
  1851. AutoDownload: false
  1852.  
  1853. # Whether or not to disable update checks
  1854. DisableUpdateChecking: false
  1855.  
  1856. # Allow transfer of vote points
  1857. AllowVotePointTransfers: false
  1858.  
  1859. # Disable this on a hub server for example
  1860. # Still processes rewards for offline rewards (just won't give any)
  1861. ProcessRewards: true
  1862.  
  1863. # Disable checking permissions on tab complete
  1864. DisableAdvancedTab: false
  1865.  
  1866. # Load command aliases, such as /avgui
  1867. # Requires restart to take effect
  1868. LoadCommandAliases: true
  1869.  
  1870. # Wait until user is logged in with AuthMe
  1871. # Requires AuthMe
  1872. WaitUntilLoggedIn: true
  1873.  
  1874. # Preload skulls to improve performance
  1875. # If false, skulls will be cached as they are used
  1876. PreloadSkulls: true
  1877.  
  1878. # ---------------------------------------------------------
  1879. # Mysql cache options
  1880. # Clearing cache forces the plugin to pull from database
  1881. # ---------------------------------------------------------
  1882.  
  1883. # Clear cache on update, setting to true reduces update speed
  1884. ClearCacheOnUpdate: false
  1885.  
  1886. # Clear mysql on player join always
  1887. ClearCacheOnJoin: false
  1888.  
  1889. # Clears cache for the player who voted only
  1890. # Only effects if using mysql
  1891. # Would recommend for some bungee setups
  1892. ClearCacheOnVote: false
  1893.  
  1894. # ###############################################################
  1895. # Deprecated options, don't recommend using any of these
  1896.  
  1897. # Whether or not to disable checking names on mojang, disable if you hit the rate limit
  1898. # Shouldn't make a noticeable impact if set to false
  1899. #CheckNameMojang: false
  1900.  
  1901. # Shouldn't need to change this
  1902. #AutoKillInvs: true
  1903.  
  1904. # Used in special cases
  1905. # Much slower, but may work better
  1906. # Not recommended in newer versions
  1907. #AlternateUUIDLookup: false
  1908.  
  1909. # Disable checking on world change
  1910. # May improve performance
  1911. #DisableCheckOnWorldChange: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement