Guest User

Untitled

a guest
Dec 12th, 2017
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.79 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.  
  573. Cumulative:
  574. # Number of votes required
  575. # Allows multiple cumulative rewards
  576. # Number be be around ' (E.g. '1')
  577. # Can have multiple listed here
  578. '20':
  579. Enabled: false
  580. # Wether or not votes must be made in same day/week
  581. # Useful if you want to require a certain number of voting sites to be voted on
  582. # for a daily/weekly reward instead of all of them
  583. VotesInSameDay: false
  584. VotesInSameWeek: false
  585. Rewards:
  586. Messages:
  587. Player: '&aYou got %cumulative% cumulative votes!'
  588.  
  589. VoteParty:
  590. # Wether or not vote party is enabled
  591. Enabled: true
  592. # Number of votes required to give rewards
  593. VotesRequired: 50
  594. # If true, players who did not vote to reach the votes required will
  595. # recieve the reward
  596. GiveAllPlayers: true
  597. # If true, the vote count will reset each day
  598. ResetEachDay: false
  599. # Count votes from /av vote?
  600. CountFakeVotes: true
  601. # Number of user votes that apply to vote party total the user needs to get rewards
  602. UserVotesRequired: 0
  603. # Broadcast when vote party reached
  604. Broadcast: '&3[VillagerCraft] &6&lVotes voor de vote party zijn behaald!'
  605. # Reward files to give
  606. Rewards:
  607. Commands:
  608. Console:
  609. - 'crate givekey %player% Vote2 2'
  610. Messages:
  611. Player: '&3[VillagerCraft] &6Bedankt voor je deelname %player%!'
  612. Worlds:
  613. - world
  614. - world_nether
  615. - world_the_end
  616.  
  617. # Reset milestons at end of the month
  618. ResetMilestonesMonthly: false
  619.  
  620. MileStones:
  621. # Number of votes required
  622. # Allows multiple milestones
  623. # Number be be around ' (E.g. '1')
  624. # Can have multiple listed here
  625. '20':
  626. Enabled: false
  627. Rewards:
  628. Messages:
  629. Player: '&aYou got %milestone% milestone votes!'
  630.  
  631. VoteStreak:
  632. # Valid options: Day, Week, Month
  633. Day:
  634. # Number of days in a row
  635. # Each day requires one vote
  636. '2':
  637. # Enabled or not
  638. Enabled: false
  639. # Rewards to give
  640. Rewards:
  641. Messages:
  642. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  643. Week:
  644. # Number of weeks in a row
  645. # Requires atleast one vote per week
  646. '2':
  647. # Enabled or not
  648. Enabled: false
  649. # Rewards to give
  650. Rewards:
  651. Messages:
  652. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  653. Month:
  654. # Number of months in a row
  655. # Requires atleast 1 vote per month
  656. '2':
  657. # Enabled or not
  658. Enabled: false
  659. # Rewards to give
  660. Rewards:
  661. Messages:
  662. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  663.  
  664.  
  665. # ONLY USE THIS FOR TITLES/SOUNDS AND OTHER EFFECTS
  666. # IT WILL ONLY RUN ONE TIME FOR ANY NUMBER OF OFFLINE VOTES
  667. # Any reward files listed here are ran on vote of any site
  668. # It is recommended to add rewards to each site instead of here
  669. AnySiteRewards: []
  670.  
  671.  
  672. # ------------------------------------------------
  673. # Top Voter
  674. # ------------------------------------------------
  675.  
  676. # Top voter blacklist
  677. BlackList:
  678. - 'Notch'
  679.  
  680. # If true players with the permission 'VotingPlugin.TopVoter.Ignore' will act
  681. # as if there name was added on the the blacklist above
  682. # This also applies for ops
  683. TopVoterIgnorePermission: false
  684.  
  685. # /vote top default data displayed
  686. # Valid Options: AllTime, Monthly, Weekly, Daily
  687. VoteTopDefault: Monthly
  688.  
  689. # These are required to be enabled in order for top voter awards to work
  690. LoadTopVoter:
  691. AllTime: true
  692. Monthly: true
  693. Weekly: false
  694. Daily: false
  695.  
  696. # When top voter awards are given (even if there are none listed) it will store top voters
  697. # Files will created in TopVoters folder.
  698. StoreTopVoters:
  699. Monthly: true
  700. Weekly: false
  701. Daily: false
  702.  
  703. EnableMonthlyAwards: true
  704. # Rewards to give
  705. MonthlyAwards:
  706. # Position. 1 is first in top voter, 2 is second, etc...
  707. 1:
  708. Rewards:
  709. Commands:
  710. Console:
  711. - 'crate givekey %player% Vote2 3'
  712. - 'eco give %player% 5000'
  713. Messages:
  714. Player: '&3Je staat op de eerste plek van voten deze maand!'
  715. 2:
  716. Rewards:
  717. Commands:
  718. Console:
  719. - 'crate givekey %player% Vote2 3'
  720. - 'eco give %player% 4000'
  721. Messages:
  722. Player: '&3Je staat op de tweedde plek van voten deze maand!'
  723. 3:
  724. Rewards:
  725. Commands:
  726. Console:
  727. - 'crate givekey %player% Vote2 3'
  728. - 'eco give %player% 3000'
  729. Messages:
  730. Player: '&3Je staat op de derde plek van voten deze maand!'
  731. 4:
  732. Rewards:
  733. Commands:
  734. Console:
  735. - 'crate givekey %player% Vote2 2'
  736. - 'eco give %player% 2000'
  737. Messages:
  738. Player: '&3Je staat op de vierde plek van voten deze maand!'
  739. 5:
  740. Rewards:
  741. Commands:
  742. Console:
  743. - 'crate givekey %player% Vote2 2'
  744. - 'eco give %player% 1000'
  745. Messages:
  746. Player: '&3Je staat op de vijfde plek van voten deze maand!'
  747.  
  748. EnableWeeklyAwards: false
  749. # Rewards to give on weekly top voter
  750. WeeklyAwards:
  751. # Position. 1 is first in top voter, 2 is second, etc...
  752. 1:
  753. Rewards:
  754. Messages:
  755. Player: '&aYou came in first place in %TopVoter%!'
  756. 2:
  757. Rewards:
  758. Messages:
  759. Player: '&aYou came in second place in %TopVoter%!'
  760.  
  761. EnableDailyRewards: false
  762. # Rewards to give on daily top voter
  763. DailyAwards:
  764. # Position. 1 is first in top voter, 2 is second, etc...
  765. 1:
  766. # Reward files to give
  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. # ------------------------------------------------
  776. # Advanced
  777. # Most of these values can be left untouched
  778. # ------------------------------------------------
  779.  
  780. # Number of points to give on vote
  781. # Set to 0 to give no points
  782. PointsOnVote: 0
  783.  
  784. # Wether or not to check on world change
  785. # Should only be used if you do per world rewards
  786. CheckOnWorldChange: true
  787.  
  788. # Debug
  789. Debug: false
  790.  
  791. # Extra Debug
  792. # Only needed in extreme cases
  793. ExtraDebug: false
  794.  
  795. # Debug info ingame
  796. # Players with permission "VotingPlugin.Debug"
  797. # will see debug info if debug is true
  798. DebugInGame: false
  799.  
  800. # Will log debug messages to VotingPlugin/Log/log.txt
  801. # Requires Debug to be on
  802. LogDebugToFile: false
  803.  
  804. # Options for request api
  805. # Current methods
  806. # ANVIL
  807. # BOOK
  808. # CHAT
  809. # This is mainly used for admin gui's to type in values
  810. RequestAPI:
  811. DefaultMethod: 'Anvil'
  812. DisabledMethods: []
  813.  
  814. # Wether or not to log every vote to a file
  815. # Use this if you wanna track player votes
  816. # Not recommended though
  817. LogVotesToFile: false
  818.  
  819. # Delay between background updates like signs and more
  820. # Default: 3 Minutes
  821. # Longer times result in longer wait in stuff updating after a vote, like topvoter
  822. DelayBetweenUpdates: 3
  823.  
  824. # Clear cache on update, setting to true reduces performance
  825. ClearCacheOnUpdate: false
  826.  
  827. # Set to true to disable no service site message on voting
  828. # You should never have to touch this if everything is setup properly
  829. DisableNoServiceSiteMessage: false
  830.  
  831. # Used in special cases
  832. # Much slower, but may work better
  833. AlternateUUIDLookup: false
  834.  
  835. # Shouldn't need to change this
  836. AutoKillInvs: true
  837.  
  838. # Count fake votes
  839. # If true fake votes will give points and totals
  840. CountFakeVotes: true
  841.  
  842. # Give VotingPlugin.Player by default
  843. # Requires restart to take affect
  844. GiveDefaultPermission: true
  845.  
  846. # Remove old player files
  847. # Happens on startup or /av purge
  848. PurgeOldData: false
  849.  
  850. # Minimum number of days offline in order to purge
  851. PurgeMin: 90
Add Comment
Please, Sign In to add comment