Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. virtualchest {
  2. TextTitle = "&a&lPoke&6&lEdit&5&l-&e&lMenu."
  3. Rows = 3 //Howmany rows the menu has
  4. Slot0 { //the the slot in the menu this command populates
  5. Item { //information about the item in the menu
  6. Count = 1
  7. ItemType = "minecraft:map"
  8. UnsafeDamage = 0
  9. DisplayName = "&a&lNature" //name displayed in the menu
  10. ItemLore = [ //as long separate each line by quotes
  11. "&6Change ur pokemons Nature."
  12. ]
  13. }
  14. PrimaryAction {
  15. Command ="console:vc open nature" //the command you wish to run; must be contained within ""
  16. KeepInventoryOpen = false //false closes the menu on click, true keeps it open.
  17. }
  18. }
  19. Slot1 = [
  20. {
  21. Item {
  22. Count = 1
  23. ItemType = "minecraft:feather"
  24. UnsafeDamage = 0
  25. DisplayName = "&f&lTimid"
  26. ItemLore = [
  27. "&fSets nature to Timid"
  28. "&f&eCost: &f50000"
  29. ]
  30. }
  31. Requirements = "%party_1_nature% == 'Timid'"
  32. PrimaryAction {
  33. Command = "console: plaintell %player_name% &7This pokemon is already Timid"
  34. KeepInventoryOpen = false
  35. }
  36. }, {
  37. Item {
  38. Count = 1
  39. ItemType = "minecraft:feather"
  40. UnsafeDamage = 0
  41. DisplayName = "&f&lTimid"
  42. ItemLore = [
  43. "&fSets nature to Timid"
  44. "&f&eCost: &f50000"
  45. ]
  46. }
  47. Requirements = "%economy_balance% >= 50000 && !%party_1_nature% == 'Timid'"
  48. PrimaryAction {
  49. Command = "cost: 50000; console: pokeedit %player_name% 1 nature:timid; console: plaintell %player_name% &a&lPixel&6&lCoin: &7Your pokemon's nature got changed to timid. &c$50k has been taken from your balance."
  50. KeepInventoryOpen = false
  51. }
  52. }, {
  53. Item {
  54. Count = 1
  55. ItemType = "minecraft:feather"
  56. UnsafeDamage = 0
  57. DisplayName = "&f&lTimid"
  58. ItemLore = [
  59. "&fSets nature to Timid"
  60. "&f&eCost: &f50000"
  61. ]
  62. }
  63. Requirements = ""
  64. PrimaryAction {
  65. Command = "console: plaintell %player_name% &7You dont have enough money. Keep saving."
  66. KeepInventoryOpen = false
  67. }
  68. }
  69. ]
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement