Files
KittyBot/plugins/forbiddenword.lua
T
2019-04-20 23:42:25 -07:00

11 lines
201 B
Lua

local time = os.time();
function plugin(message)
if(string.match(message, "purple"))then
local response = os.time() - time;
time = os.time();
return response;
end
return nil;
end