import os
@bot.message_handler(commands=["stop"])
def stop(message):
if message.from_user.username == cfg.Father:
pid = str(os.getpid())
stoper = open('ozerx/stoper.bat', 'w')
stoper.write("Taskkill /PID " + pid + " /F")
stoper.close()
os.system('C:/Users/smp/Desktop/SMP/ozerx/stoper.bat')
else:
bot.send_message(message.chat.id, "Ты не Создатель бота; у тебя нет админ-прав, проваливай!")