selfBot Guide
Builder
redEmbed, a Service Powering a Way for Developers to Use Embeds in a Discord selfBot.
Send Embeds Using Custom Built Web Embeds, with the Red Mods API.
This is the Official redEmbed Documentation.
Since they are Web Embeds, There are Limitations.
- No Footers.
- Max 340 Characters in a Description / Title.
Generate a Embed URL Using the redEmbed API:
@bot.command()
async def embed(ctx, embedTitle, embedDescription, embedURL, embedHexColorCode, hidden, embedImage):
# Prepare the data to send
data = {
'embedTitle': embedTitle,
'embedDescription': embedDescription,
'embedURL': embedURL,
'embedHexColorCode': embedHexColorCode,
'hidden': hidden, # Include the hidden parameter
'embedImage': embedImage
}
# Send a POST request to the PHP backend
response = requests.post('https://redsmods.com/api/redEmbed.php', data=data)
# Parse the JSON response
result = response.json()
if 'url' in result:
await ctx.send(f'Here is your embed link: {result["url"]}')
else:
await ctx.send(f'Error: {result["error"]}')
Sending a Basic Embed as a Message:
@bot.command()
async def sendEmbed(ctx):
redEmbed = "GENERATED_REDEMBED_LINK_HERE" # Embed Link To Display
await ctx.message.delete() # Deletes the Message that Executes the Command
await ctx.send(redEmbed) # Send Embed
Below are the latest updates and patch notes: