“Utwórz polecenie 8ball w Discord.py” Kod odpowiedzi

Utwórz polecenie 8ball w Discord.py

import discord, random
from discord.ext import commands

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

@bot.event
def on_ready():
  print('Bot is online!')

@bot.command(aliases=['8ball'])
async def _8ball(ctx, *, q):
  responses = ['yes', 'no', 'maybe', '...', 'problably not', 'ok']
  await ctx.send(f'Question: {q}\n Answer: {random.choice(responses)}')

bot.token("your bot's token here")
The DevKid

Discord.py 8ball

"""
Put the ball object under the bot object
"""
@bot.command()
async def ball(ctx, *, question):
 await ctx.send(bot.ball.response(question)
Open Otter

Odpowiedzi podobne do “Utwórz polecenie 8ball w Discord.py”

Pytania podobne do “Utwórz polecenie 8ball w Discord.py”

Więcej pokrewnych odpowiedzi na “Utwórz polecenie 8ball w Discord.py” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu