Advertisement
Kodos

Untitled

Jun 5th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. component = require("component")
  2. io = require("io")
  3. os = require("os")
  4. term = require("term")
  5.  
  6. gpu = component.gpu
  7. ci = component.cipher
  8. scr = component.screen
  9. w, h = component.gpu.getResolution()
  10.  
  11. term.write("What would you like echoed back to you? ")
  12. i = io.read()
  13. term.clear()
  14. term.setCursor(w / 2 - (38 / 2) - #i / 2, h / 2)
  15. print("You asked to have " .. i .. " echoed back to you.")
  16. os.sleep(5)
  17. term.clear()
  18. term.setCursor(1, 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement