Advertisement
Tommo5261

yesInterface

Jan 7th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. rednet.open("bottom")
  2. term.clear()
  3. term.setCursorPos(1,1)
  4. textutils.slowPrint("== Access Terminal ==")
  5.  
  6. while true do
  7.   term.clear()
  8.   term.setCursorPos(1,1)
  9.   print("== Access Terminal ==")
  10.   input = read()
  11.   rednet.send(279,input)
  12.   term.clear()
  13.   term.setCursorPos(1,1)
  14.   print("== Access Terminal ==")
  15.   print(". . .")
  16.   sleep(0.5)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement