Advertisement
Guest User

Untitled

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