Advertisement
Guest User

welcome_message

a guest
Mar 4th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. rednet.open("back") -- Get modem behind computer open
  2.  
  3. monitor = peripheral.wrap ("right")
  4.  
  5. monitor.clear()
  6. monitor.setTextScale(3)
  7. monitor.setCursorPos(6,2)
  8. monitor.write("Welcome to the") -- Write welcome text
  9. monitor.setCursorPos(4,3)
  10. monitor.write("Nexus Minecraft CCA")
  11.  
  12.  
  13. print("Enter your command")
  14. while true do -- Wait for a learner to write the escape command that will be broadcast to the escape turtle
  15. command = read()
  16. rednet.broadcast(command)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement