+Added Log File Output

Changed Log to output to a file
This commit is contained in:
Alex Stewart
2019-04-20 23:32:56 -07:00
parent 30ed670218
commit 2a19124011
5 changed files with 258 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
local time = os.time();
function plugin(message)
if(message.match("purple"))then
local response = os.time() - time;
time = os.time();
return response;
end
return nil;
end