Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. config:
  2. {
  3. #//Variables - {player} : the person who voted
  4. #// {rewards} : The list of random rewards the player received
  5.  
  6. #//Leaving this empty will disable messages from being shown publicly: Supports color and formatting codes
  7. broadcast-message: "&4{player} &eJust Voted! He got {rewards}! If you like it here show your support! &6run &5/vote"
  8.  
  9. #//-1 will have the system select a number of rewards between rewards-min and rewards-max;
  10. random-rewards-number: -1
  11. rewards-min:1
  12. rewards-max:3
  13.  
  14.  
  15. #//There are two kinds of rewards set and random. Set rewards will run a command and nothing else
  16. #//these commands are run every time a vote is had. Random Rewards are chosen well..Randomly.
  17. #//
  18. #// "12", "reward2", "say Reward2", --All Random reward Lines should look like this
  19. #//
  20. #// First Entry is a "percentage" the numbers should be an integer between 1 and 100, but if it's
  21. #// Going to be a 100 might as well just set it as a set command. Note that the percentage
  22. #// Dictates what "Loot Table" the reward goes to internally, multiple of the same percentage is fine,
  23. #// They will simply share a loot table. It is recommended to keep the total value of all the
  24. #// percentage values added up to 100 (Duplicate values are ignored in the sum since, items share
  25. #// loot Tables).
  26. #// Second Entry is the name of the reward, this name gets added to the {rewards} variable. Items in the same
  27. #// loot table cannot have the same name!!.
  28. #// Third Entry is the command you want to be run. You are free to use the {player} variable in there.
  29. #//
  30. #//This should be pretty straight forward. Number,Name,Reward. If you have any questions ask me on the forum.
  31. #//I am happy to help!
  32.  
  33.  
  34. Rewards{
  35. random:[
  36. "16", "10 Pokeballs", "give {player} pixelmon:item.poke_ball 10",
  37. "16", "5 Rare Candies", "give {player} pixelmon:item.Rare_Candy 5",
  38. "16", "$5000", "adminpay {player} 5000",
  39. "8", "50 Claimblocks", "adjustbonusclaimblocks {player} 50",
  40. "8", "5 Ultra Balls", "give {player} pixelmon:item.ultra_ball 5",
  41. "8", "1 Isi's Silver Hourglass", "give {player} pixelmon:hourglass_silver 1",
  42. "8", "1 Legendary Orb", "give {player} pixelmon:orb 1",
  43. "5", "a random Shiny", "pokegive {player} random s",
  44. "5", "1 Isi's Golden Hourglass", "give {player} pixelmon:hourglass_gold 1",
  45. "4", "a Ranch Upgrade", "give {player} pixelmon:item.ranch_upgrade 1",
  46. "4", "1 Shiny Token", "token add shiny {player} 1",
  47. "1", "1 Masterball", "give {player} pixelmon:item.master_ball 1",
  48. "1", "1 Legendary Token", "token add legendary {player} 1"
  49. ]
  50. set:[
  51. "broadcast &2{player} voted and recieved &6{reward}&2!"
  52. ]
  53. }
  54.  
  55.  
  56. #// Your website voting links, displayed by /vote, these support color formatting. Creates clickable links.
  57. #//seriousvote.commands.vote
  58. vote-sites:[
  59. "&4http://&evoteSiteOne.com/v&4ote",
  60. "http://voteSiteTwo.com/vote",
  61. "&4http://&5voteSiteThree.com/vote"
  62. ]
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement