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/shrug.lua
dupie ef5469f62a shrug & lenny now reply to a replied message
fewer parsing errors with dogify
help now triggered with /start
2015-07-08 16:01:15 -04:00

18 lines
199 B
Lua

local PLUGIN = {}
PLUGIN.triggers = {
'/shrug'
}
function PLUGIN.action(msg)
if msg.reply_to_message then
msg = msg.reply_to_message
end
send_msg(msg, '¯\\_(ツ)_/¯')
end
return PLUGIN