Posted 01 January 2014 - 06:43 AM
Hey, I'm making a install program for a improvisation of internet:
Thanks for the support!
function installConfig(o)
print("Installing using config: "..o) --this is still WIP
end
print("Choose config:")
print("1. Client")
print("2. Server")
print("3. DNS server")
o = read()
if o=='1' or o=='2' or o=='3' then
installConfig(o)
else
print("There is no such configuration: "..o.."!)
print("Please reboot and enter a correct config!")
reboot
end
but I have this error:
bios:339: [string "install"]:14: '=' expected
Thanks for the support!
Edited on 02 January 2014 - 11:04 AM