Advertisement
Guest User

Untitled

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