Advertisement
Guest User

Untitled

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