@commands.command(aliases = ["pin"])
@commands.cooldown(1, 60, commands.BucketType.user)
async def ping(self, ctx):
await ctx.channel.purge(limit = 1)
emb = discord.Embed (title = 'Пинг: {0} ms'.format(client.latency * 1000), colour = discord.Color.gold())
await ctx.send(embed = emb,delete_after=30)
@Client.event
async def on_ready():
while True:
try:
channel = await Client.fetch_channel(input("id Канала: "))
await channel.send(content=input("Ваше сообщение: ")
except Exception:
print("Не хватает прав")
async def test(ctx, *, user_id: int):
user = await Client.fetch_user(user_id=user_id)
await user.send('test')
@Client.command()
async def help(ctx):
emb1 = discord.Embed(title="Информация о командах", color=random.randint(1, 16777216))
emb1.add_field(name = f"`{PREFIX}help` : ", value="Вызовет это меню", inline=False)
message = await ctx.send(embed = emb1)
@Client.command()
async def help(ctx):
await ctx.send(f"ваш текст") #перенос строки осуществляется добавлением: \n без кнопки Enter!