Advertisement
Guest User

Untitled

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