8000 GitHub - bl-irtus/Selfcord at patch-10
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bl-irtus/Selfcord

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Selfcord

A discord selfbot API wrapper (WIP)

Example usage:

import selfcord

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

@bot.on("ready")
async def ball(time):
    print(f"Connected To {bot.user.name}")

@bot.cmd(description = "Hi", aliases = ["hello"])
async def hi(ctx):
    await ctx.reply("Hi")

@bot.cmd()
async def delete(ctx):
    await ctx.message.delete()

@bot.on("message_create")
async def reply(message):
    if message.content == "Hi":
        await message.channel.send("hi")

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