You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -25,7 +23,9 @@ This selfbot was made in python using a requests library that you have to instal
25
23
26
24
- Customizable message delay
27
25
- 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
29
29
- more features are going to be added in the future
30
30
31
31
## Installation process
@@ -35,7 +35,7 @@ Instructions on setting up your project locally. Include prerequisites, installa
35
35
<h3>Step 1.</h3>
36
36
37
37
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.
39
39
40
40
<h3>Step 2.</h3>
41
41
@@ -49,14 +49,25 @@ pip install requests
49
49
50
50
If you succesfuly completed these steps, its time to look into the code. Open the selfbot.py and replace those lines with valid values:
51
51
```bash
52
-
url = ""#HERE GOES YOUR REQUEST URL
52
+
# Add your user token and channels directly in the code
image_folder_path ="resources/images"# Replace with your folder path
63
+
55
64
```
56
65
- 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.
57
66
58
67
- 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
59
68
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
+
60
71
<h3>Step 4</h3>
61
72
62
73
Run the program and enjoy :)
@@ -67,15 +78,13 @@ Run the program and enjoy :)
67
78
68
79
<h3>In the near future:</h3>
69
80
<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>
73
83
</ul>
74
84
75
85
<h3>Late future plans:</h3>
76
86
<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>
79
87
<li>Bot mod bypassing</li>
88
+
<li>Overall better performance and optimalization</li>
0 commit comments