Advertisement
Guest User

Untitled

a guest
Apr 8th, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. config:
  2. {
  3. config-version: "3.0"
  4. #//Variables - {player} : the person who voted
  5. #// {rewards} : The list of random rewards the player received
  6.  
  7. #//Leaving this empty will disable messages from being shown publicly: Supports color and formatting codes
  8. broadcast-message: "&c{player} &f님이 서버를 추천했습니다! | &c보상: &f{rewards}! | 보상을 받고싶으시다면, &6명령어: &c/vote"
  9.  
  10. #//-1 will have the system select a number of rewards between rewards-min and rewards-max;
  11. random-rewards-number: -1
  12. rewards-min:1
  13. rewards-max:5
  14.  
  15.  
  16. #//There are two kinds of rewards set and random. Set rewards will run a command and nothing else
  17. #//these commands are run every time a vote is had. Random Rewards are chosen well..Randomly.
  18. #//
  19. #// "12", "reward2", "say Reward2", --All Random reward Lines should look like this
  20. #//
  21. #// First Entry is a "percentage" the numbers should be an integer between 1 and 100, but if it's
  22. #// Going to be a 100 might as well just set it as a set command. Note that the percentage
  23. #// Dictates what "Loot Table" the reward goes to internally, multiple of the same percentage is fine,
  24. #// They will simply share a loot table. It is recommended to keep the total value of all the
  25. #// percentage values added up to 100 (Duplicate values are ignored in the sum since, items share
  26. #// loot Tables). In reality it's just weight based tables, there is a graphic on the thread.
  27. #// Second Entry is the name of the reward, this name gets added to the {rewards} variable. Items in the same
  28. #// loot table cannot have the same name!!.
  29. #// Third Entry is the command you want to be run. You are free to use the {player} variable in there.
  30. #//
  31. #//This should be pretty straight forward. Number,Name,Reward. If you have any questions ask me on the forum.
  32. #//I am happy to help!
  33.  
  34.  
  35. Rewards{
  36. random:[
  37. "25", "reward1", "give {player} minecraft:coal 16",
  38. "24", "reward3", "give {player} ironchest:woodIronUpgrade 1",
  39. "66", "reward4", "give {player} animania:cooked_duroc_roast 6",
  40. "10", "reward5", "give {player} minecraft:iron_ingot 12",
  41. "5", "reward6", "give {player} minecraft:diamond 4",
  42. ]
  43. set:[
  44. ""
  45. ]
  46.  
  47. }
  48.  
  49.  
  50. #// Your website voting links, displayed by /vote, these support color formatting. Creates clickable links.
  51. #//seriousvote.commands.vote
  52. vote-sites:[
  53. "&chttps://minelist.kr/servers/play.irole.io",
  54. ]
  55.  
  56. #//Enable milestones to enable the database
  57. database:{
  58. hostname: "localhost"
  59. port: "3306"
  60. name: "SeriousVote"
  61. prefix: "SV_"
  62. username: "root"
  63. password: "tjdtlfgkrp0816!"
  64. }
  65.  
  66. #// Currently we have monthly weekly and yearly, put what you need in the set rewards. these commands will be run
  67. #// When a player votes X amount of days in a row, 365,30, 7
  68. #// This module is disabled by default. It requires a mysql database. Update the database Information and then change enabled to true;
  69. #// The restart your server or do /svreload
  70. milestones: {
  71. enabled: false
  72. weekly: {
  73. set:[
  74. "say This is a set weekly {player} Reward",
  75. ]
  76. }
  77. monthly: {
  78. set:[
  79. "say This is a set Monthly {player} Reward",
  80. "acb {player} bananaphone"
  81. ]
  82. }
  83. yearly: {
  84. set:[
  85. "say This is a set Yearly {player} Reward",
  86. "say Crap, you must play alot"
  87. ]
  88. }
  89. }
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement