function Install()
shell.run("rom/apis/win/install")
end
Heres what i put to start it
WCE.Install()
And heres the error i get:
WCE:2: attempt to index ? (a nil value)
Please help!
Posted 26 October 2013 - 03:20 PM
function Install()
shell.run("rom/apis/win/install")
end
WCE.Install()
Posted 26 October 2013 - 03:25 PM
Posted 26 October 2013 - 04:15 PM
-- the API
function Install(shell)
shell.run("rom/apis/win/install")
end-- the program WCE.Install(shell)
Posted 28 October 2013 - 04:25 PM
function del(file)
if fs.isDir("RecycleBin") then
else
fs.makeDir("RecycleBin")
end
if fs.exists(file) then
fs.copy(file,"RecycleBin/"..file)
fs.delete(file)
else
error("No Such File")
end
end
Posted 28 October 2013 - 04:35 PM
0 members, 2 guests, 0 anonymous users