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/about.lua

29 lines
796 B
Lua

local about = {}
local bot = require('miku.bot')
about.command = 'about'
about.doc = '`Sendet Informationen über den Bot.`'
function about:init(config)
about.text = config.about_text..[[
*Mikubot v]]..bot.version..[[* von *Akamaru*, basierend auf [otouto](https://github.com/topkecleon/otouto) von *topkecleon*.
• [Code auf GitHub](https://github.com/Akamaru/Mikubot-V2)
• [Mikubot Homepage](https://ponywave.de/projekte/mikubot-v2/)
• [Autor Homepage](http://akamaru.de/)
• [Autor in Telegram](https://telegram.me/Akamaru)
• [Mikubot Telegram Kanal](https://telegram.me/Mikubot_Updates)]]
about.triggers = {
'^/about$',
'^/start$'
}
end
function about:action(msg, config)
utilities.send_message(msg.chat.id, about.text, true, msg.message_id, true)
end
return about