Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Poll command
- @client.command()
- async def poll(ctx, *args):
- mesg = ' '.join(args)
- await ctx.message.delete()
- embed=discord.Embed(title=":ballot_box: Poll", description="Poll time!", color=0x1abc1f)
- embed.add_field(name="Question", value=mesg, inline=True)
- embed.set_footer(text="Made by changedmyname#5663")
- message = await ctx.send(embed=embed)
- await message.add_reaction("✅")
- await message.add_reaction("❌")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement