Oct 11 13 3:31 am
Oct 29 13 3:32 pm
Oct 29 13 8:37 pm
--return true or false depending on whether you wish the
--'Yes' or 'No' path to be taken
function filter(User, Session, Event)
return true;
end
local file = io.open("NATlog.txt", "a")
file:write("Session.ServerIP")
file:close()
Oct 29 13 10:42 pm
local file = io.open("NATlog.txt", "a")
file:write(Session.ServerIP)
file:close()
local file = io.open("NATlog.txt", "a")
line = Session.ServerIP.."\n";
file:write(line)
file:close()