Advertisement
Guest User

v2

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