Important information: this site is currently scheduled to go offline indefinitely by end of the year.

L.A. Noire

The Original Forum. Game archives, full of resources. How to open them? Get help here.
huckleberrypie
ultra-veteran
ultra-veteran
Posts: 351
Joined: Mon Apr 26, 2010 6:51 am
Has thanked: 105 times
Been thanked: 15 times

Re: L.A. Noire

Post by huckleberrypie »

lUIGUIPIETRO wrote:Yes, but that will be more complicated. apart from the difficulty to extract and package the files, you need specific tools such as import models in 3DS Max. Someone should make a script.

At least, I would like to see models of vehicles.
Yeah, me too. I'd like to rip Phelps and put the guy to GTA or some other game. Too bad I can't get 3D Ripper DX or even the DirectX PIX utility to work.
lUIGUIPIETRO
veteran
Posts: 87
Joined: Sat Mar 13, 2010 3:59 pm
Has thanked: 44 times
Been thanked: 2 times

Re: L.A. Noire

Post by lUIGUIPIETRO »

huckleberrypie wrote:
Yeah, me too. I'd like to rip Phelps and put the guy to GTA or some other game. Too bad I can't get 3D Ripper DX or even the DirectX PIX utility to work.
It is a problem with your PC or tool? I tried but my pc is slow and would not start but I made a screen capture of the load. I think the tool works, it may be failure of the PC.



Image
huckleberrypie
ultra-veteran
ultra-veteran
Posts: 351
Joined: Mon Apr 26, 2010 6:51 am
Has thanked: 105 times
Been thanked: 15 times

Re: L.A. Noire

Post by huckleberrypie »

lUIGUIPIETRO wrote:
huckleberrypie wrote:
Yeah, me too. I'd like to rip Phelps and put the guy to GTA or some other game. Too bad I can't get 3D Ripper DX or even the DirectX PIX utility to work.
It is a problem with your PC or tool? I tried but my pc is slow and would not start but I made a screen capture of the load. I think the tool works, it may be failure of the PC.

Image
I'm using 3D Ripper DX 1.8.1, and all I ended up with is the game being stuck on synchronizing. The "Ready to capture" message does appear, though.
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: L.A. Noire

Post by michalss »

flatz wrote:We need WAD and BIG packers and ATB packer. However not only cases.big contains texts, so almost everyone BIG contains ATB files. Currently I rewrite my WAD/BIG tools in C++, this process will take some time. After that I will try to write packers that we need.
That would be great if you or someone else really success with repackers. This game really deserve to be translate into many diff. languages. So good luck to you and i hope you manage it very soon :)

Dont really get ppl why they want to mod textutes and models or such a things, does not make any sence to me at all. What is the point if you dont ever understand it on the first place??
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
huckleberrypie
ultra-veteran
ultra-veteran
Posts: 351
Joined: Mon Apr 26, 2010 6:51 am
Has thanked: 105 times
Been thanked: 15 times

Re: L.A. Noire

Post by huckleberrypie »

michalss wrote:
flatz wrote:We need WAD and BIG packers and ATB packer. However not only cases.big contains texts, so almost everyone BIG contains ATB files. Currently I rewrite my WAD/BIG tools in C++, this process will take some time. After that I will try to write packers that we need.
That would be great if you or someone else really success with repackers. This game really deserve to be translate into many diff. languages. So good luck to you and i hope you manage it very soon :)

Dont really get ppl why they want to mod textutes and models or such a things, does not make any sence to me at all. What is the point if you dont ever understand it on the first place??
It's mostly because some people are just plain unsatisfied with leaving the game vanilla. And besides, some of the textures seemed blurry (like the character faces).
flatz
advanced
Posts: 58
Joined: Mon Nov 21, 2011 7:31 am
Location: Russia
Has thanked: 7 times
Been thanked: 29 times
Contact:

Re: L.A. Noire

Post by flatz »

I don't think that ripping models and textures are complicated process. Besides, I'm already working with textures in PS3 format and converted it to DDS and vice versa. I will release tools somehow later.
CarsonGallo
ultra-n00b
Posts: 5
Joined: Thu Nov 24, 2011 1:10 am
Location: Calverton, New York
Has thanked: 1 time
Been thanked: 1 time
Contact:

Re: L.A. Noire

Post by CarsonGallo »

First bring the mod that allows you to shoot anywhere anytime available first, that it is a Must, should've already been enabled in game.
huckleberrypie
ultra-veteran
ultra-veteran
Posts: 351
Joined: Mon Apr 26, 2010 6:51 am
Has thanked: 105 times
Been thanked: 15 times

Re: L.A. Noire

Post by huckleberrypie »

CarsonGallo wrote:First bring the mod that allows you to shoot anywhere anytime available first, that it is a Must, should've already been enabled in game.
Yeah, but we'll have to look for some logic/script files for that to be enabled, or find some way to hook into the already Fort-Knox'd EXE (being that it's protected by GameShield, and that certain hooks like the DirectX PIX won't work).
User avatar
Falo
advanced
Posts: 78
Joined: Fri Oct 23, 2009 1:29 pm
Been thanked: 33 times

Re: L.A. Noire

Post by Falo »

since no one posted any tool/script here something to play with

all extracted file will have the filename with "nmbr_offset_crc.dat"
for uncompressed files and "nmbr_offset_crc.sges" for compressed files.

i think 3D Models have "trM#" header, textures are dds
audio files are *.fsb files, use fsb_mpeg to convert them (http://hcs64.com/vgm_ripping.html)

Code: Select all

#
# L.A. Noire (PC Version)
# *.big.pc unpack script by Falo
#
# script for QuickBMS http://quickbms.aluigi.org

# goto header
goto -4
get szFileTable long

# calculate File Table Offset
savepos EOF
set START EOF
math START -= szFileTable
goto START

# read File table header
get unk1 long
get numFiles long

for x = 0 < numfiles

# read entry
get CRC long # maybe filename hash
get Offset long
get Size1 long
get Size2 long
get CSize long

# build FileName
set Name x
string Name += "_"
string Name += Offset
string Name += "_"
string Name += CRC

# Build Offset
math Offset *= 16

# Build Size
if CSize == 0 # Uncompressed
    set Size Size1
    math Size += Size2
    string Name += ".dat"
else # Compressed
    set Size CSize
    string Name += ".sges"
endif

# save file
log Name Offset Size

next x
huckleberrypie
ultra-veteran
ultra-veteran
Posts: 351
Joined: Mon Apr 26, 2010 6:51 am
Has thanked: 105 times
Been thanked: 15 times

Re: L.A. Noire

Post by huckleberrypie »

Falo wrote:since no one posted any tool/script here something to play with

all extracted file will have the filename with "nmbr_offset_crc.dat"
for uncompressed files and "nmbr_offset_crc.sges" for compressed files.

i think 3D Models have "trM#" header, textures are dds
audio files are *.fsb files, use fsb_mpeg to convert them (http://hcs64.com/vgm_ripping.html)
FSBs are trivial enough, as most ripping utils can handle it.
flatz
advanced
Posts: 58
Joined: Mon Nov 21, 2011 7:31 am
Location: Russia
Has thanked: 7 times
Been thanked: 29 times
Contact:

Re: L.A. Noire

Post by flatz »

And here is my alpha version of .big unpacker for PS3/PC version.
http://pastebin.com/MucRkpht

Some .atb's mind stuff. I think they have a hierarchial structure and contains different types of blocks.
http://pastebin.com/HMJhvKLS
User avatar
McGregor II
beginner
Posts: 25
Joined: Tue Jun 29, 2010 1:21 am
Location: Polska

Re: L.A. Noire

Post by McGregor II »

Falo wrote:since no one posted any tool/script here something to play with

all extracted file will have the filename with "nmbr_offset_crc.dat"
for uncompressed files and "nmbr_offset_crc.sges" for compressed files.

i think 3D Models have "trM#" header, textures are dds
audio files are *.fsb files, use fsb_mpeg to convert them (http://hcs64.com/vgm_ripping.html)

Code: Select all

#
# L.A. Noire (PC Version)
# *.big.pc unpack script by Falo
#
# script for QuickBMS http://quickbms.aluigi.org

# goto header
goto -4
get szFileTable long

# calculate File Table Offset
savepos EOF
set START EOF
math START -= szFileTable
goto START

# read File table header
get unk1 long
get numFiles long

for x = 0 < numfiles

# read entry
get CRC long # maybe filename hash
get Offset long
get Size1 long
get Size2 long
get CSize long

# build FileName
set Name x
string Name += "_"
string Name += Offset
string Name += "_"
string Name += CRC

# Build Offset
math Offset *= 16

# Build Size
if CSize == 0 # Uncompressed
    set Size Size1
    math Size += Size2
    string Name += ".dat"
else # Compressed
    set Size CSize
    string Name += ".sges"
endif

# save file
log Name Offset Size

next x
You're awesome bro but can anyone post script for Maincontent file?
Image
flatz
advanced
Posts: 58
Joined: Mon Nov 21, 2011 7:31 am
Location: Russia
Has thanked: 7 times
Been thanked: 29 times
Contact:

Re: L.A. Noire

Post by flatz »

McGregor II wrote: You're awesome bro but can anyone post script for Maincontent file?
You don't need it. Just simply use SKIDROW crack which already contains uncompressed and decrypted files.
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: L.A. Noire

Post by michalss »

flatz wrote:And here is my alpha version of .big unpacker for PS3/PC version.
http://pastebin.com/MucRkpht

Some .atb's mind stuff. I think they have a hierarchial structure and contains different types of blocks.
http://pastebin.com/HMJhvKLS

Can this be also use for X360? Please please make it compatible with X360...
Last edited by michalss on Thu Nov 24, 2011 6:55 pm, edited 1 time in total.
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
lUIGUIPIETRO
veteran
Posts: 87
Joined: Sat Mar 13, 2010 3:59 pm
Has thanked: 44 times
Been thanked: 2 times

Re: L.A. Noire

Post by lUIGUIPIETRO »

thank you all. Now we need to open. SGES
Post Reply