bot/src/Client.ts

33 lines
881 B
TypeScript
Raw Normal View History

2023-01-23 13:53:02 +00:00
import { ActivityType, Client, GatewayIntentBits } from 'discord.js'
import ChatBot from './ChatBot'
import { join } from 'node:path'
import 'dotenv/config'
export default class MuffinAI extends Client {
private chatBot = new ChatBot(join(__dirname, '..', 'db', 'db.sqlite3'))
public constructor() {
super({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
],
})
}
public override login(): Promise<string> {
this.once('ready', client => {
client.user!.setActivity({
type: ActivityType.Playing,
name: 'ㅅ살려주세요..!',
})
}).on('messageCreate', async msg => {
if (msg.author.bot) return
if (!msg.content.startsWith('머핀아 ')) return
await this.chatBot.getResponse(msg)
})
return super.login()
}
}