Advertisement
sniperwolf1130

SCPsk.new

Apr 1st, 2020
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. on join:
  2. set the join message to "<light purple><bold>""%player%"" joined the server."
  3.  
  4. on quit:
  5. set the quit message to "<gray><bold>""%player%"" left the server."
  6.  
  7. on rightclick on yellow shulker box:
  8. set {_block} to location of event-block
  9. if player's tool is golden ingot:
  10. set the block at {_block} to block of redstone
  11. wait 5 seconds
  12. set the block at {_block} to yellow shulker box
  13. else if player's tool is iron ingot:
  14. set the block at {_block} to block of redstone
  15. wait 5 seconds
  16. set the block at {_block} to yellow shulker box
  17. else if player's tool is diamond:
  18. set the block at {_block} to block of redstone
  19. wait 5 seconds
  20. set the block at {_block} to yellow shulker box
  21. else if player's tool is emerald:
  22. set the block at {_block} to block of redstone
  23. wait 5 seconds
  24. set the block at {_block} to yellow shulker box
  25. else if player's tool is nether brick item:
  26. set the block at {_block} to block of redstone
  27. wait 5 seconds
  28. set the block at {_block} to yellow shulker box
  29.  
  30. on rightclick on white shulker box:
  31. set {_block} to location of event-block
  32. if player's tool is iron ingot:
  33. set the block at {_block} to block of redstone
  34. wait 5 seconds
  35. set the block at {_block} to white shulker box
  36. else if player's tool is diamond:
  37. set the block at {_block} to block of redstone
  38. wait 5 seconds
  39. set the block at {_block} to white shulker box
  40. else if player's tool is emerald:
  41. set the block at {_block} to block of redstone
  42. wait 5 seconds
  43. set the block at {_block} to white shulker box
  44. else if player's tool is nether brick item:
  45. set the block at {_block} to block of redstone
  46. wait 5 seconds
  47. set the block at {_block} to white shulker box
  48.  
  49. on rightclick on blue shulker box:
  50. set {_block} to location of event-block
  51. if player's tool is diamond:
  52. set the block at {_block} to block of redstone
  53. wait 5 seconds
  54. set the block at {_block} to blue shulker box
  55. else if player's tool is emerald:
  56. set the block at {_block} to block of redstone
  57. wait 5 seconds
  58. set the block at {_block} to blue shulker box
  59. else if player's tool is nether brick item:
  60. set the block at {_block} to block of redstone
  61. wait 5 seconds
  62. set the block at {_block} to blue shulker box
  63.  
  64. on rightclick on green shulker box:
  65. set {_block} to location of event-block
  66. if player's tool is emerald:
  67. set the block at {_block} to block of redstone
  68. wait 5 seconds
  69. set the block at {_block} to green shulker box
  70. else if player's tool is nether brick item:
  71. set the block at {_block} to block of redstone
  72. wait 5 seconds
  73. set the block at {_block} to green shulker box
  74.  
  75. on rightclick on red shulker box:
  76. set {_block} to location of event-block
  77. if player's tool is nether brick item:
  78. set the block at {_block} to block of redstone
  79. wait 5 seconds
  80. set the block at {_block} to red shulker box
  81.  
  82. on rightclick on magma block:
  83. if player's tool is iron ingot:
  84. give a gold ingot to the player
  85. remove a iron ingot from the player
  86.  
  87. on break:
  88. cancel event
  89. message "<aqua>そのブロックの名前は%name of block%です"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement