mirror of
https://github.com/Kiritow/OpenComputerScripts.git
synced 2024-03-22 13:10:46 +08:00
15 lines
307 B
Lua
15 lines
307 B
Lua
|
-- Auto Crafting Robot Client
|
||
|
-- Requires:
|
||
|
-- Craft upgrade and inventory upgrade
|
||
|
-- Wireless network card
|
||
|
|
||
|
require("libevent")
|
||
|
local component=require("component")
|
||
|
local modem=component.list("modem")
|
||
|
if(modem==nil) then
|
||
|
error("Modem is required")
|
||
|
else
|
||
|
modem=component.proxy("modem")
|
||
|
end
|
||
|
|