Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local internet = component.proxy(component.list("internet")())
- local drone=component.proxy(component.list('drone')())
- local res, data, reason, ev, a, b
- local sContent = ""
- function sleep(n)
- local t0 = computer.uptime()
- while computer.uptime() - t0 <= n do computer.pushSignal("wait") computer.pullSignal() end
- end
- while true do
- sleep(0.5)
- drone.setStatusText("F")
- local code, message, header = pcall(internet.request, "http://example.com")
- if pcall(internet.finishConnect) then
- text = message.read()
- drone.setStatusText(text)
- else
- drone.setStatusText("hmm")
- end
- sleep(3)
- drone.setStatusText("T")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement