izy521 / discord.io

A small, single-file library for creating DiscordApp clients from Node.js or the browser
https://discord.gg/0MvHMfHcTKVVmIGP
MIT License
535 stars 155 forks source link

Mention a channel in a message #287

Closed MunkyMagick closed 6 years ago

MunkyMagick commented 6 years ago

Is there any way to mention a text channel inside sendMessage so that you get a clickable link?

ahlec commented 6 years ago

Yep. But instead of writing it out like we normally do with #pictures or something like that, you need to send <#channel_id> where channel_id is the id for the channel that you're trying to link. It'll look like a bunch of numbers if you inspect the text, but Discord will parse it and understand it as a link to the appropriate channel.

MunkyMagick commented 6 years ago

Awesome, Thank you!