Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

Seeking Fallout 4 (PC version) bms

Featured Replies

  • Author
  • Localization

x_hiro11, posted Mon Nov 09, 2015 1:30 pm (9472)


Will fallout4.bms, the download link?
  • Author
  • Localization

PlanK69, posted Mon Nov 09, 2015 2:54 pm (9475)


If you could maybe upload one of the .ba2 files, then that would help to get something started?

I'm pretty certain that the .ba2 files of Fallout 4 is a newer version of the .bsa file that Fallout 3 used. So the encryption will almost definitely be different
  • Author
  • Localization

x_hiro11, posted Mon Nov 09, 2015 3:06 pm (9476)


PlanK69 wrote:
If you could maybe upload one of the .ba2 files, then that would help to get something started?

I'm pretty certain that the .ba2 files of Fallout 4 is a newer version of the .bsa file that Fallout 3 used. So the encryption will almost definitely be different



Games not finished download, after the download is complete I will try to find what the .ba2 file. :D
  • Author
  • Localization

PlanK69, posted Mon Nov 09, 2015 5:12 pm (9482)


I can confirm that the videos (cutscenes) in the game is bink .bk2 format. It's relatively easily converted to .avi with 'bink tools'.
  • Author
  • Localization

aluigi, posted Mon Nov 09, 2015 9:26 pm (9494)


There are various tools for Fallout 3 (keyword: BSA extract), please check them first because probably the format is still the same.
  • Author
  • Localization

x_hiro11, posted Mon Nov 09, 2015 9:32 pm (9495)


PlanK69 wrote:
I can confirm that the videos (cutscenes) in the game is bink .bk2 format. It's relatively easily converted to .avi with 'bink tools'.


ok, for example, I want to modify the carry weight and weapons range

Now, I should upload what ba2 file?

Image
  • Author
  • Localization

sucubus2049, posted Tue Nov 10, 2015 12:23 am (9498)


x_hiro11 wrote:
PlanK69 wrote:
I can confirm that the videos (cutscenes) in the game is bink .bk2 format. It's relatively easily converted to .avi with 'bink tools'.


ok, for example, I want to modify the carry weight and weapons range

Now, I should upload what ba2 file?

Image


Just upload example
https://mega.nz/#!TIdEDaSL!Gq84-jzjD073 ... i9dn8K4WHE
https://imgur.com/luosOHH
  • Author
  • Localization

Ekey, posted Tue Nov 10, 2015 12:33 am (9499)


Code:
# Fallout 4 (BA2 format)
# Written by Ekey (h4x0r)
#
# script for QuickBMS http://quickbms.aluigi.org

idstring "BTDX"
get VERSION long
get MAGIC long
get FILES long
get NAMES_TABLE_OFFSET long
get NULL long
savepos TEMP

goto NAMES_TABLE_OFFSET
for i = 0 < FILES
  get NSIZE short
  getdstring NAME NSIZE
  putarray 0 i NAME
next i

goto TEMP
for i = 0 < FILES
  get CHECKSUM long
  getdstring EXT 4
  get DUMMY long
  get DUMMY long
  get OFFSET long
  get NULL long
  get ZSIZE long
  get SIZE long
  get DUMMY long
  getarray NAME 0 i
   
  if ZSIZE == SIZE
    log NAME OFFSET ZSIZE
  else
    clog NAME OFFSET ZSIZE SIZE
  endif
next i
  • Author
  • Localization

sucubus2049, posted Tue Nov 10, 2015 12:38 am (9500)


tnx Ekey
  • Author
  • Localization

x_hiro11, posted Tue Nov 10, 2015 12:43 am (9501)


aluigi wrote:
There are various tools for Fallout 3 (keyword: BSA extract), please check them first because probably the format is still the same.


I have found unpack tool [BA2 Unpack tool] ~~~ :D

However, I want to get a weapon through the console, do not know the item code, ask which ba2 file?
  • Author
  • Localization

x_hiro11, posted Tue Nov 10, 2015 12:46 am (9502)


sucubus2049 wrote:
x_hiro11 wrote:
PlanK69 wrote:
I can confirm that the videos (cutscenes) in the game is bink .bk2 format. It's relatively easily converted to .avi with 'bink tools'.


ok, for example, I want to modify the carry weight and weapons range

Now, I should upload what ba2 file?

Image


Just upload example
https://mega.nz/#!TIdEDaSL!Gq84-jzjD073 ... i9dn8K4WHE
https://imgur.com/luosOHH


I try to use fallout 3 console code modification load, the result was successful!
player.setAV carryweight 9000
Also, I find unpacking tool [BA2 Unpack tool.exe] :D :D :D

http:/*USE_ANOTHER_FILEHOSTING*
The .ba2 drag and drop files to the "BA2 Unpack tool.exe" unpack
  • Author
  • Localization

x_hiro11, posted Tue Nov 10, 2015 12:54 am (9503)


@Ekey

Thank you very much work! ! Great work!
I always tend to use this method to solve in the package file :D :D
  • Author
  • Localization

x_hiro11, posted Tue Nov 10, 2015 1:14 am (9504)


@Ekey

I would like to get the code list of all weapons and items, which is what .ba2 file name?
  • Author
  • Localization

x_hiro11, posted Tue Nov 10, 2015 2:23 am (9506)


@Ekey

I try to extract the 'Fallout 4 - Textures 1.ba2' to 'Fallout 4 - Textures 9.ba2' are not successful?

Image
  • Author
  • Localization

michalss, posted Tue Nov 10, 2015 7:27 am (9510)


Working on repacker now... :)
  • Author
  • Localization

Ekey, posted Tue Nov 10, 2015 9:24 am (9511)


x_hiro11 wrote:
I try to extract the 'Fallout 4 - Textures 1.ba2' to 'Fallout 4 - Textures 9.ba2' are not successful?


try change

Code:
idstring "GNRL"


to

Code:
get MAGIC long
  • Author
  • Localization

aluigi, posted Tue Nov 10, 2015 9:26 am (9512)


@x_hiro11
Please learn to quote because I had to edit all your messages.
  • Author
  • Localization

x_hiro11, posted Tue Nov 10, 2015 10:44 am (9525)


Ekey wrote:

try change

Code:
idstring "GNRL"


to

Code:
get MAGIC long


Now I want to find id, and modify the parameters of items of weapons, such as weapons range and magazine capacity, I guess should Fallout4.esm file, will now have ways to edit this file?
  • Author
  • Localization

x_hiro11, posted Tue Nov 10, 2015 10:46 am (9527)


aluigi wrote:
@x_hiro11
Please learn to quote because I had to edit all your messages.


Yes, I understand, and I have learned, my poor English skills
  • Author
  • Localization

michalss, posted Tue Nov 10, 2015 8:34 pm (9587)


Here is my beta Unpacker :
Code:
https://dl.dropboxusercontent.com/u/38234344/F4 Tools V1.rar

Should work with all types, except Textures = will be tomorrow basic repack.. :)
  • Author
  • Localization

michalss, posted Wed Nov 11, 2015 10:22 pm (9628)


New Version supporting Texture files (yet without the header)

Code:
https://dl.dropboxusercontent.com/u/38234344/F4 Tools v2.0.rar

F4 Tools v2.0.rar

  • Author
  • Localization

michalss, posted Thu Nov 12, 2015 2:44 pm (9638)


A new version V3, can extract all archives, also Textures include headers :)

F4 ToolsV3.rar

  • Author
  • Localization

michalss, posted Fri Nov 13, 2015 12:44 pm (9668)


HI all,

I have made a tool which can repack ba2 files from Fallout 4, it is still work in progress :)

Details:
This games has 2 different formats of BA2 files.
1 - GNRL = general format archive
2 - DX10 = texture format archive

My tool can, so far extract all formats.
Also my tool can repack files with format GNRL only, also with compression.

Still gonna work on repacker for DX10 archives.. :)

M

PS : There wont be another post in this thread, more infor in here : http://forum.xentax.com/viewtopic.php?f=32&t=13531
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.