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
Raw Normal View History

local about = {}
2016-08-25 14:47:51 +02:00
local bot = require('miku.bot')
about.command = 'about'
about.doc = '`Sendet Informationen über den Bot.`'
function about:init(config)
2016-09-11 13:29:48 +02:00
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 = {
2016-08-25 14:35:11 +02:00
'^/about$',
'^/start$'
2016-08-14 16:30:06 +02:00
}
end
function about:action(msg, config)
utilities.send_message(msg.chat.id, about.text, true, msg.message_id, true)
end
return about