We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d82dd99 commit 3365e49Copy full SHA for 3365e49
1 file changed
command/roleplay/beijar.py
@@ -0,0 +1,18 @@
1
+import discord
2
+from discord.ext import commands
3
+from discord import app_commands
4
+
5
+intents = discord.Intents.default()
6
+intents.members = True
7
8
+bot = commands.Bot(command_prefix='+', intents=intents)
9
10
+@bot.tree.command(name="beijar", description="Beije alguém")
11
+async def beijar(interaction: discord.Interaction, usuario: discord.Member):
12
+ embed = discord.Embed(
13
+ title="💥 Alerta de Beijo!",
14
+ description=f"{interaction.user.mention} beijou {usuario}!"
15
+ )
16
17
18
+ await interaction.response.send_message(embed=embed)
0 commit comments