OP 05 August, 2021 - 08:35 PM
(This post was last modified: 05 August, 2021 - 08:36 PM by ayez_py. Edited 1 time in total.)
So you wanna know how to make a selfbot?
INTRODUCTION
Well first... learn how to make a standard discord bot. Without the backround knowledge and base you wont be able to re-format it in to the glorious selfbot im teaching you about.
You will be using discord.py You can use this tutorial to get everything setup: https://www.youtube.com/watch?v=nW8c7vT6...M_HybXRPzZ
"Whats a selfbot?"A selfbot is basically a bot inside your own account. It uses your token to post messages as you. It reacts to you and you only.
A token is a small piece of encrypted text. It basically is the key all Discord applications will need to connect to the account the app should run on. That’s why both bot accounts and user accounts have tokens.
Since selfbots have access to the Discord API (Application Programming Interface, a.k.a. the direct link between code and code being able to work on Discord), they can use functions that normally only bots would be able to use, such as the previously mentioned embeds. They can also bypass any restrictions coded only in the client.
JSON FILE
One of the core parts of your selfbot is the configuration file, this is where the backround magic happens. The Json file contains core information for the bot that allows users (and customers) to edit to make the token, prefix, and anything else you add in!
Enough explaining lets start making it.
Open open your text-editor of choice and type this:
Now press "save as" and name it config.json
Now you are on a roll
MAKING THE BOT
Now you should've learned how to make a basic bot we will set your prefix (make sure you have everything imported fella)
Put this in as your prefix code:
(I added in some other little stuff for ya too)
PUT
IN
THE
REST
OF
YOUR
BOT
CODE
Now heres where we end off...
Put in the token code at the end!
DISCLAIMER:
------------------------------------------------------------------
YOU CAN BE BANNED FOR USING A SELFBOT
DONT GET MAD AT ME IF YOU GET PUNISHED
Other then that, have fun!
-ayez
INTRODUCTION
Well first... learn how to make a standard discord bot. Without the backround knowledge and base you wont be able to re-format it in to the glorious selfbot im teaching you about.
You will be using discord.py You can use this tutorial to get everything setup: https://www.youtube.com/watch?v=nW8c7vT6...M_HybXRPzZ
"Whats a selfbot?"A selfbot is basically a bot inside your own account. It uses your token to post messages as you. It reacts to you and you only.
A token is a small piece of encrypted text. It basically is the key all Discord applications will need to connect to the account the app should run on. That’s why both bot accounts and user accounts have tokens.
Since selfbots have access to the Discord API (Application Programming Interface, a.k.a. the direct link between code and code being able to work on Discord), they can use functions that normally only bots would be able to use, such as the previously mentioned embeds. They can also bypass any restrictions coded only in the client.
JSON FILE
One of the core parts of your selfbot is the configuration file, this is where the backround magic happens. The Json file contains core information for the bot that allows users (and customers) to edit to make the token, prefix, and anything else you add in!
Enough explaining lets start making it.
Open open your text-editor of choice and type this:
Code:
{
"token": "TOKEN",
"prefix": "PREFIX"
}
Now press "save as" and name it config.json
Now you are on a roll
MAKING THE BOT
Now you should've learned how to make a basic bot we will set your prefix (make sure you have everything imported fella)
Put this in as your prefix code:
Code:
with open('config.json') as e:
config = json.load(e)
client = commands.Bot(command_prefix = config.get('prefix'), self_bot=True, help_command=None)
PUT
IN
THE
REST
OF
YOUR
BOT
CODE
Now heres where we end off...
Put in the token code at the end!
Code:
with open('config.json') as f:
config = json.load(f)
token = config.get('token')
client.run(f'{token}', bot=False)
DISCLAIMER:
------------------------------------------------------------------
YOU CAN BE BANNED FOR USING A SELFBOT
DONT GET MAD AT ME IF YOU GET PUNISHED
Other then that, have fun!
-ayez
VOLTIC.DEV
+SPOOFED IMAGE UPLOADER
+WORKING VPN
+SPOOFED IMAGE UPLOADER
+WORKING VPN
+MANY DOMAINS TO CHOOSE FROM!
+CUSTOM DOMAINS!
+ALL FREE DOMAINS!
+MULTIPLE LOCATIONS TO CHOOSE FROM
+EASY TO USE GUI
+FAST CONNECT TIME
+FAST CONNECT TIME