Guest User

Untitled

a guest
Aug 15th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.59 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.  
  23. # Let players who never joined before vote
  24. # Recommend: False (Will prevent creating random user data files)
  25. AllowUnjoined: false
  26.  
  27. # If true, plugin will send scoreboards on some commands
  28. SendScoreboards: true
  29.  
  30. # If true, plugin will automaticly generate votesites
  31. # Disable this if you experience issues with sites being created randomly
  32. AutoCreateVoteSites: true
  33.  
  34. # Automaticly download the latest version
  35. # Will require a restart to actually update
  36. # Note that updates take 30-40 minutes to load before they can be downloaded
  37. AutoDownload: false
  38.  
  39. # ------------------------------------------------
  40. # VoteReminding
  41. # ------------------------------------------------
  42.  
  43. # Configuration for VoteReminding
  44. # By default this should be all setup to work
  45. # as long as vote delays are done properly
  46. VoteReminding:
  47. # Enable vote reminding
  48. # This will remind player when he can vote on all sites
  49. # Requires VoteDelay's to be setup properly
  50. # Use /vote next to see when you can be reminded
  51. # Players require the perm "VotingPlugin.Login.RemindVotes" or "VotingPlugin.Player"
  52. Enabled: true
  53.  
  54. # Wether or t to remind only once when the player can vote
  55. # Does not apply to login reminds.
  56. RemindOnlyOnce: true
  57.  
  58. # Will remind player on login if he can vote
  59. # Ignores value above
  60. RemindOnLogin: true
  61.  
  62. # Delay to remind votes in minutes
  63. # Only works if above is false
  64. RemindDelay: 30
  65.  
  66. # Run reward files on remind
  67. # By default, the reward file will be created for you
  68. # and have the default message
  69. # Edit the message at AdvancedCore/Rewards/Remind.yml (or any other reward listed)
  70. # Can add titles and more in the reward file
  71. Rewards:
  72. Messages:
  73. Player: '&aRemember to vote!'
  74. Title:
  75. Enabled: false
  76. Title: '&cRemember to vote!'
  77. SubTitle: '&aType /vote'
  78. FadeIn: 10
  79. ShowTime: 50
  80. FadeOut: 10
  81.  
  82. Commands:
  83. # Wether or not the following commands will open GUIs rather than display text
  84. UseGUI:
  85. Today: true
  86. TopVoter: true
  87. Last: true
  88. Next: true
  89. Total: true
  90. Vote: true
  91. Best: true
  92. Streak: true
  93.  
  94. # ------------------------------------------------
  95. # Format
  96. # ------------------------------------------------
  97.  
  98. # Common PlacesHolders:
  99. # Please Note: Not all are usable in all sections
  100. # Special PlaceHolders will be commented where available
  101. # %player% = player name
  102. # %SiteName% = vote site name
  103. #
  104. # Set Message to '' (2 ') to disable message
  105.  
  106. Format:
  107. # Message when player tries to run command without required permissions
  108. NoPerms: '&cYou do not have enough permission!'
  109.  
  110. # Message when player types a command but does not input a number where needed
  111. NotNumber: '&cError on &6%arg%&c, number expected!'
  112.  
  113. # CommandHandler help message
  114. HelpLine: '&3&l%Command% - &3%HelpMessage%'
  115.  
  116. # Broadcast vote message
  117. BroadcastMsg: '&6[&4Broadcast&6] &2Thanks &c%player% &2for voting on %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. - '&4&lVote for our server!'
  129.  
  130. # If you want to want to use the feature below where the plugin will
  131. # automaticly list the sites then set the message in the text above
  132. AutoInputSites: true
  133. # For each VoteSite
  134. # make sure to set VoteURL in your VoteSites
  135. # Requires above to be true
  136. # Text will be sent before this
  137. Sites: '&4%num%: &c&l%SiteName% - &c%url%'
  138.  
  139. # Format for /vote next
  140. Next:
  141. # First line
  142. Title: '&3&l%player% Next Votes:'
  143.  
  144. # How each line is setup for each vote site
  145. # %info% = Info - See Below
  146. # %SiteName% = site name from vote
  147. Layout: '&3%SiteName%: &6%info%'
  148.  
  149. Info:
  150. # Message when player can vote
  151. CanVote: 'Go Vote!'
  152. # Time until vote msg
  153. # %hours% = hours until next vote
  154. # %minutes% = minutes until next vote
  155. TimeUntilVote: '%hours% Hours and %minutes% Minutes'
  156. # If there is an error finding out time until next vote
  157. Error: '&cCould not caculate time until next vote!'
  158. # For sites that have this, requires votedelaydaily to be set to true in the site
  159. VoteDelayDaily: 'Tomorrow'
  160.  
  161. # Format for /vote last
  162. Last:
  163. # First line
  164. Title: '&3&l%player% Last Vote Times:'
  165. # Lines for each vote site
  166. # %time% = time, using timeformat below
  167. Line: '&3%SiteName%: &6%time%'
  168.  
  169. # Format for /vote total
  170. Total:
  171. - '&3&l%player% Total Votes:'
  172. - '&3&lDaily Total: &6&l%DailyTotal%'
  173. - '&3&lWeekly Total: &6&l%WeeklyTotal%'
  174. - '&3&lMonthly Total: &6&l%MonthlyTotal%'
  175. - '&3&lAllTime Total: &6&l%AllTimeTotal%'
  176.  
  177. # Format for /vote total all
  178. TotalAll:
  179. - '&3&lServer Total Votes:'
  180. - '&3&lDaily Total: &6&l%DailyTotal%'
  181. - '&3&lWeekly Total: &6&l%WeeklyTotal%'
  182. - '&3&lMonthly Total: &6&l%MonthlyTotal%'
  183. - '&3&lAllTime Total: &6&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: '&3Top %Top% Voters %page%/%maxpages%'
  192. # Line for each player in that page
  193. Line: '&c%num%: &6%player%, %votes%'
  194.  
  195. # Format for /vote help
  196. Help:
  197. # Title of /vote help
  198. Title: '&3&lVoting Player Help'
  199. # Format for help message in /v help
  200. Line: '&3&l%Command% - &3%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. - '&cCurrently at &6%Votes%&c, &6%NeededVotes% &cmore votes to go to reach &6%VotesRequired%'
  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: '&cRemember to vote!'
  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: '&aYou came in %place% in top voters of the month! Here is an award!'
  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: '&cYou do not have enough permission!'
  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. # ------------------------------------------------
  268. # GUI Options
  269. # ------------------------------------------------
  270.  
  271. # Configure GUI's here
  272. # 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)
  273. # Item Material's can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  274. GUI:
  275. # GUI for /vote gui, /vgui, votegui
  276. VoteGUI:
  277. # Items will be orders as it is below
  278. URL:
  279. # Standard item format, lore is automaticly applied
  280. Item:
  281. Material: 'BOW'
  282. Data: 0
  283. Amount: 1
  284. Name: '&4URL'
  285. # You can set skulls of the player using the following
  286. # Remove the # to enable
  287. #Skull: '%Player%'
  288. Slot: 0
  289. Next:
  290. Item:
  291. Material: 'COMPASS'
  292. Data: 0
  293. Amount: 1
  294. Name: '&4Next'
  295. Slot: 1
  296. Last:
  297. Item:
  298. Material: 'WATCH'
  299. Data: 0
  300. Amount: 1
  301. Name: '&4Last'
  302. Slot: 2
  303. Total:
  304. Item:
  305. Material: 'CHEST'
  306. Data: 0
  307. Amount: 1
  308. Name: '&4Total'
  309. Slot: 3
  310. Top:
  311. Item:
  312. Material: 'SIGN'
  313. Data: 0
  314. Amount: 1
  315. Name: '&4Top'
  316. Slot: 4
  317. Today:
  318. Item:
  319. Material: 'BOOK'
  320. Data: 0
  321. Amount: 1
  322. Name: '&4Today'
  323. Slot: 5
  324. Shop:
  325. Item:
  326. Material: 'DIAMOND'
  327. Data: 0
  328. Amount: 1
  329. Name: '&4Vote Shop'
  330. Slot: 6
  331. # /vote Reward gui item
  332. # Uncomment to use, most likely will be unused
  333. #Rewards:
  334. # Item:
  335. # Material: 'DIAMOND'
  336. # Data: 0
  337. # Amount: 1
  338. # Name: '&4Voting Rewards'
  339. # Slot: 7
  340.  
  341. # GUI for /vote url
  342. # And /vote if enabled in Config.yml
  343. VoteURL:
  344. # GUI Name
  345. Name: '&cVoteURL'
  346. BackButton: true
  347. SiteName: '&c%Name%'
  348. SeeURL: '&cClick to see URL'
  349. NextVote: '&cCan Vote In: %Info%'
  350. ViewAllUrlsButtonEnabled: true
  351. AllUrlsButton:
  352. AlreadyVotedItem:
  353. Material: 'REDSTONE_BLOCK'
  354. Data: 0
  355. Amount: 1
  356. CanVoteItem:
  357. Material: 'EMERALD_BLOCK'
  358. Data: 0
  359. Amount: 1
  360. AlreadyVotedItem:
  361. Material: 'REDSTONE_BLOCK'
  362. Data: 0
  363. Amount: 1
  364. CanVoteItem:
  365. Material: 'EMERALD_BLOCK'
  366. Data: 0
  367. Amount: 1
  368. # Customize /vote reward
  369. # Show players what you get when you vote on each site
  370. VoteReward:
  371. # Name of votesite
  372. ExampleVoteSite:
  373. # items in /vote reward sitename
  374. Items:
  375. # Item
  376. # This is not the item display name
  377. # Do not have 2 of the same items
  378. Diamond:
  379. # Item ID
  380. Material: 'DIAMOND'
  381. # Item Data (Eg 1:4, data is 4)
  382. Data: 0
  383. # Amount of items
  384. # Should be greater than 0
  385. Amount: 1
  386. # Item name
  387. # Remove this line for no name
  388. Name: '&4Example'
  389. # Lore
  390. # Remove this line for no lore
  391. Lore:
  392. - '&4Line 1'
  393. Slot: 0
  394. VoteLast:
  395. Name: 'VoteLast: %player%'
  396. BackButton: true
  397. VoteNext:
  398. Name: 'VoteNext: %player%'
  399. BackButton: true
  400. VoteToday:
  401. Name: 'VoteToday'
  402. BackButton: true
  403. VoteTop:
  404. Name: 'VoteTop %topvoter%'
  405. BackButton: false
  406. Item:
  407. Name: '&3&l%position%: &3%player%'
  408. Lore: '&3&lVotes: &3%votes%'
  409. SwitchItem:
  410. Name: 'Switch TopVoter'
  411. Lore: 'Currently: %Top%'
  412. Material: 'SIGN'
  413. Amount: 1
  414. # 8 Slots over from the bottom left
  415. Slot: 7
  416. # Number of topvoters to display on page +9
  417. # 9 Slots on the botton are used for page buttons
  418. Size: 27
  419. VoteTotal:
  420. Name: 'VoteTotal: %player%'
  421. BackButton: true
  422. DayTotal:
  423. Item:
  424. Material: 'WATCH'
  425. Name: '&cDaily Total'
  426. Lore: '&c&lTotal: &c%Total%'
  427. Amount: 1
  428. WeekTotal:
  429. Item:
  430. Material: 'WATCH'
  431. Name: '&cWeekly Total'
  432. Lore: '&c&lTotal: &c%Total%'
  433. Amount: 1
  434. MonthTotal:
  435. Item:
  436. Material: 'WATCH'
  437. Name: '&cMonthly Total'
  438. Lore: '&c&lTotal: &c%Total%'
  439. Amount: 1
  440. AllTimeTotal:
  441. Item:
  442. Material: 'WATCH'
  443. Name: '&cAllTime Total'
  444. Lore: '&c&lTotal: &c%Total%'
  445. Amount: 1
  446. VoteBest:
  447. Name: 'VoteBest: %player%'
  448. DayBest:
  449. Item:
  450. Material: 'WATCH'
  451. Name: '&cDaily Best'
  452. Lore: '&c&lBest: &c%Best%'
  453. Amount: 1
  454. WeekBest:
  455. Item:
  456. Material: 'WATCH'
  457. Name: '&cWeekly Best'
  458. Lore: '&c&lBest: &c%Best%'
  459. Amount: 1
  460. MonthBest:
  461. Item:
  462. Material: 'WATCH'
  463. Name: '&cMonthly Best'
  464. Lore: '&c&lBest: &c%Best%'
  465. Amount: 1
  466. VoteStreak:
  467. Name: 'VoteBest: %player%'
  468. BackButton: false
  469. CurrentDayStreak:
  470. Item:
  471. Material: 'WATCH'
  472. Name: '&cCurrent Daily Streak'
  473. Lore: '&c&lStreak: &c%Streak%'
  474. Amount: 1
  475. CurrentWeekStreak:
  476. Item:
  477. Material: 'WATCH'
  478. Name: '&cCurrent Weekly Streak'
  479. Lore: '&c&lStreak: &c%Streak%'
  480. Amount: 1
  481. CurrentMonthStreak:
  482. Item:
  483. Material: 'WATCH'
  484. Name: '&cCurrent Monthly Streak'
  485. Lore: '&c&lStreak: &c%Streak%'
  486. Amount: 1
  487. HighestDayStreak:
  488. Item:
  489. Material: 'WATCH'
  490. Name: '&cHighest Daily Streak'
  491. Lore: '&c&lStreak: &c%Streak%'
  492. Amount: 1
  493. HighestWeekStreak:
  494. Item:
  495. Material: 'WATCH'
  496. Name: '&cHighest Weekly Streak'
  497. Lore: '&c&lStreak: &c%Streak%'
  498. Amount: 1
  499. HighestMonthStreak:
  500. Item:
  501. Material: 'WATCH'
  502. Name: '&cHighest Monthly Streak'
  503. Lore: '&c&lStreak: &c%Streak%'
  504. Amount: 1
  505. VoteURLSite:
  506. Name: 'VoteSite: %site%'
  507. VoteGUIName: '&cVoteGUI: &c&l%player%'
  508. VoteRewardName: 'VoteReward'
  509. VoteShopName: 'VoteShop'
  510.  
  511. Shop:
  512. # Identifier
  513. # Used in placeholders for formats
  514. Diamond:
  515. # Item
  516. Material: 'DIAMOND'
  517. Data: 0
  518. Amount: 1
  519. Name: '&4Buy A Diamond'
  520. # You can set skulls of the player using the following
  521. # Remove the # to enable
  522. #Skull: '%Player%'
  523. Lore:
  524. - '&c&lCost: &c3 Voting Points'
  525. # Number of voting points this cost
  526. Cost: 3
  527. # Rewards to run if player buys succesfully
  528. Rewards:
  529. Items:
  530. Diamond:
  531. Material: 'DIAMOND'
  532. Amount: 1
  533. # Slot
  534. Slot: 0
  535.  
  536. # ------------------------------------------------
  537. # Extra Rewards
  538. # ------------------------------------------------
  539.  
  540. # To disable reward set value to []
  541. # Eg:
  542. # FirstVote: [] (All in one line)
  543. # By default all rewards are disabled
  544.  
  545. # First vote rewards
  546. FirstVote:
  547. Messages:
  548. Player: '&aYou voted for your first time!'
  549. Money: 100
  550.  
  551. # All vote rewards
  552. # Reward for voting on all sites in one day
  553. AllSites:
  554. Messages:
  555. Player: '&aYou voted on all sites in 1 day!'
  556.  
  557. Cumulative:
  558. # Number of votes required
  559. # Allows multiple cumulative rewards
  560. # Number be be around ' (E.g. '1')
  561. # Can have multiple listed here
  562. '20':
  563. Enabled: false
  564. # Wether or not votes must be made in same day/week
  565. # Useful if you want to require a certain number of voting sites to be voted on
  566. # for a daily/weekly reward instead of all of them
  567. VotesInSameDay: false
  568. VotesInSameWeek: false
  569. Rewards:
  570. Messages:
  571. Player: '&aYou got %cumulative% cumulative votes!'
  572.  
  573. VoteParty:
  574. # Wether or not vote party is enabled
  575. Enabled: false
  576. # Number of votes required to give rewards
  577. VotesRequired: 20
  578. # If true, players who did not vote to reach the votes required will
  579. # recieve the reward
  580. GiveAllPlayers: false
  581. # If true, the vote count will reset each day
  582. ResetEachDay: false
  583. # Number of user votes that apply to vote party total the user needs to get rewards
  584. UserVotesRequired: 0
  585. # Broadcast when vote party reached
  586. Broadcast: '&cReached the vote party amount!'
  587. # Reward files to give
  588. Rewards: []
  589.  
  590. # Reset milestons at end of the month
  591. ResetMilestonesMonthly: false
  592.  
  593. MileStones:
  594. # Number of votes required
  595. # Allows multiple milestones
  596. # Number be be around ' (E.g. '1')
  597. # Can have multiple listed here
  598. '20':
  599. Enabled: false
  600. Rewards:
  601. Messages:
  602. Player: '&aYou got %milestone% milestone votes!'
  603.  
  604. VoteStreak:
  605. # Valid options: Day, Week, Month
  606. Day:
  607. # Number of days in a row
  608. # Each day requires one vote
  609. '2':
  610. # Enabled or not
  611. Enabled: false
  612. # Rewards to give
  613. Rewards:
  614. Messages:
  615. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  616. Week:
  617. # Number of weeks in a row
  618. # Requires atleast one vote per week
  619. '2':
  620. # Enabled or not
  621. Enabled: false
  622. # Rewards to give
  623. Rewards:
  624. Messages:
  625. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  626. Month:
  627. # Number of months in a row
  628. # Requires atleast 1 vote per month
  629. '2':
  630. # Enabled or not
  631. Enabled: false
  632. # Rewards to give
  633. Rewards:
  634. Messages:
  635. Player: "&aYou voted for %Streak% %Type%'s in a row!"
  636.  
  637.  
  638. # ONLY USE THIS FOR TITLES/SOUNDS AND OTHER EFFECTS
  639. # IT WILL ONLY RUN ONE TIME FOR ANY NUMBER OF OFFLINE VOTES
  640. # Any reward files listed here are ran on vote of any site
  641. # It is recommended to add rewards to each site instead of here
  642. AnySiteRewards: []
  643.  
  644.  
  645. # ------------------------------------------------
  646. # Top Voter
  647. # ------------------------------------------------
  648.  
  649. # Top voter blacklist
  650. BlackList:
  651. - 'Notch'
  652.  
  653. # If true players with the permission 'VotingPlugin.TopVoter.Ignore' will act
  654. # as if there name was added on the the blacklist above
  655. # This also applies for ops
  656. TopVoterIgnorePermission: false
  657.  
  658. # /vote top default data displayed
  659. # Valid Options: AllTime, Monthly, Weekly, Daily
  660. VoteTopDefault: Monthly
  661.  
  662. # These are required to be enabled in order for top voter awards to work
  663. LoadTopVoter:
  664. AllTime: true
  665. Monthly: true
  666. Weekly: false
  667. Daily: false
  668.  
  669. # When top voter awards are given (even if there are none listed) it will store top voters
  670. # Files will created in TopVoters folder.
  671. StoreTopVoters:
  672. Monthly: true
  673. Weekly: false
  674. Daily: false
  675.  
  676. EnableMonthlyAwards: true
  677. # Rewards to give
  678. MonthlyAwards:
  679. # Position. 1 is first in top voter, 2 is second, etc...
  680. 1:
  681. Rewards:
  682. Messages:
  683. Player: '&aYou came in first place in %TopVoter%!'
  684. 2:
  685. Rewards:
  686. Messages:
  687. Player: '&aYou came in second place in %TopVoter%!'
  688.  
  689. EnableWeeklyAwards: false
  690. # Rewards to give on weekly top voter
  691. WeeklyAwards:
  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. EnableDailyRewards: false
  703. # Rewards to give on daily top voter
  704. DailyAwards:
  705. # Position. 1 is first in top voter, 2 is second, etc...
  706. 1:
  707. # Reward files to give
  708. Rewards:
  709. Messages:
  710. Player: '&aYou came in first place in %TopVoter%!'
  711. 2:
  712. Rewards:
  713. Messages:
  714. Player: '&aYou came in second place in %TopVoter%!'
  715.  
  716. # ------------------------------------------------
  717. # Advanced
  718. # Most of these values can be left untouched
  719. # ------------------------------------------------
  720.  
  721. # Number of points to give on vote
  722. # Set to 0 to give no points
  723. PointsOnVote: 1
  724.  
  725. # Wether or not to check on world change
  726. # Should only be used if you do per world rewards
  727. CheckOnWorldChange: false
  728.  
  729. # Debug
  730. Debug: false
  731.  
  732. # Extra Debug
  733. # Only needed in extreme cases
  734. ExtraDebug: false
  735.  
  736. # Debug info ingame
  737. # Players with permission "VotingPlugin.Debug"
  738. # will see debug info if debug is true
  739. DebugInGame: false
  740.  
  741. # Will log debug messages to VotingPlugin/Log/log.txt
  742. # Requires Debug to be on
  743. LogDebugToFile: false
  744.  
  745. # Options for request api
  746. # Current methods
  747. # ANVIL
  748. # BOOK
  749. # CHAT
  750. # This is mainly used for admin gui's to type in values
  751. RequestAPI:
  752. DefaultMethod: 'Anvil'
  753. DisabledMethods: []
  754.  
  755. # Wether or not to log every vote to a file
  756. # Use this if you wanna track player votes
  757. # Not recommended though
  758. LogVotesToFile: false
  759.  
  760. # Delay between background updates like signs and more
  761. # Default: 3 Minutes
  762. # Longer times result in longer wait in stuff updating after a vote, like topvoter
  763. DelayBetweenUpdates: 3
  764.  
  765. # Set to true to disable no service site message on voting
  766. # You should never have to touch this if everything is setup properly
  767. DisableNoServiceSiteMessage: false
  768.  
  769. # Used in special cases
  770. # Much slower, but may work better
  771. AlternateUUIDLookup: false
Add Comment
Please, Sign In to add comment