Skip to content

Commit 3365e49

Browse files
authored
Comando de Beijar *muack*
1 parent d82dd99 commit 3365e49

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

command/roleplay/beijar.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)