0% found this document useful (0 votes)
11 views1 page

Discord Moderation Bot Commands Guide

Uploaded by

afeusbah
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

Discord Moderation Bot Commands Guide

Uploaded by

afeusbah
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

import discord

from [Link] import commands

intents = [Link]()

bot = [Link](command_prefix='PR!', intents=intents)

@[Link]
async def on_ready():
print(f'Bot de Moderação logado como {[Link]}')

@[Link]()
@commands.has_permissions(kick_members=True)
async def kick(ctx, member: [Link], *, motivo=None):
await [Link](reason=motivo)
await [Link](f'{[Link]} foi expulso. Motivo: {motivo}')

@[Link]()
@commands.has_permissions(ban_members=True)
async def ban(ctx, member: [Link], *, motivo=None):
await [Link](reason=motivo)
await [Link](f'{[Link]} foi banido. Motivo: {motivo}')

@[Link]()
async def clear(ctx, quantidade: int):
await [Link](limit=quantidade + 1)
await [Link](f'{quantidade} mensagens apagadas.', delete_after=5)

[Link]('SEU_TOKEN_MODERACAO')

You might also like