Seeking Fallout 4 (PC version) bms

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

Will fallout4.bms, the download link?
PlanK69
Posts: 73
Joined: Thu Sep 10, 2015 10:17 pm

Re: Seeking Fallout 4 (PC version) bms

Post by PlanK69 »

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
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

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
PlanK69
Posts: 73
Joined: Thu Sep 10, 2015 10:17 pm

Re: Seeking Fallout 4 (PC version) bms

Post by PlanK69 »

I can confirm that the videos (cutscenes) in the game is bink .bk2 format. It's relatively easily converted to .avi with 'bink tools'.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Seeking Fallout 4 (PC version) bms

Post by aluigi »

There are various tools for Fallout 3 (keyword: BSA extract), please check them first because probably the format is still the same.
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

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
sucubus2049
Posts: 3
Joined: Tue Nov 10, 2015 12:20 am

Re: Seeking Fallout 4 (PC version) bms

Post by sucubus2049 »

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
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Seeking Fallout 4 (PC version) bms

Post by Ekey »

Code: Select all

# 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
Last edited by Ekey on Tue Nov 10, 2015 10:51 am, edited 2 times in total.
sucubus2049
Posts: 3
Joined: Tue Nov 10, 2015 12:20 am

Re: Seeking Fallout 4 (PC version) bms

Post by sucubus2049 »

tnx Ekey
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

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?
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

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
Last edited by x_hiro11 on Tue Nov 10, 2015 1:57 am, edited 1 time in total.
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

@Ekey

Thank you very much work! ! Great work!
I always tend to use this method to solve in the package file :D :D
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

@Ekey

I would like to get the code list of all weapons and items, which is what .ba2 file name?
sucubus2049
Posts: 3
Joined: Tue Nov 10, 2015 12:20 am

Re: Seeking Fallout 4 (PC version) bms

Post by sucubus2049 »

GNRL is texture archive or nav for texures?
may i extracted dds files?
example) tnx for advance
https://mega.nz/#!XQ1UEBzA!31jHhbnnd3rm ... vHOSsQ_m4w

bgsm - its maaterial texture path
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

@Ekey

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

Image
michalss
Posts: 320
Joined: Sun Aug 10, 2014 12:49 pm

Re: Seeking Fallout 4 (PC version) bms

Post by michalss »

Working on repacker now... :)
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Seeking Fallout 4 (PC version) bms

Post by Ekey »

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: Select all

idstring "GNRL"


to

Code: Select all

get MAGIC long
Last edited by Ekey on Tue Nov 10, 2015 9:41 am, edited 1 time in total.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Seeking Fallout 4 (PC version) bms

Post by aluigi »

@x_hiro11
Please learn to quote because I had to edit all your messages.
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

Ekey wrote:
try change

Code: Select all

idstring "GNRL"


to

Code: Select all

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?
x_hiro11
Posts: 61
Joined: Tue Nov 03, 2015 10:38 pm

Re: Seeking Fallout 4 (PC version) bms

Post by x_hiro11 »

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