Advertisement
Guest User

Milestone-007

a guest
Feb 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. # This is a reward file
  2. # Define rewards in here (Items, commands, etc)
  3. # File name is the reward name, without file extention
  4. # This reward is named "ExampleBasic"
  5. # That is what you put as a reward for other plugins, like VotingPlugin
  6. # DO NOT HAVE DUPLICATE NAMES!!
  7.  
  8. # Wiki Page:
  9. # https://github.com/Ben12345rocks/AdvancedCore/wiki/Reward-files
  10.  
  11. # This is basic reward file
  12. # You can have multiple reward files that contain all kinds of rewards
  13. # Below are some basic things you can have, see the advanced example for more
  14.  
  15. # You can just remove values you don't want (just delete it)
  16. # If you just want money just have a reward file containg only "Money: 100", for example
  17. # You can simply copy and paste from here what you want
  18. # in other reward files, that is the way they are designed
  19.  
  20. Commands:
  21. # Commands here will be run by console
  22. Console:
  23. - 'give %player% minecraft:spawn_egg:93 1 0'
  24. - 'pex user %player% add essentials.sethome.multiple.milestone_007'
  25.  
  26.  
  27. # Amount of money to give, requires vault
  28. # Use 0 to give none
  29. # Money is not per world
  30. # Use negative to take money
  31. Money: 0
  32.  
  33. # Pick random number between min and max amount
  34. #MinMoney: 100
  35. #MaxMoney: 3000
  36.  
  37. # Give player experience
  38. EXP: 100
  39.  
  40. # Pick a random number between min and max amount to give
  41. MinEXP: 10
  42. MaxEXP: 825
  43.  
  44. # Commands to run
  45. # Use %player% for player name
  46. # Set to Console: [] for no commands
  47. #Commands:
  48. # Commands here will be run by console
  49. #Console:
  50. #- 'say %player% was lucky'
  51. # Commands here are run by player
  52. #Player:
  53. #- 'vote total'
  54.  
  55. # The messages are sent when rewards above are given to user
  56. # set to '' to give no message
  57. # If no value is set, default in Format.yml is used
  58. Messages:
  59. Player: '&aMeilenstein erreicht! Du hast insgesamt &b21 Mal &agevotet. Du erhälst: &b1 Spawnei, 2 zusätzliche Homes und %exp% xp'
  60. Broadcast: '&b%player% &ahat einen Voting-Meilenstein erreicht! Belohnung: &b1 Spawnei, 2 zusätzliche Homes und %exp% xp'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement