Oct 03, 2017 Capturing the drama and epic conflict of Star Wars, Battlefront II brings the fight online. Attention to detail and scale make this game a joy to behold, with 16 incredible new battlefronts such as Utapau, Mustafar and the space above Coruscant, as well as the Death Star interior and Tantive IV, Princess Leia's blockade runner seen at the beginning of the original Star Wars. A new Star Wars Battlefront 2 (SWBF2) update 1.34 released for PlayStation 4, Xbox One, and PC players. According to the official Battlefront 2 update 1.34 patch notes, the new update adds Naboo(now available to play on Capital Supremacy), the Droideka as a playable character and the TX-130 as a playable vehicle in the Armor class. STAR WARS: BATTLEFRONT 2 v1.1 ENGLISH NO-DVD PATCH (63.3KB) No-CD & No-DVD Patch troubleshooting: The most common problem getting a No-CD/No-DVD patch to work is ensuring that the No-CD/No-DVD patch matches you're game version, because the games exe is changed when a patch update is applied previous versions won't work. The Unofficial v1.3 Patch is a mod for Star Wars: Battlefront II (the one 2005 roku), created by RDHZerted. Description: This is unofficial fan patch for the game, fixing most of the issues and problems left by original developers.
title SWBF2 UnOfficial v1.3 Patch r83
SET swbf2=D:Program Files (x86)SteamSteamAppscommonStar Wars Battlefront IIGameData
REM setup all the file/folder paths
FOR /F 'tokens=2* delims= ' %%A IN ('REG QUERY 'HKEY_LOCAL_MACHINESOFTWARELucasArtsStar Wars Battlefront II1.0' /v ExePath') DO SET check_xp=%%B
FOR /F 'tokens=2* delims= ' %%A IN ('REG QUERY 'HKEY_LOCAL_MACHINELucasArtsStar Wars Battlefront II1.0' /v ExePath') DO SET check_vista_32=%%B
echo You should have two registry key errors above this line. You can safly ignore them.
IF EXIST '%check_xp%' (SET swbf2=%check_xp%)
IF EXIST '%check_vista_32%' (SET swbf2=%check_vista_32%)
IF EXIST '%check_vista_64%' (SET swbf2=%check_vista_64%)
SET installed=%swbf2%..v1.3patchsettingsinstalled.txt
SET hasHud=%swbf2%..v1.3patchsettingshasHud.txt
SET hasSides=%swbf2%..v1.3patchsettingshasSides.txt
SET noAwards=%swbf2%..v1.3patchsettingsnoAwards.txt
SET noColors=%swbf2%..v1.3patchsettingsnoColors.txt
SET lvl=%swbf2%DATA_LVL_PC
REM
SET retail=.retail
REM Double check for problems
echo.
echo WARNING - Safty check failed:
echo.
echo.
GOTO END
REM auto-install if this batch file is called with the frist argument as '1'
echo ---- Folders ----
REM echo LVL folder: %lvl%
REM echo Installed: %installed%
REM echo Has sides: %hasSides%
echo.
SET /p input=If these folders seem wrong, type 'n' now to cancel or press Enter to continue:
IF '%input%'n' GOTO END
:MAIN_MENU
echo ---- Main Menu ----
IF EXIST '%installed%' GOTO INSTALLED_MENU
echo 1. Install the UnOfficial v1.3 Patch
echo.
:INSTALLED_MENU
IF EXIST '%hasHud%' (echo 3. Remove the HUD changes)
IF NOT EXIST '%hasHud%' (echo 4. Restore the HUD changes)
IF EXIST '%hasSides%' (echo 5. Remove the side changes)
IF NOT EXIST '%hasSides%' (echo 6. Restore the side changes)
IF NOT EXIST '%noAwards%' (echo 7. Disable the award effects)
IF EXIST '%noAwards%' (echo 8. Restore award effects)
IF NOT EXIST '%noColors%' (echo 9. Disable custom map colors)
IF EXIST '%noColors%' (echo 10. Restore custom map colors)
echo.
SET input=badInput
IF '%input%'0' GOTO END
IF '%input%'2' GOTO uninstall
IF '%input%'4' GOTO restoreHud
IF '%input%'6' GOTO restoreSides
IF '%input%'8' GOTO enableAwards
IF '%input%'10' GOTO enableColors
:install
echo Installing...
echo.
echo.
echo.
copy 'stringsv1.3patch_strings.lvl' '%lvl%v1.3patch_strings.lvl'
REM install the preview movie
echo Adding official maps' preview video
copy '.moviepre-movie.mvs' '%lvl%MOVIESpre-movie.mvs'
REM install the settings
echo Updating the settings...
echo This file tells the UnOfficial v1.3 patch's menu system that the v1.3 patch is installed > '%installed%'
echo This file tells the UnOfficial v1.3 patch's menu system that the custom HUD is being used > '%hasHud%'
echo This file tells the UnOfficial v1.3 patch's menu system that the custom sides are being used > '%hasSides%'
IF '%1' '1' GOTO END
GOTO MAIN_MENU
echo.
REM Uninstall the sides
CALL .batsremoveSides.bat
REM Uninstall the lvls
CALL .batsremoveMainLVLs.bat
REM Uninstall the strings
echo Updating the strings...
echo.
del '%lvl%MOVIESpre-movie.mvs'
REM Removing the settings
echo Updating the settings...
IF EXIST '%hasHud%' (del '%hasHud%')
IF EXIST '%noAwards%' (del '%noAwards%')
rmdir '%swbf2%..v1.3patchsettings'
echo.
GOTO MAIN_MENU
echo Updating the HUD
xdelta.exe -d -s '.retailingame.lvl.retail' '.patchingame.lvl_NoHUD_v1.3patch' '%lvl%ingame.lvl'
pause
:removeSides
CALL .batsremoveSides.bat
pause
:enableAwards
del '%noAwards%'
GOTO MAIN_MENU
echo Updating the HUD
xdelta.exe -d -s '.retailingame.lvl.retail' '.patchingame.lvl_v1.3patch' '%lvl%ingame.lvl'
echo This file tells the UnOfficial v1.3 patch's menu system that the custom HUD is being used > '%hasHud%'
GOTO MAIN_MENU
echo.
echo This file tells the UnOfficial v1.3 patch's menu system that the custom sides are being used > '%hasSides%'
GOTO MAIN_MENU
echo Updating award effect settings...
echo Delete this file to renable award effects > '%noAwards%'
GOTO MAIN_MENU
echo Updating map color settings...
echo Delete this file to renable custom map colors > '%noColors%'
GOTO MAIN_MENU
echo Updating map color settings
pause
:END
echo Have a nice day and enjoy.
pause
:STOP