-
Kizdar net |
Kizdar net |
Кыздар Нет
Проблема с запуском телеграмм бота на Python!
Написал Эхо-бота для тг бота для теста, python: can't open file 'C:\\WINDOWS\\system32\\bot.py': [Errno 2] No such file or directory Сверху то, что выводит …
How do i make a working slash command in discord.py
Feb 17, 2022 · I am trying to make a slash command with discord.py I have tried a lot of stuff it doesn't seem to be working. Help would be appreciated.
How to call a function in discord.py bot when script starts but not ...
Oct 25, 2022 · if you have a discord.py bot sometimes the bot goes offline and logs in again. Thats not really a problem but i want my script to automatically call a function when it started …
python - Permission System for Discord.py Bot - Stack Overflow
I am in the process of making a discord bot using discord.py and asyncio. The bot has commands like kick and ban which obviously should not be available to normal users. I want to make a …
Checking if selected user is a bot. (discordpy) - Stack Overflow
Jan 14, 2022 · I am making a giveaway command, and would like to check if a randomly selected user is a bot or not. How exactly can I do that? user = discord.Member if not user.bot: winner = …
How to change activity of a discord.py bot? - Stack Overflow
Dec 1, 2019 · I want to change the bot status from playing to watching. I've tried this but it's still playing status: import discord from discord.ext.commands import Bot from discord.ext import …
python - How do I use cogs with discord.py? - Stack Overflow
Nov 29, 2018 · I have quite a large bot for Discord written up. It has over 1000 lines of code. When I researched how to do it on Youtube and here, nothing seems to be working. I was wondering …
python - Discord.py Bot to exe file - Stack Overflow
May 9, 2024 · You can generate a single file (.exe) with auto-py-to-exe, use the --one-file flag or in the GUI select One file.
How do I make my discord.py bot use custom emoji?
Aug 23, 2018 · How can I make my bot use my custom emoji in any discord server? @bot.command(pass_context=True) async def ping(ctx): msg = "Pong :CustomEmoji: …
Discord.py bot stays active even after code is stopped
Jan 25, 2021 · I am making a discord bot in python. At one point in coding the bot, it stopped updating, it kept using old code. Then I realized the bot never stopped. I kicked it and reinvited …