Advertisement
fantadada

88

May 7th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. rednet.open("left")
  2. m = peripheral.wrap("back")
  3. while true do
  4. message = rednet.receive()
  5.  
  6. if message == "silot1" then
  7. break
  8. end
  9. m.setCursorPos("1,1)
  10. m.write(""..message)
  11.  
  12. m.setCursorPos(5,5)
  13. m.setTextScale(2)
  14.  
  15. m.write("5")
  16. sleep(1)
  17. m.clear()
  18. m.write("4")
  19. sleep(1)
  20. m.clear()
  21. m.write("3")
  22. sleep(1)
  23. m.clear()
  24. m.write("2")
  25. sleep(1)
  26. m.clear()
  27. m.write("1")
  28. sleep(1)
  29. m.clear()
  30. m.write("0")
  31. sleep(1)
  32. m.clear()
  33. sleep(3)
  34.  
  35. end
  36. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement