Simp-O-Matic

Dumb Discord bot in TS.
git clone git://git.knutsen.co/Simp-O-Matic
Log | Files | Refs | README | LICENSE

crabbing.ts (285B)


1
2
3
4
5
6
7
8
9
import { MessageAttachment } from 'discord.js';

export default (homescope: HomeScope) => {
	const { message } = homescope;
	const attached = new MessageAttachment(
		'./lib/resources/crabbing.jpg',
		'crabbing.jpg');
	message.channel.send('Danny, having a jolly time.', attached);
};