local triggers = {
['¯\\_(ツ)_/¯'] = '/shrug$',
['( ͡° ͜ʖ ͡°)'] = '/lenny$',
['(╯°□°)╯︵ ┻━┻'] = '/flip$',
['┌(┌ ^o^)┐'] = '/homo$',
['ಠ_ಠ'] = '/look$'
}
local action = function(msg)
local message = string.lower(msg.text)
for k,v in pairs(triggers) do
if string.match(message, v) then
message = k
end
if msg.reply_to_message then
send_msg(msg.reply_to_message, message)
else
send_message(msg.chat.id, message)
-- The following block of code will generate a list of reactions add the trigger "/reactions" to display it.
-- Thanks to @Imandaneshi for the idea and early implementation.
local help = ''
if v ~= '^/reactions?' then
help = help .. v:gsub('%$', ': ') .. k .. '\n'
triggers[help] = '^/reactions'
return {
triggers = triggers,
action = action