Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --opencomputers MineOS
- --https://computercraft.ru/topic/2195-mineos/
- --https://habrahabr.ru/post/272391/
- --https://www.youtube.com/user/EliteClubSessions/videos
- require("component").eeprom.set([[
- local handle, data, chunk = component.proxy(component.list("internet")()).request("https://raw.githubusercontent.com/IgorTimofeev/MineOS/master/Installer/Main.lua"), ""
- while true do
- chunk = handle.read(math.huge)
- if chunk then
- data = data .. chunk
- else
- break
- end
- end
- handle.close()
- load(data)()
- ]])
- require("computer").shutdown(true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement