Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 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: "&l&6{player} &bjust voted! He got &6{rewards} ! &bDo you already voted and show us your support? &9run /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:2
  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.  
  71. "1", "Park Ball", "give {player} pixelmon:park_ball",
  72.  
  73. "5", "Diamond Block", "give {player} minecraft:diamond_block",
  74.  
  75. "20", "Diamond", "give {player} minecraft:diamond",
  76.  
  77. "20", "Golden Apple", "give {player} minecraft:golden_apple",
  78.  
  79. "20", "New running boots", "give {player} pixelmon:new_running_boots",
  80.  
  81. "20", "Steakstack", "give {player} minecraft:cooked_beef 64",
  82.  
  83. "50", "Ultra Balls", "give {player} pixelmon:ultra_ball 5",
  84.  
  85. "100", "Rare candy", "give {player} pixelmon:rare_candy",
  86.  
  87. "100", "Steak", "give {player} minecraft:cooked_beef 10"
  88.  
  89. ]
  90.  
  91. set:[
  92.  
  93. ]
  94.  
  95.  
  96.  
  97. }
  98.  
  99.  
  100.  
  101.  
  102.  
  103. #// Your website voting links, displayed by /vote, these support color formatting. Creates clickable links.
  104.  
  105. #//seriousvotes.commands.vote
  106.  
  107. vote-sites:[
  108.  
  109. "http://pixelmonservers.com/server/WLkMKRHw/super-pixel",
  110.  
  111. "http://minecraftservers.org/server/408420",
  112.  
  113. "http://minecraft-server-list.com/server/381539/",
  114.  
  115. "http://topminecraftservers.org/server/1456",
  116.  
  117. "http://www.serverpact.com/vote-36222"
  118.  
  119. ]
  120.  
  121. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement