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.

Jul 27th, 2013
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. title SWBF2 UnOfficial v1.3 Patch r83
  2. SET swbf2=D:Program Files (x86)SteamSteamAppscommonStar Wars Battlefront IIGameData
  3. REM setup all the file/folder paths
  4. FOR /F 'tokens=2* delims= ' %%A IN ('REG QUERY 'HKEY_LOCAL_MACHINESOFTWARELucasArtsStar Wars Battlefront II1.0' /v ExePath') DO SET check_xp=%%B
  5. FOR /F 'tokens=2* delims= ' %%A IN ('REG QUERY 'HKEY_LOCAL_MACHINELucasArtsStar Wars Battlefront II1.0' /v ExePath') DO SET check_vista_32=%%B
  6. echo You should have two registry key errors above this line. You can safly ignore them.
  7. IF EXIST '%check_xp%' (SET swbf2=%check_xp%)
  8. IF EXIST '%check_vista_32%' (SET swbf2=%check_vista_32%)
  9. IF EXIST '%check_vista_64%' (SET swbf2=%check_vista_64%)
  10. SET installed=%swbf2%..v1.3patchsettingsinstalled.txt
  11. SET hasHud=%swbf2%..v1.3patchsettingshasHud.txt
  12. SET hasSides=%swbf2%..v1.3patchsettingshasSides.txt
  13. SET noAwards=%swbf2%..v1.3patchsettingsnoAwards.txt
  14. SET noColors=%swbf2%..v1.3patchsettingsnoColors.txt
  15. SET lvl=%swbf2%DATA_LVL_PC
  16. REM
  17. SET retail=.retail
  18. REM Double check for problems
  19. echo.
  20. echo WARNING - Safty check failed:
  21. echo.
  22. echo.
  23. GOTO END
  24. REM auto-install if this batch file is called with the frist argument as '1'
  25. echo ---- Folders ----
  26. REM echo LVL folder: %lvl%
  27. REM echo Installed: %installed%
  28. REM echo Has sides: %hasSides%
  29. echo.
  30. SET /p input=If these folders seem wrong, type 'n' now to cancel or press Enter to continue:
  31. IF '%input%'n' GOTO END
  32. :MAIN_MENU
  33. echo ---- Main Menu ----
  34. IF EXIST '%installed%' GOTO INSTALLED_MENU
  35. echo 1. Install the UnOfficial v1.3 Patch
  36. echo.
  37. :INSTALLED_MENU
  38. IF EXIST '%hasHud%' (echo 3. Remove the HUD changes)
  39. IF NOT EXIST '%hasHud%' (echo 4. Restore the HUD changes)
  40. IF EXIST '%hasSides%' (echo 5. Remove the side changes)
  41. IF NOT EXIST '%hasSides%' (echo 6. Restore the side changes)
  42. IF NOT EXIST '%noAwards%' (echo 7. Disable the award effects)
  43. IF EXIST '%noAwards%' (echo 8. Restore award effects)
  44. IF NOT EXIST '%noColors%' (echo 9. Disable custom map colors)
  45. IF EXIST '%noColors%' (echo 10. Restore custom map colors)
  46. echo.
  47. SET input=badInput
  48. IF '%input%'0' GOTO END
  49. IF '%input%'2' GOTO uninstall
  50. IF '%input%'4' GOTO restoreHud
  51. IF '%input%'6' GOTO restoreSides
  52. IF '%input%'8' GOTO enableAwards
  53. IF '%input%'10' GOTO enableColors
  54. :install
  55. echo Installing...
  56. echo.
  57. echo.
  58. echo.
  59. copy 'stringsv1.3patch_strings.lvl' '%lvl%v1.3patch_strings.lvl'
  60. REM install the preview movie
  61. echo Adding official maps' preview video
  62. copy '.moviepre-movie.mvs' '%lvl%MOVIESpre-movie.mvs'
  63. REM install the settings
  64. echo Updating the settings...
  65. echo This file tells the UnOfficial v1.3 patch's menu system that the v1.3 patch is installed > '%installed%'
  66. echo This file tells the UnOfficial v1.3 patch's menu system that the custom HUD is being used > '%hasHud%'
  67. echo This file tells the UnOfficial v1.3 patch's menu system that the custom sides are being used > '%hasSides%'
  68. IF '%1' '1' GOTO END
  69. GOTO MAIN_MENU
  70. echo.
  71. REM Uninstall the sides
  72. CALL .batsremoveSides.bat
  73. REM Uninstall the lvls
  74. CALL .batsremoveMainLVLs.bat
  75. REM Uninstall the strings
  76. echo Updating the strings...
  77. echo.
  78. del '%lvl%MOVIESpre-movie.mvs'
  79. REM Removing the settings
  80. echo Updating the settings...
  81. IF EXIST '%hasHud%' (del '%hasHud%')
  82. IF EXIST '%noAwards%' (del '%noAwards%')
  83. rmdir '%swbf2%..v1.3patchsettings'
  84. echo.
  85. GOTO MAIN_MENU
  86. echo Updating the HUD
  87. xdelta.exe -d -s '.retailingame.lvl.retail' '.patchingame.lvl_NoHUD_v1.3patch' '%lvl%ingame.lvl'
  88. pause
  89. :removeSides
  90. CALL .batsremoveSides.bat
  91. pause
  92. :enableAwards
  93. del '%noAwards%'
  94. GOTO MAIN_MENU
  95. echo Updating the HUD
  96. xdelta.exe -d -s '.retailingame.lvl.retail' '.patchingame.lvl_v1.3patch' '%lvl%ingame.lvl'
  97. echo This file tells the UnOfficial v1.3 patch's menu system that the custom HUD is being used > '%hasHud%'
  98. GOTO MAIN_MENU
  99. echo.
  100. echo This file tells the UnOfficial v1.3 patch's menu system that the custom sides are being used > '%hasSides%'
  101. GOTO MAIN_MENU
  102. echo Updating award effect settings...
  103. echo Delete this file to renable award effects > '%noAwards%'
  104. GOTO MAIN_MENU
  105. echo Updating map color settings...
  106. echo Delete this file to renable custom map colors > '%noColors%'
  107. GOTO MAIN_MENU
  108. echo Updating map color settings
  109. pause
  110. :END
  111. echo Have a nice day and enjoy.
  112. pause
  113. :STOP
