is it possible to load some variables from a file?
how?
load vars from a file
Moderators: Murderator+, Murderator
you must create a text file, then:
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