shano_dekono

ExampleBasic.yml

Jan 2nd, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 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. # Items to give to user
  21. Items:
  22. # Item
  23. # This is not item display name
  24. # No 2 names the same
  25. Diamond:
  26. # Item Material
  27. # List of material for 1.10:
  28. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  29. Material: 'DIAMOND'
  30. # Item data value (Eg 1:4, data is 4)
  31. Data: 0
  32. # Will only give Amount if min and max amounts are 0
  33. Amount: 1
  34. # Set item durability
  35. # Set to 0 or remove line for no durability
  36. #Durability: 100
  37. Emerald:
  38. # Item Material
  39. # List of material for 1.10:
  40. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  41. Material: 'EMERALD'
  42. # Item data value (Eg 1:4, data is 4)
  43. Data: 0
  44. # Will only give Amount if min and max amounts are 0
  45. Amount: 1
  46. # Set item durability
  47. # Set to 0 or remove line for no durability
  48. #Durability: 100
  49.  
  50. # Amount of money to give, requires vault
  51. # Use 0 to give none
  52. # Money is not per world
  53. # Use negative to take money
  54. Money: 5
  55.  
  56. # Pick random number between min and max amount
  57. #MinMoney: 100
  58. #MaxMoney: 3000
  59.  
  60. # Give player experience
  61. EXP: 0
  62.  
  63. # Pick a random number between min and max amount to give
  64. #MinEXP: 100
  65. #MaxEXP: 1000
  66.  
  67. # Commands to run
  68. # Use %player% for player name
  69. # Set to Console: [] for no commands
  70. Commands:
  71. - 'lp user %player% parent addtemp voterewards 2s'
  72. - 'xp give %player% 2l'
  73.  
  74. Worlds:
  75. - world
  76. - world_nether
  77. - world_the_end
  78. - Skylands
  79. - Modernworld
  80. - modernworld_nether
  81.  
  82. # The messages are sent when rewards above are given to user
  83. # set to '' to give no message
  84. # If no value is set, default in Format.yml is used
  85. Messages:
  86. Player: 'Thanks for voting! You have been rewarded &c1x &bDiamond&r, &c1x&r &aEmerald&r, &a$5&r, %NewLine%&a2&6XP Levels and &c1x&r &6L&eu&6c&ek&6y &eB&6l&eo&6c&ek'
  87. Broadcast: '&c%player_name% &5voted on &a%SiteName% &5and received &6rewards&a!%NewLine%Thankyou &6%player_name%'
Advertisement
Add Comment
Please, Sign In to add comment