22 lines
601 B
Lua
22 lines
601 B
Lua
local porndoge = {}
|
|
|
|
function porndoge:init(config)
|
|
porndoge.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('pdoge', true).table
|
|
porndoge.doc = [[*
|
|
]]..config.cmd_pat..[[pdoge*]]
|
|
end
|
|
|
|
porndoge.command = 'pdoge'
|
|
|
|
function porndoge:action(msg, config)
|
|
utilities.send_typing(msg.chat.id, 'upload_photo')
|
|
local url = 'https://porndoge.herokuapp.com/'
|
|
local file = download_to_file(url, 'porndoge.png')
|
|
if not file then
|
|
utilities.send_reply(msg, config.errors.connection)
|
|
return
|
|
end
|
|
utilities.send_photo(msg.chat.id, file, nil, msg.message_id)
|
|
end
|
|
|
|
return porndoge |