UNPKG

el-bot

Version:

A quick qq bot framework for mirai.

11 lines (8 loc) 258 B
import type { Bot } from 'el-bot' export default function (ctx: Bot) { const mirai = ctx.mirai mirai.on('message', (msg) => { if (msg.plain.toLowerCase() === 'el psy congroo') msg.reply('这一切都是命运石之门的选择……') }) }