Skip to content

Instantly share code, notes, and snippets.

@Painezor
Painezor / Checks.py
Last active April 18, 2024 05:22
Built-in Checks for the commands extension of discord py
@commands.guild_only()
# Command cannot be used in private messages.
@commands.dm_only()
# Command can only be used in private messages.
@commands.is_owner()
# Command can only be used by the bot owner.
@commands.is_nsfw()
@SapphicCode
SapphicCode / discrimchanger.py
Last active August 6, 2019 19:24
A simple discrim changer for Discord
import discord
import asyncio
USERNAME = ''
PASSWORD = ''
TOKEN = ''
class Bot(discord.Client):
def __init__(self, **kwargs):