writing file to LM/HL can be done easily by:
or read:
but how write/read this file from javascript?
ps. great idea Sandstrand
Code:
io.writefile(filename, text_of_file)
Code:
local f = assert(io.open(filename, "r"))
local t = f:read("*all")
but how write/read this file from javascript?
ps. great idea Sandstrand