owengombas / discord.ts

🤖 Create your discord bot by using TypeScript and decorators!
https://owencalvin.github.io/discord.ts/
325 stars 40 forks source link

Can't find a way to post an embeded message #47

Closed Anshrk closed 3 years ago

Anshrk commented 3 years ago

I couldn't find a way to send embed message, i created an embed using discord.js but couldn't send it cause

channel.send()

didn't have an embed parameter

AndyClausen commented 3 years ago

This is not a feature specific for discord.ts, but rather discord.js as you said yourself. channel.send takes a parameter of either a string or obj. To send an embed, do channel.send({embed: myEmbed}). Please check out the discord.js docs, it will answer most questions like this one.

Anshrk commented 3 years ago

oh, that works, thank you for the help