load vars from a file
Posted: 2008-01-14 14:56:04
is it possible to load some variables from a file?
how?
how?
Code: Select all
Sub ReadFile()
var f=file("C:\test.txt")
var i=0, s="", text=""
f.open()
while not f.eof()
s = safe call f.readln()
text=text+s
wend
f.close()
uo.msgbox(text)
end sub