Advertisement
Guest User

Untitled

a guest
Feb 4th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.97 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: true
  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: true
  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: '&aVote >>> &eRemember to vote our server and get reward'
  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% - &3%HelpMessage%'
  115.  
  116. # Broadcast vote message
  117. BroadcastMsg: '&aVote >>> &eThanks &c%player% &efor voting on &6%SiteName%'
  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. - '&aVote Server to get reward'
  129. - '&e&lLink: &6http://minecraft-mp.com/server-s165681'
  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: '&4%num%: &c&l%SiteName% - &c%url%'
  139.  
  140. # Format for /vote next
  141. Next:
  142. # First line
  143. Title: '&3&l%player% Next Votes:'
  144.  
  145. # How each line is setup for each vote site
  146. # %info% = Info - See Below
  147. # %SiteName% = site name from vote
  148. Layout: '&3%SiteName%: &6%info%'
  149.  
  150. Info:
  151. # Message when player can vote
  152. CanVote: 'Go Vote!'
  153. # Time until vote msg
  154. # %hours% = hours until next vote
  155. # %minutes% = minutes until next vote
  156. TimeUntilVote: '%hours% Hours and %minutes% Minutes'
  157. # If there is an error finding out time until next vote
  158. Error: '&cCould not caculate time until next vote!'
  159. # For sites that have this, requires votedelaydaily to be set to true in the site
  160. VoteDelayDaily: '%hours% Hours and %minutes% Minutes'
  161.  
  162. # Format for /vote last
  163. Last:
  164. # First line
  165. Title: '&3&l%player% Last Vote Times:'
  166. # Lines for each vote site
  167. # %time% = time, using timeformat below
  168. Line: '&3%SiteName%: &6%time%'
  169.  
  170. # Format for /vote total
  171. Total:
  172. - '&3&l%player% Total Votes:'
  173. - '&3&lDaily Total: &6&l%DailyTotal%'
  174. - '&3&lWeekly Total: &6&l%WeeklyTotal%'
  175. - '&3&lMonthly Total: &6&l%MonthlyTotal%'
  176. - '&3&lAllTime Total: &6&l%AllTimeTotal%'
  177.  
  178. # Format for /vote total all
  179. TotalAll:
  180. - '&3&lServer Total Votes:'
  181. - '&3&lDaily Total: &6&l%DailyTotal%'
  182. - '&3&lWeekly Total: &6&l%WeeklyTotal%'
  183. - '&3&lMonthly Total: &6&l%MonthlyTotal%'
  184. - '&3&lAllTime Total: &6&l%AllTimeTotal%'
  185.  
  186. # Format for /vote top
  187. Top:
  188. # First line
  189. # %page% = current page
  190. # %maxpages% = max number of pages
  191. # %Top% = Monthly/Weekly/Daily (depending on command)
  192. Title: '&3Top %Top% Voters %page%/%maxpages%'
  193. # Line for each player in that page
  194. Line: '&c%num%: &6%player%, %votes%'
  195.  
  196. # Format for /vote help
  197. Help:
  198. # Title of /vote help
  199. Title: '&3&lVoting Player Help'
  200. # Format for help message in /v help
  201. Line: '&3&l%Command% - &3%HelpMessage%'
  202. # Require permission to see command in /v help or /av help
  203. RequirePermission: true
  204.  
  205. Best:
  206. Title: '&3&l%player% Best Votes'
  207. Lines:
  208. - '&3Highest Daily Total: &3&l%HighestDailyTotal%'
  209. - '&3Highest Week Total: &3&l%HighestWeeklyTotal%'
  210. - '&3Highest Month Total: &3&l%HighestMonthlyTotal%'
  211.  
  212. Streak:
  213. Title: '&3&l%player% Vote Streak'
  214. Lines:
  215. - '&3Current Daily Streak: &3&l%DailyStreak%'
  216. - '&3Current Week Streak: &3&l%WeeklyStreak%'
  217. - '&3Current Month Streak: &3&l%MonthlyStreak%'
  218. - '&3&lHighest Streaks:'
  219. - '&3Highest Daily Streak: &3&l%BestDailyStreak%'
  220. - '&3Highest Week Streak: &3&l%BestWeeklyStreak%'
  221. - '&3Highest Month Streak: &3&l%BestMonthlyStreak%'
  222.  
  223. # PlaceHolders:
  224. # %VotesRequired% = VotesRequired
  225. # %NeededVotes% = Number of votes needed to reach VotesRequired
  226. # %Votes% = Number of votes
  227. Party:
  228. - '&cCurrently at &6%Votes%&c, &6%NeededVotes% &cmore votes to go to reach &6%VotesRequired%'
  229.  
  230. # %Points% = player points
  231. Points: '&a%Player% currently has &a&l%Points%&a Points!'
  232.  
  233. # Login message if player can vote on all sites
  234. # Must be enabled in config.yml
  235. LoginMsg: '&cRemember to vote!'
  236.  
  237. # Msg on top voter award, will only send message if that place has a reward set
  238. # %place% = place - 1,2,3,etc
  239. TopVoterAwardMsg: '&aYou came in %place% in top voters of the month! Here is an award!'
  240.  
  241. # Time Format
  242. # See https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
  243. TimeFormat: 'EEE, d MMM yyyy HH:mm'
  244.  
  245. # Format for signs
  246. # SiteName may be all, depending on sign
  247. # %position% = position of player, set by sign
  248. # %votes% = Number of votes
  249. Signs:
  250. TopVoterSign:
  251. Line1: 'TopVoter: %SiteName%'
  252. Line2: '#%position%'
  253. Line3: '%player%'
  254. Line4: '%votes% Votes'
  255. # Message when right clicking sign, uses same placeholders as above
  256. RightClickMessage: '&c&l%player% &cis &c&l%position% &cwith &c&l%votes% &cvotes in &c&l%SiteName%'
  257.  
  258. # Message when player tries to run command without required permissions
  259. NoPerms: '&cYou do not have enough permission!'
  260.  
  261. # Message when player types a command but does not input a number where needed
  262. NotNumber: '&cError on &6%arg%&c, number expected!'
  263.  
  264. # Shop messages when using the /vote shop
  265. ShopPurchase: '&aYou bought the %Identifier% for %Points% Points!'
  266. ShopFailed: '&cYou do not have %Points% points to purchase this!'
  267.  
  268. # User not exist message, from commands such as /vote next (player)
  269. UserNotExist: '&cUser does not exist: %player%'
  270.  
  271. # Text for page buttons in inventories
  272. PrevPage: '&aPrevious Page'
  273. NextPage: '&aNext Page'
  274.  
  275. # Display text
  276. # Used in /vote top (GUI)
  277. TopVoter:
  278. Daily: 'Daily'
  279. Weekly: 'Weekly'
  280. Monthly: 'Monthly'
  281. AllTime: 'AllTime'
  282.  
  283. # ------------------------------------------------
  284. # GUI Options
  285. # ------------------------------------------------
  286.  
  287. # Configure GUI's here
  288. # Note: Slots start at 0 instead of 1, max slot is 53 (don't go over) (E.g: last slot in first row of inventory is 8)
  289. # Item Material's can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  290. GUI:
  291. # GUI for /vote gui, /vgui, votegui
  292. VoteGUI:
  293. # Items will be orders as it is below
  294. URL:
  295. # Standard item format, lore is automaticly applied
  296. Item:
  297. Material: 'BOW'
  298. Data: 0
  299. Amount: 1
  300. Name: '&4URL'
  301. # You can set skulls of the player using the following
  302. # Remove the # to enable
  303. #Skull: '%Player%'
  304. Slot: 0
  305. Next:
  306. Item:
  307. Material: 'COMPASS'
  308. Data: 0
  309. Amount: 1
  310. Name: '&4Next'
  311. Slot: 1
  312. Last:
  313. Item:
  314. Material: 'WATCH'
  315. Data: 0
  316. Amount: 1
  317. Name: '&4Last'
  318. Slot: 2
  319. Total:
  320. Item:
  321. Material: 'CHEST'
  322. Data: 0
  323. Amount: 1
  324. Name: '&4Total'
  325. Slot: 3
  326. Top:
  327. Item:
  328. Material: 'SIGN'
  329. Data: 0
  330. Amount: 1
  331. Name: '&4Top'
  332. Slot: 4
  333. Today:
  334. Item:
  335. Material: 'BOOK'
  336. Data: 0
  337. Amount: 1
  338. Name: '&4Today'
  339. Slot: 5
  340. Shop:
  341. Item:
  342. Material: 'DIAMOND'
  343. Data: 0
  344. Amount: 1
  345. Name: '&4Vote Shop'
  346. Slot: 6
  347. # /vote Reward gui item
  348. # Uncomment to use, most likely will be unused
  349. #Rewards:
  350. # Item:
  351. # Material: 'DIAMOND'
  352. # Data: 0
  353. # Amount: 1
  354. # Name: '&4Voting Rewards'
  355. # Slot: 7
  356.  
  357. # GUI for /vote url
  358. # And /vote if enabled in Config.yml
  359. VoteURL:
  360. # GUI Name
  361. Name: '&cVoteURL'
  362. BackButton: true
  363. SiteName: '&c%Name%'
  364. SeeURL: '&cClick to see URL'
  365. NextVote: '&cCan Vote In: %Info%'
  366. ViewAllUrlsButtonEnabled: true
  367. AllUrlsButton:
  368. AlreadyVotedItem:
  369. Material: 'REDSTONE_BLOCK'
  370. Data: 0
  371. Amount: 1
  372. Name: '&eMinecraft-Mp Vote'
  373. Lore:
  374. - '&6Click to get link'
  375. CanVoteItem:
  376. Material: 'EMERALD_BLOCK'
  377. Data: 0
  378. Amount: 1
  379. Name: '&eMinecraft-Mp Vote'
  380. Lore:
  381. - '&6Click to get link'
  382. AlreadyVotedItem:
  383. Material: 'REDSTONE_BLOCK'
  384. Data: 0
  385. Amount: 1
  386. CanVoteItem:
  387. Material: 'EMERALD_BLOCK'
  388. Data: 0
  389. Amount: 1
  390. URLText: '%VoteUrl%'
  391. # Customize /vote reward
  392. # Show players what you get when you vote on each site
  393. VoteReward:
  394. # Name of votesite
  395. ExampleVoteSite:
  396. # items in /vote reward sitename
  397. Items:
  398. # Item
  399. # This is not the item display name
  400. # Do not have 2 of the same items
  401. Diamond:
  402. # Item ID
  403. Material: 'DIAMOND'
  404. # Item Data (Eg 1:4, data is 4)
  405. Data: 0
  406. # Amount of items
  407. # Should be greater than 0
  408. Amount: 1
  409. # Item name
  410. # Remove this line for no name
  411. Name: '&4Example'
  412. # Lore
  413. # Remove this line for no lore
  414. Lore:
  415. - '&4Line 1'
  416. Slot: 0
  417. VoteLast:
  418. Name: 'VoteLast: %player%'
  419. BackButton: true
  420. VoteNext:
  421. Name: 'VoteNext: %player%'
  422. BackButton: true
  423. VoteToday:
  424. Name: 'VoteToday'
  425. BackButton: true
  426. VoteTop:
  427. Name: 'VoteTop %topvoter%'
  428. BackButton: false
  429. Item:
  430. Name: '&3&l%position%: &3%player%'
  431. Lore: '&3&lVotes: &3%votes%'
  432. SwitchItem:
  433. Name: 'Switch TopVoter'
  434. Lore: 'Currently: %Top%'
  435. Material: 'SIGN'
  436. Amount: 1
  437. # 8 Slots over from the bottom left
  438. Slot: 7
  439. # Number of topvoters to display on page +9
  440. # 9 Slots on the botton are used for page buttons
  441. Size: 27
  442. VoteTotal:
  443. Name: 'VoteTotal: %player%'
  444. BackButton: true
  445. DayTotal:
  446. Item:
  447. Material: 'WATCH'
  448. Name: '&cDaily Total'
  449. Lore: '&c&lTotal: &c%Total%'
  450. Amount: 1
  451. WeekTotal:
  452. Item:
  453. Material: 'WATCH'
  454. Name: '&cWeekly Total'
  455. Lore: '&c&lTotal: &c%Total%'
  456. Amount: 1
  457. MonthTotal:
  458. Item:
  459. Material: 'WATCH'
  460. Name: '&cMonthly Total'
  461. Lore: '&c&lTotal: &c%Total%'
  462. Amount: 1
  463. AllTimeTotal:
  464. Item:
  465. Material: 'WATCH'
  466. Name: '&cAllTime Total'
  467. Lore: '&c&lTotal: &c%Total%'
  468. Amount: 1
  469. VoteBest:
  470. Name: 'VoteBest: %player%'
  471. DayBest:
  472. Item:
  473. Material: 'WATCH'
  474. Name: '&cDaily Best'
  475. Lore: '&c&lBest: &c%Best%'
  476. Amount: 1
  477. WeekBest:
  478. Item:
  479. Material: 'WATCH'
  480. Name: '&cWeekly Best'
  481. Lore: '&c&lBest: &c%Best%'
  482. Amount: 1
  483. MonthBest:
  484. Item:
  485. Material: 'WATCH'
  486. Name: '&cMonthly Best'
  487. Lore: '&c&lBest: &c%Best%'
  488. Amount: 1
  489. VoteStreak:
  490. Name: 'VoteStreak: %player%'
  491. BackButton: false
  492. CurrentDayStreak:
  493. Item:
  494. Material: 'WATCH'
  495. Name: '&cCurrent Daily Streak'
  496. Lore: '&c&lStreak: &c%Streak%'
  497. Amount: 1
  498. CurrentWeekStreak:
  499. Item:
  500. Material: 'WATCH'
  501. Name: '&cCurrent Weekly Streak'
  502. Lore: '&c&lStreak: &c%Streak%'
  503. Amount: 1
  504. CurrentMonthStreak:
  505. Item:
  506. Material: 'WATCH'
  507. Name: '&cCurrent Monthly Streak'
  508. Lore: '&c&lStreak: &c%Streak%'
  509. Amount: 1
  510. HighestDayStreak:
  511. Item:
  512. Material: 'WATCH'
  513. Name: '&cHighest Daily Streak'
  514. Lore: '&c&lStreak: &c%Streak%'
  515. Amount: 1
  516. HighestWeekStreak:
  517. Item:
  518. Material: 'WATCH'
  519. Name: '&cHighest Weekly Streak'
  520. Lore: '&c&lStreak: &c%Streak%'
  521. Amount: 1
  522. HighestMonthStreak:
  523. Item:
  524. Material: 'WATCH'
  525. Name: '&cHighest Monthly Streak'
  526. Lore: '&c&lStreak: &c%Streak%'
  527. Amount: 1
  528. VoteURLSite:
  529. Name: 'VoteSite: %site%'
  530. VoteGUIName: '&cVoteGUI: &c&l%player%'
  531. VoteRewardName: 'VoteReward'
  532. VoteShopName: 'VoteShop'
  533.  
  534. BackButton:
  535. Material: 'PAPER'
  536. Data: 0
  537. Amount: 1
  538. Name: '&8Back to VoteGUI'
  539.  
  540. VoteShopBackButton: 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. # Rewards to run if player buys succesfully
  558. Rewards:
  559. Items:
  560. Diamond:
  561. Material: 'DIAMOND'
  562. Amount: 1
  563. # Slot
  564. Slot: 0
  565.  
  566. # ------------------------------------------------
  567. # Extra Rewards
  568. # ------------------------------------------------
  569.  
  570. # To disable reward set value to []
  571. # Eg:
  572. # FirstVote: [] (All in one line)
  573. # By default all rewards are disabled
  574.  
  575. # First vote rewards
  576. FirstVote:
  577. Messages:
  578. Player: '&aYou voted for your first time!'
  579. Money: 100
  580.  
  581. # All vote rewards
  582. # Reward for voting on all sites in one day
  583. AllSites:
  584. Messages:
  585. Player: '&aYou voted on all sites in 1 day!'
  586.  
  587. Cumulative:
  588. # Number of votes required
  589. # Allows multiple cumulative rewards
  590. # Number be be around ' (E.g. '1')
  591. # Can have multiple listed here
  592. '20':
  593. Enabled: false
  594. # Wether or not votes must be made in same day/week
  595. # Useful if you want to require a certain number of voting sites to be voted on
  596. # for a daily/weekly reward instead of all of them
  597. VotesInSameDay: false
  598. VotesInSameWeek: false
  599. Rewards:
  600. Messages:
  601. Player: '&aYou got %cumulative% cumulative votes!'
  602.  
  603. VoteParty:
  604. # Wether or not vote party is enabled
  605. Enabled: false
  606. # Number of votes required to give rewards
  607. VotesRequired: 20
  608. # If true, players who did not vote to reach the votes required will
  609. # recieve the reward
  610. GiveAllPlayers: false
  611. # If true, the vote count will reset each day
  612. ResetEachDay: false
  613. # Count votes from /av vote?
  614. CountFakeVotes: true
  615. # Number of user votes that apply to vote party total the user needs to get rewards
  616. UserVotesRequired: 0
  617. # Broadcast when vote party reached
  618. Broadcast: '&cReached the vote party amount!'
  619. # Reward files to give
  620. Rewards: []
  621.  
  622. # Reset milestons at end of the month
  623. ResetMilestonesMonthly: false
  624.  
  625. MileStones:
  626. # Number of votes required
  627. # Allows multiple milestones
  628. # Number be be around ' (E.g. '1')
  629. # Can have multiple listed here
  630. '20':
  631. Enabled: false
  632. Rewards:
  633. Messages:
  634. Player: '&aYou got %milestone% milestone votes!'
  635.  
  636. VoteStreak:
  637. # Valid options: Day, Week, Month
  638. Day:
  639. # Number of days in a row
  640. # Each day requires one vote
  641. # Add a - to give a reward for every multiple (e.g. 2-)
  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. Messages:
  716. Player: '&aYou came in first place in %TopVoter%!'
  717. 2:
  718. Rewards:
  719. Messages:
  720. Player: '&aYou came in second place in %TopVoter%!'
  721.  
  722. EnableWeeklyAwards: false
  723. # Rewards to give on weekly top voter
  724. WeeklyAwards:
  725. # Position. 1 is first in top voter, 2 is second, etc...
  726. 1:
  727. Rewards:
  728. Messages:
  729. Player: '&aYou came in first place in %TopVoter%!'
  730. 2:
  731. Rewards:
  732. Messages:
  733. Player: '&aYou came in second place in %TopVoter%!'
  734.  
  735. EnableDailyRewards: false
  736. # Rewards to give on daily top voter
  737. DailyAwards:
  738. # Position. 1 is first in top voter, 2 is second, etc...
  739. 1:
  740. # Reward files to give
  741. Rewards:
  742. Messages:
  743. Player: '&aYou came in first place in %TopVoter%!'
  744. 2:
  745. Rewards:
  746. Messages:
  747. Player: '&aYou came in second place in %TopVoter%!'
  748.  
  749. # ------------------------------------------------
  750. # Advanced
  751. # Most of these values can be left untouched
  752. # ------------------------------------------------
  753.  
  754. # Number of points to give on vote
  755. # Set to 0 to give no points
  756. PointsOnVote: 1
  757.  
  758. # Wether or not to check on world change
  759. # Should only be used if you do per world rewards
  760. CheckOnWorldChange: false
  761.  
  762. # Debug
  763. Debug: false
  764.  
  765. # Extra Debug
  766. # Only needed in extreme cases
  767. ExtraDebug: false
  768.  
  769. # Debug info ingame
  770. # Players with permission "VotingPlugin.Debug"
  771. # will see debug info if debug is true
  772. DebugInGame: false
  773.  
  774. # Will log debug messages to VotingPlugin/Log/log.txt
  775. # Requires Debug to be on
  776. LogDebugToFile: false
  777.  
  778. # Options for request api
  779. # Current methods
  780. # ANVIL
  781. # BOOK
  782. # CHAT
  783. # This is mainly used for admin gui's to type in values
  784. RequestAPI:
  785. DefaultMethod: 'Anvil'
  786. DisabledMethods: []
  787.  
  788. # Wether or not to log every vote to a file
  789. # Use this if you wanna track player votes
  790. # Not recommended though
  791. LogVotesToFile: false
  792.  
  793. # Delay between background updates like signs and more
  794. # Default: 3 Minutes
  795. # Longer times result in longer wait in stuff updating after a vote, like topvoter
  796. DelayBetweenUpdates: 3
  797.  
  798. # Clear cache on update, setting to true reduces performance
  799. ClearCacheOnUpdate: false
  800.  
  801. # Set to true to disable no service site message on voting
  802. # You should never have to touch this if everything is setup properly
  803. # Will also disable a few other warnings about vote sites
  804. DisableNoServiceSiteMessage: false
  805.  
  806. # Used in special cases
  807. # Much slower, but may work better
  808. AlternateUUIDLookup: false
  809.  
  810. # Shouldn't need to change this
  811. AutoKillInvs: true
  812.  
  813. # Count fake votes
  814. # If true fake votes will give points and totals
  815. CountFakeVotes: true
  816.  
  817. # Give VotingPlugin.Player by default
  818. # Requires restart to take affect
  819. GiveDefaultPermission: true
  820.  
  821. # Remove old player files
  822. # Happens on startup or /av purge
  823. PurgeOldData: false
  824.  
  825. # Minimum number of days offline in order to purge
  826. PurgeMin: 90
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement