Advertisement
Guest User

open_door

a guest
Jul 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. id = os.getComputerID()
  2. while true do
  3. term.clear()
  4. term.setCursorPos(1,1)
  5. rednet.open("top")
  6. print("Tapez votre commande")
  7. msg = io.read()
  8.  
  9.     if msg == ("stop") then
  10.         os.reboot()
  11.     else
  12.         rednet.send(8,id,msg)
  13.     end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement