Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.95 KB | None | 0 0
  1. command /shop:
  2. trigger:
  3. wait 3 ticks
  4. open chest with 3 rows named "&6Shop &e-" to player
  5. format slot 0 of player with gray glass named "&7" to close
  6. format slot 8 of player with gray glass named "&7" to close
  7. format slot 9 of player with gray glass named "&7" to close
  8. format slot 17 of player with gray glass named "&7" to close
  9. format slot 18 of player with gray glass named "&7" to close
  10. format slot 26 of player with gray glass named "&7" to close
  11. format slot 11 of player with grass named "&aNormal Blocks" with lore "&7(R-Click)" to close then run [execute player command "block"]
  12. format slot 13 of player with redstone named "&cRedstone Items" with lore "&7(R-Click)" to close then run [execute player command "redstone"]
  13. format slot 15 of player with diamond named "&bMiscellaneous" with lore "&7(R-Click)" to close then run [execute player command "misc"]
  14.  
  15. command /block:
  16. trigger:
  17. wait 3 ticks
  18. open chest with 3 rows named "&6Normal Blocks &e-" to player
  19. format slot 0 of player with gray glass named "&7" to close
  20. format slot 8 of player with gray glass named "&7" to close
  21. format slot 9 of player with gray glass named "&7" to close
  22. format slot 17 of player with gray glass named "&7" to close
  23. format slot 18 of player with gray glass named "&7" to close
  24. format slot 26 of player with gray glass named "&7" to close
  25. format slot 1 of player with grass named "&6Grass" with lore "&8&m---------- || &eCost: &6$125 || &eAmmount: &616x" to run [execute player command "grass"]
  26. format slot 2 of player with stone named "&6Stone" with lore "&8&m---------- || &eCost: &6$250 || &eAmmount: &68x" to run [execute player command "stone"]
  27. format slot 4 of player with 17:0 named "&6Log" with lore "&8&m---------- || &eCost: &6$100 || &eAmmount: &64x" to run [execute player command "log"]
  28. format slot 3 of player with cobble stone named "&6Cobblestone" with lore "&8&m---------- || &eCost: &6$125 || &eAmmount: &632x" to run [execute player command "cobblestone"]
  29. format slot 5 of player with sand named "&6Sand" with lore "&8&m---------- || &eCost: &6$250 || &eAmmount: &68x" to run [execute player command "sand"]
  30. format slot 6 of player with sandstone named "&6Sandstone" with lore "&8&m---------- || &eCost: &6$350 || &eAmmount: &616x" to run [execute player command "sandstone"]
  31.  
  32. command /redstone:
  33. trigger:
  34. wait 3 ticks
  35. open chest with 3 rows named "&6Redstone Blocks &e-" to player
  36. format slot 0 of player with gray glass named "&7" to close
  37. format slot 8 of player with gray glass named "&7" to close
  38. format slot 9 of player with gray glass named "&7" to close
  39. format slot 17 of player with gray glass named "&7" to close
  40. format slot 18 of player with gray glass named "&7" to close
  41. format slot 26 of player with gray glass named "&7" to close
  42. format slot 1 of player with redstone named "&6Redstone Dust" with lore "&8&m---------- || &eCost: &6$125 || &eAmmount: &616x" to run [execute player command "redstonedust"]
  43. format slot 2 of player with 33:0 named "&6Piston" with lore "&8&m---------- || &eCost: &6$250 || &eAmmount: &68x" to run [execute player command "piston"]
  44. format slot 4 of player with observer named "&6Observer" with lore "&8&m---------- || &eCost: &6$250 || &eAmmount: &64x" to run [execute player command "observer"]
  45. format slot 3 of player with hopper named "&6Hopper" with lore "&8&m---------- || &eCost: &6$350 || &eAmmount: &64x" to run [execute player command "hopper"]
  46.  
  47. command /grass:
  48. trigger:
  49. if {balance::%player%} is greater or equal to 125:
  50. send "&6&lRunes &8| &eSuccesfully bought 16x Grass."
  51. give player 16 grass
  52. remove 125 from {balance::%player%}
  53. else:
  54. send "&6&lRunes &8| &eYou need more cash to buy this item."
  55.  
  56. command /redstonedust:
  57. trigger:
  58. if {balance::%player%} is greater or equal to 125:
  59. send "&6&lRunes &8| &eSuccesfully bought 16x Redstone Dust."
  60. give player 16 redstone
  61. remove 125 from {balance::%player%}
  62. else:
  63. send "&6&lRunes &8| &eYou need more cash to buy this item."
  64.  
  65. command /stone:
  66. trigger:
  67. if {balance::%player%} is greater or equal to 250:
  68. send "&6&lRunes &8| &eSuccesfully bought 8x Stone."
  69. give player 8 stone
  70. remove 250 from {balance::%player%}
  71. else:
  72. send "&6&lRunes &8| &eYou need more cash to buy this item."
  73.  
  74. command /piston:
  75. trigger:
  76. if {balance::%player%} is greater or equal to 250:
  77. send "&6&lRunes &8| &eSuccesfully bought 8x Piston."
  78. give player 8 33:0
  79. remove 250 from {balance::%player%}
  80. else:
  81. send "&6&lRunes &8| &eYou need more cash to buy this item."
  82.  
  83. command /log:
  84. trigger:
  85. if {balance::%player%} is greater or equal to 100:
  86. send "&6&lRunes &8| &eSuccesfully bought 4x Log."
  87. give player 4 17:0
  88. remove 100 from {balance::%player%}
  89. else:
  90. send "&6&lRunes &8| &eYou need more cash to buy this item."
  91.  
  92. command /observer:
  93. trigger:
  94. if {balance::%player%} is greater or equal to 250:
  95. send "&6&lRunes &8| &eSuccesfully bought 4x Observer."
  96. give player 4 observer
  97. remove 250 from {balance::%player%}
  98. else:
  99. send "&6&lRunes &8| &eYou need more cash to buy this item."
  100.  
  101. command /hopper:
  102. trigger:
  103. if {balance::%player%} is greater or equal to 350:
  104. send "&6&lRunes &8| &eSuccesfully bought 4x Hopper."
  105. give player 4 Hopper
  106. remove 350 from {balance::%player%}
  107. else:
  108. send "&6&lRunes &8| &eYou need more cash to buy this item."
  109.  
  110. command /cobblestone:
  111. trigger:
  112. if {balance::%player%} is greater or equal to 125:
  113. send "&6&lRunes &8| &eSuccesfully bought 32x Cobblestone."
  114. give player 32 Cobble stone
  115. remove 125 from {balance::%player%}
  116. else:
  117. send "&6&lRunes &8| &eYou need more cash to buy this item."
  118.  
  119. command /sand:
  120. trigger:
  121. if {balance::%player%} is greater or equal to 250:
  122. send "&6&lRunes &8| &eSuccesfully bought 8x Sand."
  123. give player 8 Sand
  124. remove 250 from {balance::%player%}
  125. else:
  126. send "&6&lRunes &8| &eYou need more cash to buy this item."
  127.  
  128. command /sandstone:
  129. trigger:
  130. if {balance::%player%} is greater or equal to 350:
  131. send "&6&lRunes &8| &eSuccesfully bought 16x Sandstone."
  132. give player 16 sandstone
  133. remove 350 from {balance::%player%}
  134. else:
  135. send "&6&lRunes &8| &eYou need more cash to buy this item."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement