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

Search found 13 matches

by RickyOs
Thu Nov 21, 2013 3:20 pm
Forum: Game Archive
Topic: Lego Marvel textures
Replies: 4
Views: 3746

Re: Lego Marvel textures

Look for .tex files and rename them to .dds files. You can use the following recursive (/R) command in the root dir of your extraction:

Code: Select all

for /R %x in (*.tex) do ren "%x" *.dds
There are also little archives that contain more dds textures: .nxg_textures files.
by RickyOs
Sat Aug 04, 2012 8:25 pm
Forum: Compressed files and methods
Topic: Lego indiana Jones Trilogy
Replies: 18
Views: 10276

Re: Lego indiana Jones Trilogy

hm,

did you read this post? Did you try the script from that post? I can extract all files from all tt games lego games with it.

Or did I get your request wrong?

fh
by RickyOs
Sun Jul 01, 2012 5:29 pm
Forum: Graphic file formats
Topic: LEGO Island 2 (PC) .BOB and .BOD Files
Replies: 7
Views: 4191

Re: LEGO Island 2 (PC) .BOB and .BOD Files

hm,

sry. I don't own the game. I had only the two posted samples...

hf
by RickyOs
Fri Jun 29, 2012 8:33 pm
Forum: Graphic file formats
Topic: LEGO Island 2 (PC) .BOB and .BOD Files
Replies: 7
Views: 4191

Re: LEGO Island 2 (PC) .BOB and .BOD Files

hm, the .bob files are archives like .zip archives without compression. The .bob archives contains files and folders (one after the other) without offsets and filenames. If you want to extract the .bob archives you have to look into the .bod files because they contain the filenames, sizes and offset...
by RickyOs
Sat Mar 03, 2012 3:16 pm
Forum: Graphic file formats
Topic: LEGO Island 2 (PC) .BOB and .BOD Files
Replies: 7
Views: 4191

Re: LEGO Island 2 (PC) .BOB and .BOD Files

hm, the .bod files are index files for an archive. They contain filenames, offsets and sizes. The .bob files are the archives that contain the files raw data. This script extractes the archives: # LEGO Island 2 PC bod, bob files extractor (version 0.1) #use something like "quickbms bod.bms <fil...
by RickyOs
Thu Jul 28, 2011 11:30 am
Forum: 3D/2D models
Topic: .GHG files...how open it?
Replies: 11
Views: 6316

Re: .GHG files...how open it?

I'm sorry, but I have no skills in python (blender) nor do I own max. In whitch format do you need the meshes? What will you do with them? There is much data in the files where I have no idea what it is used for. This topic is really new to me. Maybe a more skilled or more experienced person can wri...
by RickyOs
Wed Jul 27, 2011 5:24 pm
Forum: 3D/2D models
Topic: .GHG files...how open it?
Replies: 11
Views: 6316

Re: .GHG files...how open it?

As far as I know the *nxg.ghg files are used in the pc-version of the games: LEGO Harry Potter Years 1-4 LEGO Star Wars III LEGO Pirates of the Caribbean The files contain chunks in different versions. The data is stored in little endian. The most interesting chunk is the MESH chunk. It contains the...
by RickyOs
Thu Jul 21, 2011 10:09 am
Forum: 3D/2D models
Topic: LEGOLAND 3D Models
Replies: 2
Views: 1148

Re: LEGOLAND 3D Models

I had a closer look at the 3D files. Looks like they contain short 3d animation sequences for lego figures. The files are in little endian. The first dword in the file is the number of frames. For each frame there are x vertices and y unknown additional tripel of floats (maybe normals, etc), but I d...
by RickyOs
Tue May 17, 2011 9:18 pm
Forum: Game Archive
Topic: LEGO Pirates of the Caribbean
Replies: 22
Views: 9472

Re: LEGO Pirates of the Caribbean

Try this one: # Traveller's Tales games DAT files extractor (script 0.5) # LEGO Harry Potter # LEGO Star Wars III # LEGO Pirates of the Caribbean # # this script is expansion to the original script from aluigi # original script for QuickBMS http://aluigi.org/papers.htm#quickbms comtype lz2k get INFO...
by RickyOs
Sat Jan 22, 2011 11:58 am
Forum: Game Archive
Topic: Lego Harry Potter *.DAT
Replies: 19
Views: 10524

Re: Lego Harry Potter *.DAT

TTGames has developed several LEGO games. Almost each one of them uses a different file format for the character data. Inside the game.dat file there is a folder named CHARS. Insiede this folder you can find the requested data files. In chronological order: LEGO Star Wars: The Video Game *.hgp Versi...
by RickyOs
Tue Dec 14, 2010 8:22 am
Forum: Game Archive
Topic: Lego Harry Potter *.DAT
Replies: 19
Views: 10524

Re: Lego Harry Potter *.DAT

I did not change version numbers or any comments. # Traveller's Tales games DAT files extractor (script 0.3) # LEGO Batman # LEGO Star Wars # LEGO Indiana Jones # LEGO Harry Potter # Transformers # others, check them on http://www.ttgames.com # # this script is a complete chaos... it's only a work-a...
by RickyOs
Mon Dec 13, 2010 1:59 pm
Forum: Game Archive
Topic: Lego Harry Potter *.DAT
Replies: 19
Views: 10524

Re: Lego Harry Potter *.DAT

Hey again, I had a closer look to the game.dat from LEGO STAR WARS The Complete Saga and the game.dat from LEGO Indiana Jones. After replacing putarray 1 NAMEZ NAME if NEXT > 0 # folder getarray OLDNAME 1 PREV string FULLPATH >>= OLDNAME if NAME != "" string FULLPATH += NAME string FULLPAT...
by RickyOs
Tue Dec 07, 2010 1:15 pm
Forum: Game Archive
Topic: Lego Harry Potter *.DAT
Replies: 19
Views: 10524

Re: Lego Harry Potter *.DAT

Hey, I'am new to this topic (extract games), but I have a theory why some of the files do not match the crc's: 1. Inside the archives there are folders that names starts with a number. 2. The ttgames.bms script contains a "string shift" (>>=). 3. The QuickBMS-application looks only at the ...