kamilqq
07-22-2015, 02:04 PM
I've got some question, is it able to store variables or anything like tables etc in *.txt file.
i made that script but it seems not to work.
Module.New('tester', function(mod)
file = io.open("C:/plik.txt", "w")
a = 150
if file then
print("if is true")
file:write(a .. "\n")
a = a + 1
mod:Delay(8000)
print(a)
end
end)
i made that script but it seems not to work.
Module.New('tester', function(mod)
file = io.open("C:/plik.txt", "w")
a = 150
if file then
print("if is true")
file:write(a .. "\n")
a = a + 1
mod:Delay(8000)
print(a)
end
end)