“Python Discord Bot” Ответ

Как сделать бот -разногласий в Python

import discord
from discord.ext import commands

client = commands.Bot(command_prefix=".")

@client.event
async def on_ready():
    print("Ready!")

bot.run("TOKEN")
LUNA#6969

Питон Дискорд

import discord

class MyClient(discord.Client):
    async def on_ready(self):
        print('Logged on as', self.user)

    async def on_message(self, message):
        # don't respond to ourselves
        if message.author == self.user:
            return

        if message.content == 'ping':
            await message.channel.send('pong')

client = MyClient()
client.run('token')
Dralion

Пример Discord Bot Python

from multiprocessing.connection import Client
from urllib import response
import discord
import random
import os






TOKEN = 'YOUR TOKEN'

client = discord.Client()

@client.event
async def on_ready():
    print('I have logged in as {0.user} '.format(client))


    

@client.event
async def on_message(message):
    username = str(message.author).split('#')[0]
    user_message = str(message.content)
    channel = str(message.channel.name)
    print(f'{username}: {user_message} ({channel})')
    

    if message.author == client.user:
        return
    
    if message.channel.name == 'YOUR CHANNEL':
        if user_message.lower() == 'hello':
            await message.channel.send(f'Hello {username}!')
            return 
        elif user_message.lower() == 'bye':
            await message.channel.send(f'See you later {username}.')
            return 
        
    
    if message.channel.name == 'YOUR CHANNEL':
        if user_message.lower() == '.random':
            response = f'This is your random number: {random.randrange(1000000000)}'
            await message.channel.send(response)
            return
        elif user_message.lower() == '.help':
            response = f'This is a list of all availabe commands: 1. .random (Displays you a random number) 2. .help (Displays you a list with all avaiable commands)'
            await message.channel.send(response)
            return
        elif user_message.lower() == '.ping':
            response = f'**Pong**'
            await message.channel.send(response)
            return
        




client.run(TOKEN)
Gamerul PRO

Python Discord Bot

import discord
from discord.ext import commands
bot = commands.Bot("!")
@bot.command()
async def test(ctx):
   print('hello')
bot.run('token')
Light Locust

Discord Python Application Bot

q_list = [
    'What is your favorite color?',
    'Is the Sky Blue?',
    'Am I the best bot ever?'
]

a_list = []


@client.command(aliases=['staff-application'])
async def staff_application(ctx):
    a_list = []
    submit_channel = client.get_channel(<your channel id>)
    channel = await ctx.author.create_dm()

    def check(m):
        return m.content is not None and m.channel == channel

    for question in q_list:
        sleep(.5)
        await channel.send(question)
        msg = await client.wait_for('message', check=check)
        a_list.append(msg.content)

    submit_wait = True
    while submit_wait:
        await channel.send('End of questions - "submit" to finish')
        msg = await client.wait_for('message', check=check)
        if "submit" in msg.content.lower():
            submit_wait = False
            answers = "\n".join(f'{a}. {b}' for a, b in enumerate(a_list, 1))
            submit_msg = f'Application from {msg.author} \nThe answers are:\n{answers}'
            await submit_channel.send(submit_msg)
Dizzy Dragonfly

Discord Bot Python

from nextcord.ext import commands

bot = commands.Bot(command_prefix='$')

@bot.command()
async def test(ctx):
    pass

# or:

@commands.command()
async def test(ctx):
    pass

bot.add_command(test)
Felipe RRPCP

Ответы похожие на “Python Discord Bot”

Вопросы похожие на “Python Discord Bot”

Больше похожих ответов на “Python Discord Bot” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования