Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions start_bot.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ chcp 65001
echo.
pushd %~dp0

::Attempts to start py launcher without relying on PATH
::Attempts to start py launcher by not relying on PATH
%SYSTEMROOT%\py.exe --version > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO attempt
%SYSTEMROOT%\py.exe -3 selfbot.py
Expand All @@ -18,7 +18,7 @@ py.exe -3 selfbot.py
PAUSE
GOTO end

::As a last resort, attempts to start whatever Python there is
::As a last resort, attempts to start whichever version of Python there is
:lastattempt
python.exe --version > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO message
Expand Down