Advertisement
Guest User

startup

a guest
Jul 27th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1.   rednet.open("bottom")
  2.   print("Warte auf Fernsteuerung...")
  3.   id = 0
  4.  
  5.   while id ~= 23 do
  6.     id, cmd = rednet.receive()
  7.     if cmd ~= "" then
  8.       print("test")
  9.       shell.run(cmd)
  10.       shell.run("reboot")
  11.     end
  12.   end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement