Files
KittyBot/plugins/forbiddenword.lua
T
Alex Stewart 2a19124011 +Added Log File Output
Changed Log to output to a file
2019-04-20 23:32:56 -07:00

9 lines
188 B
Lua

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