“Buat perintah 8ball di Discord.py” Kode Jawaban

Buat perintah 8ball di 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

Jawaban yang mirip dengan “Buat perintah 8ball di Discord.py”

Pertanyaan yang mirip dengan “Buat perintah 8ball di Discord.py”

Lebih banyak jawaban terkait untuk “Buat perintah 8ball di Discord.py” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya