Originally posted by BioHazard
View Post

luac -s input.lua (outputs default luac.out - debugging stripped) luac -s -o output.luac input.lua (ditto with custom ouput name) luac -o myLuacStripped.luac myLuaScript.lua (custom ouput name - no stripping)
local file = io.open("output.luac","wb"); input = loadfile("input.lua"); output = string.dump(input); file:write(output); file:close();
Leave a comment: