setup:
make file inifile$
set cursor 0,215
tryagain:
input "What do you want the default USER name to be? (less than 32 char)",owner$
if len(owner$)>32
print "Name is too long!"
goto tryagain
endif
input "What do you want your password to be?",password$
open to write 1,inifile$
write string 1,"1"
write string 1,owner$
write string 1,password$
close file 1
return
Ok what is wrong with that code.....it will not write the string's to a text file.....and yes the file doesnot exist cuz i am deleting it every time myself to test it....and i have a
if file exist(inifile$)=0 then gosub setup
line to see if the file exist.....before it creates it.....