This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/patterns.lua

24 lines
501 B
Lua
Raw Normal View History

2016-02-23 21:50:42 +01:00
-- Shout-out to Kenny, as I didn't want to write this until
-- he upset himself over the very thought of me doing so.
local triggers = {
'^/s/.-/.-/?$'
}
local action = function(msg)
if not msg.reply_to_message then return end
local output = msg.reply_to_message.text or ''
output = output:gsub(
2016-02-23 21:50:42 +01:00
msg.text:match('^/s/(.-)/(.-)/?$')
)
2016-02-23 22:32:34 +01:00
output = 'Did you mean:\n"' .. output:sub(1, 4000) .. '"'
2016-02-23 21:50:42 +01:00
sendReply(msg.reply_to_message, output)
end
return {
triggers = triggers,
action = action
}