Advertisement
Guest User

Untitled

a guest
Jan 28th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.05 KB | None | 0 0
  1. config:
  2.  
  3. {
  4.  
  5. config-version: "3.0"
  6.  
  7. #//Variables - {player} : the person who voted
  8.  
  9. #// {rewards} : The list of random rewards the player received
  10.  
  11.  
  12.  
  13. #//Leaving this empty will disable messages from being shown publicly: Supports color and formatting codes
  14.  
  15. broadcast-message: ""
  16.  
  17.  
  18.  
  19. #//-1 will have the system select a number of rewards between rewards-min and rewards-max;
  20.  
  21. random-rewards-number: 1
  22.  
  23. rewards-min:0
  24.  
  25. rewards-max:1
  26.  
  27.  
  28.  
  29.  
  30.  
  31. #//There are two kinds of rewards set and random. Set rewards will run a command and nothing else
  32.  
  33. #//these commands are run every time a vote is had. Random Rewards are chosen well..Randomly.
  34.  
  35. #//
  36.  
  37. #// "12", "reward2", "say Reward2", --All Random reward Lines should look like this
  38.  
  39. #//
  40.  
  41. #// First Entry is a "percentage" the numbers should be an integer between 1 and 100, but if it's
  42.  
  43. #// Going to be a 100 might as well just set it as a set command. Note that the percentage
  44.  
  45. #// Dictates what "Loot Table" the reward goes to internally, multiple of the same percentage is fine,
  46.  
  47. #// They will simply share a loot table. It is recommended to keep the total value of all the
  48.  
  49. #// percentage values added up to 100 (Duplicate values are ignored in the sum since, items share
  50.  
  51. #// loot Tables).
  52.  
  53. #// Second Entry is the name of the reward, this name gets added to the {rewards} variable. Items in the same
  54.  
  55. #// loot table cannot have the same name!!.
  56.  
  57. #// Third Entry is the command you want to be run. You are free to use the {player} variable in there.
  58.  
  59. #//
  60.  
  61. #//This should be pretty straight forward. Number,Name,Reward. If you have any questions ask me on the forum.
  62.  
  63. #//I am happy to help!
  64.  
  65.  
  66.  
  67.  
  68.  
  69. Rewards{
  70.  
  71. random:[
  72.  
  73. "39", "&22 Safari Balls", "give {player} pixelmon:safari_ball 2",
  74.  
  75. "39", "&c2 Poke Balls", "give {player} pixelmon:poke_ball 2",
  76.  
  77. "39", "&32 Great Balls", "give {player} pixelmon:great_ball 2",
  78.  
  79. "39", "&e2 Ultra Balls", "give {player} pixelmon:ultra_ball 2",
  80.  
  81. "55", "&8Nothing :(", "",
  82.  
  83. "5", "&b1 Rare Candy", "give {player} pixelmon:rare_candy 1",
  84.  
  85. "1", "&a1 Random Egg", "pokegiveegg {player} random",
  86.  
  87. ]
  88.  
  89. set:[
  90.  
  91. "totaleconomy:adminpay {player} 150",
  92.  
  93. "et add 300",
  94.  
  95. "pbc &7{player} &evoted & got 150 PokeCoins &7| &5Dice roll: &5{rewards}",
  96.  
  97. "pbc &6Added 5 minutes to the 2x XP time pool &c/et time"
  98.  
  99. ]
  100.  
  101.  
  102.  
  103. }
  104.  
  105.  
  106.  
  107.  
  108.  
  109. #// Your website voting links, displayed by /vote, these support color formatting. Creates clickable links.
  110.  
  111. #//seriousvotes.commands.vote
  112.  
  113. vote-sites:[
  114.  
  115. "&bhttp://www.miragecraft.xyz/vote"
  116.  
  117. ]
  118.  
  119.  
  120.  
  121. #// If you want to disable the Milestones module set hostname to ""
  122.  
  123. database:{
  124.  
  125. hostname: ""
  126.  
  127. port: "3306"
  128.  
  129. name: "SeriousVote"
  130.  
  131. prefix: "SV_"
  132.  
  133. username: "root"
  134.  
  135. password: "Hello I need a pasword Noob "
  136.  
  137. }
  138.  
  139.  
  140.  
  141. #// Currently we have monthly weekly and yearly, put what you need in the set rewards. these commands will be run
  142.  
  143. #// When a player votes X amount of days in a row, 365,30, 7
  144.  
  145. milestones: {
  146.  
  147. weekly: {
  148.  
  149. set:[
  150.  
  151. "say This is a set weekly {player} Reward",
  152.  
  153. ]
  154.  
  155. }
  156.  
  157. monthly: {
  158.  
  159. set:[
  160.  
  161. "say This is a set Monthly {player} Reward",
  162.  
  163. "acb {player} bananaphone"
  164.  
  165. ]
  166.  
  167. }
  168.  
  169. yearly: {
  170.  
  171. set:[
  172.  
  173. "say This is a set Yearly {player} Reward",
  174.  
  175. "say Crap, you must play alot"
  176.  
  177. ]
  178.  
  179. }
  180.  
  181. }
  182.  
  183. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement