Skip to content

Commit ea61c1f

Browse files
authored
Update README.md
Changed the readme to match the new code, and updated the todo list.
1 parent e11228a commit ea61c1f

1 file changed

Lines changed: 21 additions & 12 deletions

File tree

README.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
# Discord python selfbot
33

44
A simple discord selfbot written in python.<br><br>
5-
[![License](https://img.shields.io/badge/license-GPL--3.0-blue.svg)](LICENSE)
6-
![GitHub All Releases](https://img.shields.io/github/downloads/owaii/python-selfbot/total.svg)
7-
5+
[![License](https://img.shields.io/badge/license-GPL--3.0-blue.svg)](LICENSE)
86

97

108
## Table of Contents
@@ -25,7 +23,9 @@ This selfbot was made in python using a requests library that you have to instal
2523

2624
- Customizable message delay
2725
- Choosing the words that will be spammed
28-
- Randomizing words to send from the list
26+
- Randomizing words and images to send from the list
27+
- Sending messages/images to multiple channels/dms at once
28+
- Easy to use
2929
- more features are going to be added in the future
3030

3131
## Installation process
@@ -35,7 +35,7 @@ Instructions on setting up your project locally. Include prerequisites, installa
3535
<h3>Step 1.</h3>
3636

3737
You will need to have the newest [python](https://www.python.org/downloads/) installed.
38-
I will include a file to check for python availability on your system.
38+
I will include a [file](https://github.com/owaii/python-selfbot/blob/selfbot/src/resources/dependenciesCheck.bat) to check for python and request library availability on your system.
3939

4040
<h3>Step 2.</h3>
4141

@@ -49,14 +49,25 @@ pip install requests
4949

5050
If you succesfuly completed these steps, its time to look into the code. Open the selfbot.py and replace those lines with valid values:
5151
```bash
52-
url = "" #HERE GOES YOUR REQUEST URL
52+
# Add your user token and channels directly in the code
53+
token = "YOUR_USER_TOKEN"
54+
55+
user_channels = [
56+
"https://discord.com/api/v9/channels/YOUR_CHANNEL_ID_1/messages",
57+
"https://discord.com/api/v9/channels/YOUR_CHANNEL_ID_2/messages"
58+
# Add more channel URLs as needed
59+
5360
[...]
54-
token = "" #HERE GOES YOUR USER TOKEN
61+
62+
image_folder_path = "resources/images" # Replace with your folder path
63+
5564
```
5665
- To get your request url, you need to go to the channel that you are trying to flood and open developer tools. Send a random message and look as there is a new request called "messages". Click on it and search for "Request URL". Copy the link and paste it inside the quotes.
5766
5867
- To get your token, you simply need to do the same as before but search for "Authorization". There will be your token. Copy it and paste it inside the quotes
5968
69+
- To get your image file path just copy the file path of the folder images and copy it in there. It should look similar to this (depends where you store the file): C:\Users\username\Downloads\python-selfbot\src\resources\images
70+
6071
<h3>Step 4</h3>
6172
6273
Run the program and enjoy :)
@@ -67,15 +78,13 @@ Run the program and enjoy :)
6778
6879
<h3>In the near future:</h3>
6980
<ul>
70-
<li>Option to send messages to many channels at once</li>
71-
<li>Option to spam dms</li>
72-
<li>Option to send images</li>
81+
<li>Auto token grabbing, so the user doesn't have to check for it for themselves</li>
82+
<li>List of servers and channels generated for the user's account, so they can move easily between channels to spam</li>
7383
</ul>
7484
7585
<h3>Late future plans:</h3>
7686
<ul>
77-
<li>Auto token grabbing, so the user doesn't have to check for it for themselves</li>
78-
<li>List of servers and channels generated for the user's account, so they can move easily between channels to spam</li>
7987
<li>Bot mod bypassing</li>
88+
<li>Overall better performance and optimalization</li>
8089
</ul>
8190

0 commit comments

Comments
 (0)