python
import discord
from discord.ext import commands
intents = discord.Intents.default()
intents.typing = False
intents.presences = False
bot = commands.Bot(command_prefix=’!’, intents=intents)
@bot.event
async def on_ready():
print(f’Logged in as {bot.user.name} ({bot.user.id})’)
@bot.command(name=’ola’)
async def ola(ctx):
await ctx.send(‘Olá! ‘)
bot.run(‘SEU_TOKEN_AQUI’)
” style=”width: 100%; max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 8px;” />
