About this mod
A simple batch script that checks to see if you have PSO, PerformanceFIx, and EngineMeshUpdater installed, and will execute their respective batch files.
- Permissions and credits
cls
:: Save the current directory
set CURRENT_DIR=%cd%
:: Navigate to 'PSO' subfolder and run 'Particle_fix_installer 3.4.bat'
echo Navigating to PSO folder...
cd PSO
if exist 'Particle_fix_installer 3.4.bat' (
echo Launching Particle_fix_installer 3.4.bat...
call "Particle_fix_installer 3.4.bat"
) else (
echo Particle_fix_installer 3.4.bat not found in PSO folder.
)
cd %CURRENT_DIR%
:: Navigate to 'PerformanceFix' subfolder and run 'FixALL.bat'
echo Navigating to PerformanceFix folder...
cd PerformanceFix
if exist FixALL.bat (
echo Launching FixALL.bat...
call FixALL.bat
) else (
echo FixALL.bat not found in PerformanceFix folder.
)
cd %CURRENT_DIR%
:: Launch 'UpdateMesh.bat'
if exist UpdateMesh.bat (
echo Launching UpdateMesh.bat...
call UpdateMesh.bat
) else (
echo UpdateMesh.bat not found in the current directory.
)
:: Launch 'UpdateSteamMesh.bat'
if exist UpdateSteamMesh.bat (
echo Launching UpdateSteamMesh.bat...
call UpdateSteamMesh.bat
) else (
echo UpdateSteamMesh.bat not found in the current directory.
)
echo Script execution complete.
pause