Mirror from one discord channel and send it to multiple servers channels #9029
-
Hey so I wanted to create a bot which would mirror my message from one channel to different discord channels using embeds is there a way to do this and send embeds with javascript in python code? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Your best option would be to create a webhook to each of the channels and send the embed to each webhook. You can create the embeds with You propbably also want to use an The quickstart and docs might help if you are new to Discord.py - https://discordpy.readthedocs.io/en/stable/quickstart.html You can also ask on the Discord.py Discord server or search for things that may have been asked before. |
Beta Was this translation helpful? Give feedback.
Your best option would be to create a webhook to each of the channels and send the embed to each webhook.
You can create the embeds with
discord.Embed
and send it using theembed
orembeds
kwarg.You propbably also want to use an
on_message
event override or listener to detect incoming messages and perform the webhook sending there.The quickstart and docs might help if you are new to Discord.py - https://discordpy.readthedocs.io/en/stable/quickstart.html
You can also ask on the Discord.py Discord server or search for things that may have been asked before.