Added startup files

System recognition for ComputerCraft
startup file for ComputerCraft
master
Zocker1999NET 8 years ago
parent 7edf37b783
commit e8e204dd83

@ -0,0 +1,25 @@
--!startup.lua
--!by Zocker1999_NET
-- This file creates a sand-box and runs the mindows core inside.
-- If an error appeers, it will catch the error and print details to the screen.
-- It detectes the system type and pushes this information to the kernel
local sysType = "" -- cc / oc-nothing / oc-openos
if type(_HOST) == "string" and _HOST:sub(1,13) == "ComputerCraft" then
sysType = "cc"
end
if sysType = "" then
error("Unable to detect system type")
end
local coroutine = _ENV.coroutine
if sysType:sub(1,2) == "oc" and coroutine == nil then
end
local thread = coroutine.create()
local function resume(...)
local ok,err = coroutine.
end

@ -0,0 +1,3 @@
-- ComputerCraft Startup File
-- For a auto-start experience
shell.run("/mindows/startup.lua")
Loading…
Cancel
Save