1
0
forked from keinBot/cuffeo

typescript schmypescript

This commit is contained in:
2025-03-18 09:55:57 +01:00
parent f7ac8ae5cd
commit 52d79e0763
52 changed files with 1948 additions and 891 deletions

15
src/clients/irc/invite.ts Normal file
View File

@@ -0,0 +1,15 @@
import { Bot, Message, User } from "../../types";
export default (bot: Bot) => {
bot._cmd.set("INVITE", (msg: Message) => {
const user: User = bot.parsePrefix(msg.prefix);
const channel: string = msg.params[1];
if(!bot.server.channel.has(channel)) {
bot.join(channel);
setTimeout(() => {
bot.send(`PRIVMSG ${channel} :Hi. Wurde von ${user.nick} eingeladen.`);
}, 1000);
}
});
};