mirror of
https://github.com/dizedev/Main-tech.git
synced 2026-09-16 21:58:48 +00:00
23 lines
847 B
Python
23 lines
847 B
Python
import disnake
|
|
from disnake.ext import commands
|
|
|
|
|
|
class PingCommands(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@commands.has_any_role(1091637465858715648)
|
|
@commands.slash_command(name="ping", description="Показывает состояние бота")
|
|
async def ping(self, ctx: disnake.AppCommandInteraction):
|
|
if disnake.utils.get(ctx.author.roles, id=1091637465858715648):
|
|
if ctx.channel.id == 1060544039767789639:
|
|
await ctx.send("Понг!")
|
|
else:
|
|
await ctx.send('Вы не можете использовать эту команду в текущем канале.')
|
|
else:
|
|
await ctx.send(f'{ctx.author.mention}, у вас нет роли <@&1060541642450411560>.')
|
|
|
|
|
|
def setup(bot):
|
|
bot.add_cog(PingCommands(bot))
|