that saves a single lined file that can be loaded by another program for example
API would be
save.variable("passwordmenu", "5464")
which would generate a file called passwordmenu looking likeset passwordmenu = 5464
end
so i could do
while true do
shell.run("passwordmenu") -- loads the Variables
print("please enter password")
input = io.read("*")
if input == passwordmenu then
print("Welcome")
else
print("invalid input: ", input)
end
end
the variable files could be also used to save Useful variables and load them when the program starts back up again
like passwords and important data Created by the program its self