shrug & lenny now reply to a replied message
fewer parsing errors with dogify help now triggered with /start
This commit is contained in:
parent
79f8f9feb2
commit
ef5469f62a
@ -18,6 +18,7 @@ function PLUGIN.action(msg)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local input = string.gsub(input, ' ', '')
|
local input = string.gsub(input, ' ', '')
|
||||||
|
local input = string.lower(input)
|
||||||
|
|
||||||
url = 'http://dogr.io/' .. input .. '.png'
|
url = 'http://dogr.io/' .. input .. '.png'
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ PLUGIN.doc = [[
|
|||||||
PLUGIN.triggers = {
|
PLUGIN.triggers = {
|
||||||
'^/help',
|
'^/help',
|
||||||
'^/h$',
|
'^/h$',
|
||||||
|
'^/start$'
|
||||||
}
|
}
|
||||||
|
|
||||||
function PLUGIN.action(msg)
|
function PLUGIN.action(msg)
|
||||||
|
@ -5,7 +5,13 @@ PLUGIN.triggers = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function PLUGIN.action(msg)
|
function PLUGIN.action(msg)
|
||||||
|
|
||||||
|
if msg.reply_to_message then
|
||||||
|
msg = msg.reply_to_message
|
||||||
|
end
|
||||||
|
|
||||||
send_msg(msg, '( ͡° ͜ʖ ͡°)')
|
send_msg(msg, '( ͡° ͜ʖ ͡°)')
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return PLUGIN
|
return PLUGIN
|
||||||
|
@ -5,7 +5,13 @@ PLUGIN.triggers = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function PLUGIN.action(msg)
|
function PLUGIN.action(msg)
|
||||||
|
|
||||||
|
if msg.reply_to_message then
|
||||||
|
msg = msg.reply_to_message
|
||||||
|
end
|
||||||
|
|
||||||
send_msg(msg, '¯\\_(ツ)_/¯')
|
send_msg(msg, '¯\\_(ツ)_/¯')
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return PLUGIN
|
return PLUGIN
|
||||||
|
Reference in New Issue
Block a user