Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. config:
  2.  
  3. {
  4.  
  5. #//Variables - {player} : the person who voted
  6.  
  7. #// {rewards} : The list of random rewards the player received
  8.  
  9.  
  10.  
  11. #//Leaving this empty will disable messages from being shown publicly: Supports color and formatting codes
  12.  
  13. broadcast-message: "&4{player} &eJust Voted! He got {rewards}! If you like it here show your support! &6run &5/vote"
  14.  
  15.  
  16.  
  17. #//-1 will have the system select a number of rewards between rewards-min and rewards-max;
  18.  
  19. random-rewards-number: -1
  20.  
  21. rewards-min:1
  22.  
  23. rewards-max:3
  24.  
  25.  
  26.  
  27.  
  28.  
  29. #//There are two kinds of rewards set and random. Set rewards will run a command and nothing else
  30.  
  31. #//these commands are run every time a vote is had. Random Rewards are chosen well..Randomly.
  32.  
  33. #//
  34.  
  35. #// "12", "reward2", "say Reward2", --All Random reward Lines should look like this
  36.  
  37. #//
  38.  
  39. #// First Entry is a "percentage" the numbers should be an integer between 1 and 100, but if it's
  40.  
  41. #// Going to be a 100 might as well just set it as a set command. Note that the percentage
  42.  
  43. #// Dictates what "Loot Table" the reward goes to internally, multiple of the same percentage is fine,
  44.  
  45. #// They will simply share a loot table. It is recommended to keep the total value of all the
  46.  
  47. #// percentage values added up to 100 (Duplicate values are ignored in the sum since, items share
  48.  
  49. #// loot Tables).
  50.  
  51. #// Second Entry is the name of the reward, this name gets added to the {rewards} variable. Items in the same
  52.  
  53. #// loot table cannot have the same name!!.
  54.  
  55. #// Third Entry is the command you want to be run. You are free to use the {player} variable in there.
  56.  
  57. #//
  58.  
  59. #//This should be pretty straight forward. Number,Name,Reward. If you have any questions ask me on the forum.
  60.  
  61. #//I am happy to help!
  62.  
  63.  
  64.  
  65.  
  66.  
  67. Rewards{
  68.  
  69. random:[
  70. "50", "5 Rare Candies", "/give {player} pixelmon:item.Rare_Candy 5",
  71. "50", "5 Rare Candies", "/give {player} pixelmon:item.Rare_Candy 5"
  72. ]
  73.  
  74. set:[
  75.  
  76. "say This is a set {player} Reward",
  77.  
  78. "say this is another set Reward"
  79.  
  80. ]
  81.  
  82.  
  83.  
  84. }
  85.  
  86.  
  87.  
  88.  
  89.  
  90. #// Your website voting links, displayed by /vote, these support color formatting. Creates clickable links.
  91.  
  92. #//seriousvotes.commands.vote
  93.  
  94. vote-sites:[
  95.  
  96. "&ahttp://minecraftservers.org/vote/181621",
  97.  
  98. "http://www.minecraft-index.com/40512-the-spartans-pixelmon/vote",
  99.  
  100. "http://www.planetminecraft.com/server/spartansurvival-2845001/vote/",
  101.  
  102. "http://pixelmonservers.com/server/DHCy3hVT/vote",
  103.  
  104. "http://minecraft-mp.com/server/41581/vote/",
  105.  
  106. "https://minecraft-server.net/index.php?a=in&u=Pixelhouse",
  107.  
  108. "https://mineservers.com/server/eWuPd4Y6/the-spartans-pixelmon",
  109.  
  110. "http://www.minepick.com/servers/9629/vote/"
  111.  
  112. ]
  113.  
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement