Python
1
Вклад в тег
#ctx.author - имя автора #test#0000, ctx.author.id id юзера
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='$')
@bot.command()
async def ping(ctx):
await ctx.send('pong')
bot.run(TOKEN)