edoreld

Untitled

Oct 12th, 2013
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. monitor=peripheral.wrap("left")
  2.  
  3. while true do
  4. monitor.clear()
  5. w,h=monitor.getSize()
  6. monitor.setTextScale(1)
  7.  
  8. monitor.setCursorPos(1, 1)
  9.  
  10. monitor.write("To Shuttle Station")
  11.  
  12. monitor.setCursorPos(math.ceil((w / 2) - (#"<-----" / 2)), 2)
  13. monitor.write("<-----")
  14.  
  15.  
  16. os.sleep(10)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment