Advertisement
Guest User

Item vs Command Voting Schemas

a guest
Jul 5th, 2016
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. Item Schema - Original
  2.  
  3. pmilestone150= {
  4. Type= "ITEM"
  5. Entries= [
  6. Type= "pixelmon:item.Mineral_Badge",
  7. Amount= 1
  8. Name= "Reward Token"
  9. Lore= [
  10. "Turn this into an administrator",
  11. "in order to claim your reward!"
  12. ]
  13. ]
  14. }
  15.  
  16. Item Schema - Transitioned
  17.  
  18. pmilestone150= {
  19. Type= "ITEM"
  20. Entries= [
  21. Type= "pixelmon:item.Mineral_Badge",
  22. "Amount",
  23. "=",
  24. @long:1,
  25. "Name=",
  26. "Reward Token",
  27. "Lore=",
  28. [
  29. "Turn this into an administrator",
  30. "in order to claim your reward!"
  31. ]
  32. ]
  33. }
  34.  
  35. Command Schema - Original
  36.  
  37. pmilestone150= {
  38. Type= "COMMAND"
  39. Entries= [
  40. "give %player% pixelmon:item.Mineral_Badge 1 0 {display:{Name:"Reward Token",Lore:["Turn this into an administrator","in order to claim your reward!"]}}"
  41. ]
  42. }
  43.  
  44. Command Schema - Transitioned
  45.  
  46. pmilestone150= {
  47. Type= "COMMAND"
  48. Entries= [
  49. "\"give %player% pixelmon:item.Mineral_Badge 1 0 {display:{Name:\"Reward",
  50. "Token\",Lore:[\"Turn",
  51. "this",
  52. "into",
  53. "an",
  54. "administrator\",\"in",
  55. "order",
  56. "to",
  57. "claim",
  58. "your",
  59. "reward!\"]}}\""
  60. ]
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement