Untitled
Anonymous
python
06/29/2024 4:14 AM
648 B
15
Indexable
class BotaoVerificar(discord.ui.View):
def __init__(self):
super().__init__(timeout=None)
self.add_item(ConfigBotao4(label="Verificar", style=discord.ButtonStyle.blurple))
class ConfigBotao4(discord.ui.Button):
def init(self, label, style):
super().__init__(label=label, style=style)
async def callback(self, interaction:discord.Interaction):
#DEFINIR O EVENTO AQUI
verificar = interaction.guild.get_role(id_verificado)Editor is loading...
Leave a Comment