Advertisement
colhaydutu

prominence wither spawn 1

Nov 12th, 2024
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local startID = 136
  2. local endID = 142
  3. local message = "place"
  4.  
  5.  
  6. rednet.open("back")
  7.  
  8. while true do
  9. if redstone.getInput("front") then
  10. for id = startID, endID do
  11. rednet.send(id, message, "commandChannel")
  12. end
  13.  
  14. while redstone.getInput("front") do
  15. os.sleep(0.1)
  16. end
  17. end
  18.  
  19. os.sleep(0.1)
  20. end
  21.  
  22. rednet.close("back")
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement