ctcp wrapper function example
This commit is contained in:
parent
02d221ff4c
commit
e0b38cb708
@ -1,5 +1,6 @@
|
||||
import { IRCBot } from '../bot';
|
||||
import {
|
||||
applyCTCP,
|
||||
applyTextColor,
|
||||
wrapFormattedText,
|
||||
} from '../utility/message-formatting';
|
||||
@ -65,6 +66,11 @@ bot.on('message', ({ message, to, nickname }) => {
|
||||
return;
|
||||
}
|
||||
|
||||
if (message.startsWith('!hug')) {
|
||||
bot.send(to, applyCTCP(`hugs ${nickname}`));
|
||||
return;
|
||||
}
|
||||
|
||||
if (message.startsWith('!names')) {
|
||||
bot.names(to).then(console.log);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user