Initial commit

This commit is contained in:
unknown
2026-06-06 01:22:00 +02:00
commit f07fa412f0
132 changed files with 22246 additions and 0 deletions

35
Rose-Stealerv1/build.bat Normal file
View File

@@ -0,0 +1,35 @@
@echo off
color 4
setlocal EnableDelayedExpansion
title Looking for Python...
where python >nul 2>nul
if errorlevel 1 (
echo Python is not installed. Please install it over this link, but also make sure to add it to PATH. Then restart this file.
echo https://www.python.org/ftp/python/3.11.6/python-3.11.6-amd64.exe
pause
exit
) else (
echo Python is installed.
)
title Creating venv...
echo Creating venv...
python -m venv rosevenv
title Entering venv...
echo Entering venv...
call rosevenv\Scripts\activate
title Installing packages...
echo Installing packages...
echo This may take a while. Be pacient!
python -m pip install --upgrade --ignore-installed -r resources\data\requirements.txt
title Starting builder...
echo Starting builder...
start /min cmd.exe /c "python resources\ui\builder.py"
endlocal
pause