RAW Paste Data
May 23, 2016 . It just install and we have 1.3 unoficial patch? Reply Good ... The mod itself goes directly into the star wars battlefront II folder under steam.
Swbf2 1.3 Patch
May 28, 2018 . The normal settings are on, which most users would prefer for the unofficial 1.3 Patch. This is intended to be for if people have problems with ...
Oct 3, 2017 . UnOfficial Patch v1.3 is now compatible with multiplayer patch by GOG. ... Star Wars Battlefront II ... are the enhanced 1.3 sides in this?
Jul 2, 2015 . SWB2 Unofficial Patch 1.3 Installation Tutorial! (HD Graphics & More! :) Check out more SWB2: ...Duration: 5:05 Posted: Jul 2, 2015
Apr 15, 2015 . With the Unofficial 1.3 patch, players first of all can play Battlefront II with a complete set of visual upgrades, just as seen in the 1.2 patch.
Oct 4, 2017 . here is the link to the new 1.3 Patch for the new Update of Battlefront 2. ... Star Wars: Battlefront 2 (Classic, 2005). All Discussions Screenshots Broadcasts Videos ... No, it's just the unofficial 1.3 patch for the new update. #5.

Swbf2 1.3 Patch

I went and downloaded the 1.3 Patch and ran the installer, everything works fine ... /star-wars-battlefront-ii/downloads/the-unofficial-v13-patch-revision-129-final.
The 1.3 patch is unofficial and does not support the Steam/GOG multiplayer version. The last official version of the game is Patch 1.1 (Multiplayer Update 2). You ...
Hidden mod. This mod has been set to hidden. The reason given by the author is: Game Front is now back online. Due to issues with other websites, they've ...
How to install swbf2 1.3 patchSwbf2 1.3 Patch

Swbf2 1.3 Patch Steam

The Unofficial v1.3 Patch is a mod for Star Wars: Battlefront II (the one 2005 roku), created by [RDH]Zerted. Star Wars Battlefront 2 Patch Notes; Swbf2 1 3 Patch ...