Posted 11 March 2013 - 06:50 AM
I'm getting this error
My code:
My code:
--ArchilyOS Setup Coded by NeptunasLT
function complete()
print("Setup Is Completed!")
print("System Reboot in:")
print("3")
sleep(1)
print("2")
sleep(1)
print("1")
sleep(1)
os.reboot()
end
function install()
if fs.exists("/archily") then fs.remove ("/archily")
fs.makeDir("archily")
fs.makeDir("/archily/system")
shell.run("pastebin", "get", "wk0Siumq", "archily/system/gui")
shell.run("pastebin", "get", "UhbCLCVE", "boot")
shell.run("pastebin", "get", "320wmmdy", "archily/system/fLib")
shell.run("pastebin", "get", "HxYuSMHP", "archily/system/file")
shell.run("pastebin", "get", "HaSRpSLH", "archily/system/.background")
shell.run("pastebin", "get", "3ykgdF0g", "archily/system/icon.nfp")
shell.run("pastebin", "get", "m3X2bYjQ", "archily/system/taco")
fs.makeDir("/archily/system/programs")
shell.run("pastebin", "get", "BDSMjPDQ", "archily/system/programs/firewolf")
shell.run("pastebin", "get", "LEWpvT2Z", "archily/system/programs/npaintpro")
shell.run("pastebin", "get", "CRd9f1Ac", "archily/system/update")
shell.run("pastebin", "get", "Mh9LTq2a", "startup")
complete()
end
function license()
lic = "Archily"
print("PLs input license key")
write" "
input = read()
if input == lic then
print("starting installer...")
install()
else
print("Something Bad!")
os.reboot()
end
license()