def check_if_it_is_me(ctx):
return ctx.message.author.id == 85309593344815104 #id человека
@bot.command()
@commands.check(check_if_it_is_me) #проверка от того ли человека пришла команда
async def only_for_me(ctx):
#делаете что-то
@bot.command()
@commands.has_any_role('Moder','admin', 492212595072434186)
async def command(ctx):
#и делаете что-то
@bot.message_handler(commands=['admins'])
def admin(message):
if message.chat.id == 123456789: # Вместо 123456789 напиши свой ID, только не ставь кавычки!
bot.send_message(message.chat.id, 'Вы в Админ-Панели!')
else:
bot.send_message(message.chat.id, 'Нет ДОСТУПА Обратитесь к Администрации!')