|
|
@echo off |
|
|
color 3f |
|
|
cls |
|
|
|
|
|
:Redownload |
|
|
|
|
|
echo Downloading Legendary [https://github.com/derrod/legendary] |
|
|
|
|
|
if not exist C:\Windows\System32\legendary.exe ( |
|
|
powershell -Command "Invoke-WebRequest https://github.com/derrod/legendary/releases/download/0.20.33/legendary.exe -Outfile C:\Windows\System32\legendary.exe" |
|
|
|
|
|
) |
|
|
|
|
|
cls |
|
|
|
|
|
:Start |
|
|
|
|
|
echo - Bloatless Fortnite Launcher 1.2 Made by Sincey |
|
|
echo - Credits [https://github.com/derrod/legendary] |
|
|
echo: |
|
|
|
|
|
echo 1. Login Epic Account |
|
|
echo 2. Logout current Epic Account |
|
|
echo 3. Download and Install Fortnite |
|
|
echo 4. Update Fortnite |
|
|
echo 5. Launch Fortnite |
|
|
echo 6. Clear Logs |
|
|
echo 7. Redownload Launcher [Troubleshooting] |
|
|
echo 8. Fix infinite loading cutscene and DirectX12 error [Troubleshooting] |
|
|
|
|
|
echo: |
|
|
|
|
|
set /p Choice=Choice: |
|
|
|
|
|
cls |
|
|
|
|
|
if "%Choice%"=="1" ( |
|
|
|
|
|
echo LOGS: |
|
|
legendary auth |
|
|
echo: |
|
|
|
|
|
) else if "%Choice%"=="2" ( |
|
|
|
|
|
echo LOGS: |
|
|
legendary auth --delete |
|
|
echo: |
|
|
|
|
|
) else if "%Choice%"=="3" ( |
|
|
|
|
|
cls |
|
|
echo 1. Download with HTTPS [Slow but secure] |
|
|
echo 2. Download without HTTPS and more memory priority [Fast but insecure] |
|
|
echo 3. Download without HTTPS and max memory priority [32GB RAM] [Very fast but risky] |
|
|
echo: |
|
|
CHOICE /C 123 /M "Choice: " |
|
|
cls |
|
|
echo LOGS: |
|
|
if ERRORLEVEL 3 legendary install fortnite --no-https --max-shared-memory 4098 |
|
|
if ERRORLEVEL 2 legendary install fortnite --no-https --max-shared-memory 2048 |
|
|
if ERRORLEVEL 1 legendary install fortnite |
|
|
echo: |
|
|
|
|
|
) else if "%Choice%"=="4" ( |
|
|
|
|
|
echo LOGS: |
|
|
legendary update fortnite |
|
|
echo: |
|
|
|
|
|
) else if "%Choice%"=="5" ( |
|
|
|
|
|
echo LOGS: |
|
|
legendary launch fortnite |
|
|
echo: |
|
|
|
|
|
) else if "%Choice%"=="6" ( |
|
|
|
|
|
cls |
|
|
|
|
|
) else if "%Choice%"=="7" ( |
|
|
|
|
|
cls |
|
|
del /f C:\Windows\System32\legendary.exe |
|
|
goto Redownload |
|
|
|
|
|
) else if "%Choice%"=="8" ( |
|
|
echo LOGS: |
|
|
mkdir "C:\Users\%Username%\AppData\Local\FortniteGame\Saved\Config\WindowsClient\" |
|
|
powershell -Command "Invoke-WebRequest https://cdn.discordapp.com/attachments/1131737855601946655/1143248970450215053/GameUserSettings.ini -Outfile C:\Users\%Username%\AppData\Local\FortniteGame\Saved\Config\WindowsClient\GameUserSettings.ini" |
|
|
echo: |
|
|
) else ( |
|
|
|
|
|
echo LOGS: |
|
|
echo Invalid choice |
|
|
echo: |
|
|
goto Start |
|
|
|
|
|
) |
|
|
|
|
|
goto Start |