Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("turtleGeoScanMine.lua")
- -- todo: decide how you want to set the quarry dimension system up,
- -- the orientation of the chest is determined if its a horizontal/vertical mine
- quarryHostID = 0
- function worker()
- id, message = rednet.recieve()
- if id == quarryHostID and message ~= nil and type(message) == "table" then
- turtleGeoScanMine.geoMineList(message)
- rednet.send(id, "done")
- end
- os.exit(1)
- end
- worker()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement