Swbf2 1.3 Patch

Jul 27th, 2013

Aug 12, 2019 swbf2 remaster 1.3 r5 This full version has been archived by the uploader because it is out of date and no longer supported. We recommend you browse the file list for the latest full version. Swbf2 remaster 1.3 r5 This full version has been archived by the uploader because it is out of date and no longer supported. We recommend you browse the file list for the latest full version.

Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
Swbf2
  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

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. Apart from this, Battlefront 2 patch 1.34 adds a new appearance for Anakin Skywalker, General Skywalker. Check out full details below.

Previously, a big update was released which reduced the Anakin’s effectiveness in modes like Capital Supremacy and Galactic Assault, where he can cut through troopers too easily while retaining his capabilities when facing off against a villain. Unfortunately, since the last update, many players are still experiencing a number of issues when trying to play the game. Today’s Star Wars Battlefront 2 patch 1.34 update is expected to fix all these issues.

Star Wars Battlefront 2 (SWBF2) Update 1.34 Patch Notes

FEATURES

  • Naboo – Theed is now available to play on Capital Supremacy.
  • Added the Droideka as a playable character in the Enforcer class in the prequel era.
  • Star Wars Battlefront 2 update 1.34 added the TX-130 as a playable vehicle in the Armor class in the prequel era.
  • A new appearance for Anakin Skywalker, General Skywalker, is now available to unlock for Credits and Crystals.
  • More Clone Trooper appearances are now available (41st Scout Battalion, 212th Recon Division) to unlock for Credits and Crystals.

QUALITY OF LIFE

  • Improved readability of Front End messages.
  • Improved messaging when offers include both emotes and the corresponding voice line.

HERO CHANGES

  • Various visual improvements to the Lightsaber blades for all heroes, adding pointed tips and improving their brightness.

BLASTER HEROES

  • Blaster Heroes can now crouch.
Patch

HERO HEALTH STAR CARDS
Community Request: Adjusted the values of Health on Defeat Star Cards to be consistent across all heroes. Heal values upon defeating enemy heroes have been changed:

  • Anakin Skywalker’s “Reprisal” Star Card values from 30-60-90-120 to 40-60-80-100
  • Count Dooku’s “Rising Power” Star Card values from 50-70-90-110 to 40-60-80-100
  • Iden Versio’s “Friend In Battle” Star Card values from 40-50-60-70 to 40-60-80-100
  • Rey’s “Survivor” Star Card values from 30-40-50-60 to 40-60-80-100
  • Emperor Palpatine’s “Lightning Absorption” Star Card values from 10-15-20-25 to 40-60-80-100

YODA

  • Adjusted the animation of Yoda’s attacks for speed.

DARTH MAUL

  • Battlefront 2 update 1.34 fixed an issue for Furious Throw where the lightsaber could get stuck in the AT-TE, E-Web, DF9, Hardcell or AAT vehicles.
  • Fixed an issue where Darth Maul’s Spin Attack ability continued to affect enemies if Darth Maul died during the animation.

ANAKIN

  • Anakin is released from the Pull Dominance ability animation sooner.
  • Fixed an issue where the Passionate Strike ability would not inflict lightsaber marks on objects.

GENERAL GRIEVOUS

Swbf2 1.3 patch
  • Fixed an issue where General Grievous was no longer able to block with the Unrelenting Advance ability, if activated after holding the block button.

COUNT DOOKU

  • Star Wars Battlefront 2 update 1.34 fixed an issue where enemies could escape Count Dooku’s Expose Weakness by dashing or doing a combat roll.
  • Fixed an issue where Count Dooku’s body would slightly shake when performing an emote.
  • Fixed an issue where Count Dooku’s right hand thumb was clipping with the hilt of his lightsaber.

OBI-WAN KENOBI

  • Fixed an issue where the Defensive Rush ability would not inflict lightsaber marks on objects.
  • Battlefront 2 1.34 fixed the delay between the animation of the Defensive Rush and the VFX when attacking an enemy who is blocking.

CHEWBACCA

  • Changed “Ground Breaking” Star Card to take effect whenever Chebacca defeats an enemy.

IDEN

  • Change “Friend In Battle” Star Card to take effect whenever Iden defeats an enemy.
  • Fixed an issue where Stun Droid had no functionality when used on an enemy who has a tall asset immediately behind them.
1.3

LUKE SKYWALKER

Swbf2 1.3 Patch

  • Star Wars Battlefront 2 version 1.34 reduced recharge time of Repulse from 20 seconds to 17 seconds.
  • Increased base radius of Repulse from 10 to 12 meters.
  • Changed Luke’s Jedi Fighter Stamina drain decrease from 5-6-8-10 to 20-25-30-35.
  • Adjusted the animation of Luke’s attacks for speed.
  • Fixed an issue where Luke could damage enemies with Rush after dying.
  • Fixed an issue where Luke’s fingers were clipping with his lightsaber hilt when performing the Greetings, Exalted Ones emote.

LEIA ORGANA

  • Fixed an issue where Leia’s hand was clipping with her head whenever she is getting damaged while reloading secondary fire.

EMPEROR PALPATINE

  • Change “Lighting Absorption” Star Card to take effect whenever Emperor Palpatine defeats an enemy.

HAN SOLO

  • Battlefront 2 update 1.34 fixed an issue where Han Solo’s shirt was clipping through his jacket when on low settings.

DARTH VADER

  • Fixed an issue where Darth Vader’s Star Card Fueling the Rage would put the ability on cooldown, when the user eliminated enemies faster than the ability timer would indicate.

KYLO REN

  • Fixed an issue where Kylo Ren could inflict damage on enemies who are blocking with Lightsabers, when using Pull.

CAPTAIN PHASMA

  • Changed Beat Down Star Card to take effect whenever Captain Phasma defeats an enemy.
  • Fixed an issue where the Staff Strikes ability continues to affect enemies if Captain Phasma is defeated during the animation.

FINN

  • Removed sprint prevention during Big Deal.

REY

  • Fixed an issue where Rey’s Dash Strike ability could be triggered twice before the ability ended.

GAME MODE AND MAP CHANGES

  • General: Collision fixes and visual improvements on Jakku, Hoth, Endor, the Dreadnought and in Kashyyyk – Capital Supremacy and Kamino – Capital Supremacy.

CAPITAL SUPREMACY – GROUND PHASE

  • Star Wars Battlefront 2 (SWBF2) update 1.34 fixed a visual issue where a character’s UI bar Health would widen when boarding a transport in the Ground Phase.
  • Fixed an issue where the AI would not fire at a player inside a vehicle.
  • Fixed an issue where the color would occasionally be different between the hologram and the base of the Command Post when a player joins a match late.

CAPITAL SUPREMACY – CAPITAL SHIPS

  • Star Wars Battlefront 2 1.34 fixed an issue where background Starfighters could occasionally be seen when inside the capital ships.
  • Fixed a visual issue where the name of an enemy that sabotages an objective appeared blue (friendly) in the event log.
  • Star Wars Battlefront 2 (SWBF2) update 1.34 added defeat volumes to prevent players from remaining stuck in the slide doors that open only for characters of the opposing team.
  • Fixed lighting bugs in the Dreadnought hangar ceiling.
  • Fixed an issue where the spotlights on the Cooling Room Core ceiling were misplaced.

CAPITAL SUPREMACY – CINEMATICS

  • Fixed various issues with rendering of assets caused by server latency.

CAMPAIGN

Swbf2 1.3 Patch Steam

  • Fixed an issue where players were not able to equip Star Cards.

GALACTIC ASSAULT

  • Star Wars Battlefront 2 (SWBF2) update 1.34 removed Resistance Transport Ships from appearing in the first phase on Jakku.
  • Added gunners inside the LAAT in the Clone intro for Naboo.

KASHYYYK

How To Install Swbf2 1.3 Patch

  • Fixed an issue where some players had reported noticing distorted texture glitches on level terrain.

JAKKU

  • Fixed an issue where the player was able to go outside the playable area by using Boba Fett.

CHANGES TO CLASSES AND SPECIAL UNITS
ENFORCER AND INFILTRATOR

  • Changed the text for the Acquisition milestone to mention both Enforcer and Infiltrator classes.

ARC TROOPER

  • Reverted changes to the fire rate of the left hand, to fix inconsistencies between the two fire rates.

GENERAL CHANGES/MISC

  • Battlefront 2 update 1.34 fixed an issue where selecting the chat channel using the mouse, would cause various issues the chat would not open the last used channel.
  • Added icons indicating the phases for the Clone Trooper appearances on the Customisation screen.
Steam

Star Wars Battlefront 2 (SWBF2) update 1.34 is now available for download.