xpyct_bot/main.py

280 lines
8.5 KiB
Python
Raw Normal View History

2021-10-05 14:06:16 +02:00
from webserver import keep_alive
import os
import nextcord
from nextcord.ext import commands
import json
import requests
2021-10-19 16:55:59 +02:00
import random
import asyncio
2021-10-20 10:34:44 +02:00
from urllib.parse import quote_plus
2021-10-20 13:07:59 +02:00
import youtube_dl
2021-10-22 15:13:48 +02:00
from dotenv import load_dotenv
load_dotenv()
2021-10-20 13:07:59 +02:00
2021-10-05 14:06:16 +02:00
2021-10-19 16:57:37 +02:00
PREFIX = "$"
2021-10-14 09:12:25 +02:00
bot = commands.Bot(command_prefix=PREFIX, description="Hi")
bot.remove_command("help")
2021-10-05 14:06:16 +02:00
2021-10-22 15:09:45 +02:00
version = "Bot v2.1"
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
@bot.event
async def on_ready():
2021-10-19 17:28:42 +02:00
print(f"Bot logged as {bot.user} | {version}")
await bot.change_presence(status=nextcord.Status.online,activity=nextcord.Game("$help"))
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
@bot.command()
async def help(ctx):
2021-10-19 17:28:42 +02:00
await ctx.send(
2021-10-20 13:07:59 +02:00
f"**My commands**: {PREFIX}help | {PREFIX}ping | {PREFIX}clear | {PREFIX}hello | {PREFIX}github | {PREFIX}ver | {PREFIX}say | {PREFIX}serverinfo | {PREFIX}clean | {PREFIX}send_m | **Games**: $guess, $headortails | **Music**: $play, $join, $leave"
2021-10-19 17:28:42 +02:00
)
print(
f"[Logs:utils] Информация о командах бота была выведена | {PREFIX}help"
)
@bot.command(aliases=[
"Ping",
"PING",
"pING",
"ping",
"Пинг",
"ПИНГ",
"пИНГ",
"пинг",
"Понг",
"ПОНГ",
"пОНГ",
"понг",
])
2021-10-14 09:12:25 +02:00
async def __ping(
ctx,
): # Объявление асинхронной функции __ping с возможностью публикации сообщения
2021-10-19 17:28:42 +02:00
ping = bot.ws.latency # Получаем пинг клиента
2021-10-14 09:12:25 +02:00
2021-10-19 17:28:42 +02:00
ping_emoji = "🟩🔳🔳🔳🔳" # Эмоция пинга, если он меньше 100ms
2021-10-05 14:06:16 +02:00
2021-10-19 17:28:42 +02:00
if ping > 0.10000000000000000:
ping_emoji = "🟧🟩🔳🔳🔳" # Эмоция пинга, если он больше 100ms
2021-10-05 14:06:16 +02:00
2021-10-19 17:28:42 +02:00
if ping > 0.15000000000000000:
ping_emoji = "🟥🟧🟩🔳🔳" # Эмоция пинга, если он больше 150ms
2021-10-05 14:06:16 +02:00
2021-10-19 17:28:42 +02:00
if ping > 0.20000000000000000:
ping_emoji = "🟥🟥🟧🟩🔳" # Эмоция пинга, если он больше 200ms
2021-10-05 14:06:16 +02:00
2021-10-19 17:28:42 +02:00
if ping > 0.25000000000000000:
ping_emoji = "🟥🟥🟥🟧🟩" # Эмоция пинга, если он больше 250ms
2021-10-05 14:06:16 +02:00
2021-10-19 17:28:42 +02:00
if ping > 0.30000000000000000:
ping_emoji = "🟥🟥🟥🟥🟧" # Эмоция пинга, если он больше 300ms
2021-10-05 14:06:16 +02:00
2021-10-19 17:28:42 +02:00
if ping > 0.35000000000000000:
ping_emoji = "🟥🟥🟥🟥🟥" # Эмоция пинга, если он больше 350ms
2021-10-14 09:12:25 +02:00
2021-10-19 17:28:42 +02:00
message = await ctx.send(
"Пожалуйста, подождите. . ."
) # Переменная message с первоначальным сообщением
await message.edit(
content=f"Понг! {ping_emoji} `{ping * 1000:.0f}ms` :ping_pong:"
) # Редактирование первого сообщения на итоговое (На сам пинг)
print(
f"[Logs:utils] На данный момент пинг {ping * 1000:.0f}ms | {PREFIX}ping"
) # Вывод пинга в консоль
2021-10-05 14:06:16 +02:00
@bot.command()
async def hello(ctx):
2021-10-19 17:28:42 +02:00
author = ctx.message.author
await ctx.send(f"Привет, {author.mention}!")
print(f"[Logs:utils] Приветствие было выведено | {PREFIX}hello")
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
@bot.command()
async def ver(ctx):
2021-10-19 17:28:42 +02:00
await ctx.send(f"{version} | Сделано CreeperXP#0363")
print(f"[Logs:utils] Информация о боте была выведена | {PREFIX}ver")
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
@bot.command()
async def say(ctx, *, text):
2021-10-19 17:28:42 +02:00
await ctx.message.delete()
author = ctx.message.author
username = author.name
develop = "CreeperXP"
if username == develop:
await ctx.message.delete()
await ctx.send(embed=nextcord.Embed(description=text))
print(f"[Logs:utils] Сообщение пересказано ботом | {PREFIX}say")
else:
await ctx.send("Ты не разработчик бота!")
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
@bot.command()
async def time(ctx):
2021-10-19 17:28:42 +02:00
await ctx.send(f"{ctime}")
print(f"[Logs:utils] Время было выведено: {ctime} | {PREFIX}time")
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
@bot.command()
async def serverinfo(ctx):
2021-10-19 17:28:42 +02:00
role_count = len(ctx.guild.roles)
serverinfoEmbed = nextcord.Embed(color=ctx.author.color)
serverinfoEmbed.add_field(name="Название",
value=f"{ctx.guild.name}",
inline=False)
serverinfoEmbed.add_field(name="Кол-во юзеров",
value=f"{ctx.guild.member_count}",
inline=False)
serverinfoEmbed.add_field(
name="Уровень безопасности",
value=f"{ctx.guild.verification_level}",
inline=False,
)
serverinfoEmbed.add_field(name="Кол-во ролей",
value=f"{role_count}",
inline=False)
serverinfoEmbed.add_field(name="ID сервера",
value=f"{ctx.guild.id}",
inline=False)
await ctx.send(embed=serverinfoEmbed)
2021-10-05 14:06:16 +02:00
2021-10-07 12:22:25 +02:00
@bot.command()
async def userinfo(ctx, user: nextcord.User):
2021-10-19 17:28:42 +02:00
user_id = user.id
username = user.name
avatar = user.avatar.url
await ctx.send(f"ID: {user_id} | NICK: {username}\n{avatar}")
print(
f"[Logs:utils] Информация о {username} была выведена | {PREFIX}userinfo"
)
2021-10-14 09:12:25 +02:00
2021-10-07 12:22:25 +02:00
2021-10-22 15:09:45 +02:00
@bot.command(aliases = ['clear', 'purge'])
2021-10-05 14:06:16 +02:00
async def clean(ctx, amount=None):
2021-10-22 15:09:45 +02:00
await ctx.channel.purge(limit=int(amount) + 1)
2021-10-19 17:28:42 +02:00
print(f"[Logs:utils] {amount} сообщений удалено | {PREFIX}clean")
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
class Confirm(nextcord.ui.View):
2021-10-19 17:28:42 +02:00
def __init__(self):
super().__init__()
self.value = None
@nextcord.ui.button(label="Да", style=nextcord.ButtonStyle.danger)
async def confirm(self, button: nextcord.ui.Button,
interaction: nextcord.Interaction):
await interaction.response.send_message(
"https://github.com/CreeperXP/xpyct_bot", ephemeral=True)
self.value = True
self.stop()
@nextcord.ui.button(label="Нет", style=nextcord.ButtonStyle.blurple)
async def cancel(self, button: nextcord.ui.Button,
interaction: nextcord.Interaction):
await interaction.response.send_message("Ну ладно :(", ephemeral=True)
self.value = False
self.stop()
2021-10-05 14:06:16 +02:00
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
@bot.command()
async def github(ctx):
2021-10-19 17:28:42 +02:00
view = Confirm()
await ctx.send("Перейти на GiHub?", view=view)
2021-10-05 14:06:16 +02:00
2021-10-19 17:28:42 +02:00
await view.wait()
2021-10-05 14:06:16 +02:00
2021-10-19 17:28:42 +02:00
if not view.value == None:
print("Timed Out")
if view.value == True:
print("Ссылка выведена")
if view.value == False:
print("Ссылка не выведена")
print(f"[Logs:utils] Ссылка на GitHub была выведена | {PREFIX}github")
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
@bot.command()
async def send_m(ctx, member: nextcord.Member, *, text):
2021-10-19 17:28:42 +02:00
await ctx.message.delete()
author = ctx.message.author
user_name = author.name
develop = "CreeperXP"
if user_name == develop:
await member.send(f"От {ctx.author.name}:",
embed=nextcord.Embed(description=text))
print(
f"[Logs:utils] Сообщение от {ctx.author.name} было отправлено {member.name} | {PREFIX}send_m"
)
else:
await ctx.send("Ты не разработчик бота!")
time.sleep(7)
await ctx.message.delete()
2021-10-14 09:12:25 +02:00
2021-10-05 14:06:16 +02:00
2021-10-08 13:08:49 +02:00
@bot.command()
async def mute(ctx):
2021-10-19 17:28:42 +02:00
await ctx.send(file=nextcord.File("leopold-vd.mp4"))
2021-10-14 09:12:25 +02:00
2021-10-19 17:28:42 +02:00
2021-10-20 10:34:44 +02:00
class Google(nextcord.ui.View):
def __init__(self, query: str):
super().__init__()
query = quote_plus(query)
url = f'https://www.google.com/search?q={query}'
self.add_item(nextcord.ui.Button(label='Google', url=url))
class Yandex(nextcord.ui.View):
def __init__(self, query: str):
super().__init__()
query = quote_plus(query)
url = f'https://yandex.ua/search/?text={query}'
self.add_item(nextcord.ui.Button(label='Яндекс', url=url))
@bot.command(aliases = ["поиск", "гугл"])
async def google(ctx, *, query: str):
await ctx.reply(f'Результаты запроса `{query}`', view=Google(query))
@bot.command(aliases = ['яндекс', "yndx"])
async def yandex(ctx, *, query: str):
await ctx.reply(f'Результаты запроса `{query}`', view=Yandex(query))
2021-10-20 13:07:59 +02:00
2021-10-22 15:09:45 +02:00
#COGS
2021-10-20 13:07:59 +02:00
2021-10-20 10:34:44 +02:00
2021-10-19 17:28:42 +02:00
@bot.command() ## Стандартное объявление комманды
async def load(ctx, extensions): ## объявление функции
bot.load_extension(f'cogs.{extensions}') ## загрузка доплонений
await ctx.send("loaded")
2021-10-19 16:27:25 +02:00
@bot.command()
async def unload(ctx, extensions):
2021-10-19 17:28:42 +02:00
bot.unload_extension(f"cogs.{extensions}")
await ctx.send('unloaded')
2021-10-19 16:27:25 +02:00
@bot.command()
async def reload(ctx, extensions):
2021-10-19 17:28:42 +02:00
bot.unload_extension(f"cogs.{extensions}") # отгружаем ког
bot.load_extension(f"cogs.{extensions}") # загружаем
await ctx.send('reloaded')
2021-10-19 16:27:25 +02:00
2021-10-19 16:55:59 +02:00
for filename in os.listdir("./cogs"):
2021-10-19 17:28:42 +02:00
if filename.endswith(".py"):
bot.load_extension(f"cogs.{filename[:-3]}")
2021-10-08 13:08:49 +02:00
2021-10-05 14:06:16 +02:00
keep_alive()
2021-10-19 17:28:42 +02:00
bot.run(os.getenv("DISCORD_TOKEN"))