Advertisement
Guest User

Untitled

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