Answers for "embed"

1

discord.py unmute

@client.command(description="Unmutes a specified user.")
@commands.has_permissions(manage_messages=True)
async def unmute(ctx, member: discord.Member):
   mutedRole = discord.utils.get(ctx.guild.roles, name="Muted")

   await member.remove_roles(mutedRole)
   await member.send(f" you have unmutedd from: - {ctx.guild.name}")
   embed = discord.Embed(title="unmute", description=f" unmuted-{member.mention}",colour=discord.Colour.light_gray())
   await ctx.send(embed=embed)
Posted by: Guest on December-22-2020
2

embed

if(command === '<The command name>'){
	const embed = new Discord.MessageEmbed();
	.setTitle('Title')
	.setDiscription('Discription')


	message.channel.send(embed)
   
}
Posted by: Guest on November-29-2020
-2

embed

<img src="data:image/png;base64,iVBORw0KGgoAAA
ANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4
//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU
5ErkJggg==" alt="Red dot" />
Posted by: Guest on April-19-2021

Browse Popular Code Answers by Language