8000 GitHub - bl-irtus/Selfcord: A discord selfbot API wrapper (WIP) - need contributors :pleading_face:
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

A discord selfbot API wrapper (WIP) - need contributors 🥺

Notifications You must be signed in to change notification settings

bl-irtus/Selfcord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
7CC8
 
 
 
 
 
 
 
 

Repository files navigation

Selfcord

A discord selfbot API wrapper (WIP)

Example usage:

import selfcord

token = "token"
bot = selfcord.Bot(prefixes=["!"])

@bot.on("ready")
async def ball(time):
    print(f"{bot.user.name}\nTook {time * 1000:2f}ms to start up")

@bot.on("message_create")
async def invite_checker(message):
    if message.content.startswith("discord.gg"):
        await aprint(message.content)

@bot.cmd(description="ping pong", aliases=["test"])
async def ping(ctx):
    await ctx.reply(f"pong!")


bot.run(token)

About

A discord selfbot API wrapper (WIP) - need contributors 🥺

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0