Skip to content

Commit e11228a

Browse files
authored
quick update to the UPDATE
Changed the bat from the old one (i forgot to upload the right one lol) to the new one that has a new feature checking for the python request library. And also added the folder that i forgot to add called images where all of the images will be stored.
1 parent b67e74d commit e11228a

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

src/resources/dependenciesCheck.bat

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,17 @@
22

33
python -c "import sys" >nul 2>&1
44
if %errorlevel% neq 0 (
5-
echo Python is not installed or is not available in PATH. Install the newest python from here: https://www.python.org/downloads/
5+
echo Python is not installed or is not available in PATH. Install the newest Python from here: https://www.python.org/downloads/
6+
pause
7+
exit /b 1
68
)
79

10+
python -c "import requests" >nul 2>&1
11+
if %errorlevel% neq 0 (
12+
echo Python is installed, but the 'requests' library is not. Install it by running: pip install requests
13+
pause
14+
exit /b 1
15+
)
16+
17+
echo Python is installed, and the 'requests' library is available.
818
pause
11.5 KB
Loading

src/selfbot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def main():
7171
image_path = os.path.join(image_folder_path, random.choice(images))
7272
send_files_in_parallel(token, user_channels, image_path)
7373

74-
# time.sleep(1) <-- uncomment to change the time between sending each message
74+
# time.sleep(1) <-- uncomment to change the time between sending each message, ex: time.sleep(5)
7575

7676
print(f"{repeat_count} messages/images sent to {len(user_channels)} channels. Wait 5 seconds before resending.")
7777
time.sleep(5)

0 commit comments

Comments
 (0)