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/miku/plugins/porndoge.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