Leaderboard
Popular Content
Showing content with the highest reputation since 03/04/2025 in all areas
-
I'm still looking into the bones, trying to get them working correctly. The ones that don't work correctly yet are the models with over 256 bones, such as the one below. The vertex data only uses bytes for the indices, so it has to remap the bones into smaller groups of 0-255. They could have just used Shorts for the indices and it would have been no problem. Had a bit of success with some bones being remapped correctly, but others still not. It seems like some bones maybe aren't needed, or are used for something else. This is pl036 with some bones being moved correctly.13 points
-
From further investigation, it seems that some meshes use up to 8 bone weights/indices, where others only use 4. It also looks like they're split into 2 groups of 4 in the vertex data - i.e 4 weights/4 indices/2nd set of 4 weights/2nd set of 4 indices. So I'll need to redo the way bones are processed to see if that fixes it.9 points
-
9 points
-
There was A LOT of discussion here that was not related to AC Shadows localization. As a moderator I couldn't allow that, so I've removed all off-topic posts. From now on please post only comments that are directly connected with translation work. Thank you. 🙂6 points
-
5 points
-
Yes, but it's still in progress, not ready to upload it yet while I iron out a few issues.4 points
-
Here's an initial Noesis script for the TMD2 mesh files. I've probably made some assumptions with the format, so I don't know if it'll work for other tmd2 files that I don't have samples for. It doesn't load the textures/materials as yet, mainly because I'm not 100% sure on how they're referenced, but it will do vertex colours and the bones should also work. bleach_rebirth_tmd2.zip4 points
-
Yeah, original scripts don't seem to account for all of the different vertex formats, so a lot of meshes won't work. I can get the skeleton working by doing some manual extracting of the data. I'm not sure if the original script author(s) will update theirs. If not, I may do an updated one at some point.4 points
-
Another update. Should load almost everything now. Since the last updated, I've integrated reading of the textures and created the materials for each submesh, so they should display correctly. No need to decompress any files first, just load a tmd2 file and it will load the matching texture file. There are issues with some hair meshes - some of them don't seem to have proper textures, maybe they're handled differently, not sure. There are still some texture types that I'm not sure about - they could be specular, metallic, or whatever. As always, it's still a work in progress. bleach_rebirth_tmd2.zip3 points
-
3 points
-
You can use this Noesis script to get the textures from the LDS files. Not sure how the textures are integrated into the materials to allocate to individual submeshes. rebirth_lds.zip3 points
-
tm2 and lds its zlib lds after unpack (dds texture) tm2 after unpack (3d model) structure: 8 bytes magic(PZZEtmd2) uint decSize uint zero uint ofsData uint zero bytes* comData EDIT: i made qbms script BLEACH_TM2_LDS.bms3 points
-
Did you tried Store RwShapeIndex Values in a List? Somenthing like that? bs.seek(RwShapeIndexTableOffset, NOESEEK_ABS) rw_shape_indices = [] # Create a list to store RwShapeIndex values for i in range(0, RwVertexInfoCount): RwUnknown_0 = bs.readUShort() RwUnknown_1 = bs.readUShort() rw_shape_indices.append(bs.readUShort()) # Append to the list bs.seek(RwVertexInfoOffset, NOESEEK_ABS) for j in range(0, RwVertexInfoCount): Underline = "_" RwShapeInc = j RwShapeIndex = rw_shape_indices[j] #get the value from the list using the j index. RwShapeIdxNum = "{:04d}".format(RwShapeIndex) RwShapeIndexTmp = str(RwShapeIdxNum) print(RwShapeIndexTmp)3 points
-
This is a Unity (2021.3.9f1) game that has reached EOS (End of Service). The APK contains UI assets, which can be extracted using standard Unity tools. However, the cache files are different, and some require additional processing. What I Have Achieved So Far: Extracted Audio and Video Files These files have AFS2 and CRID headers. I found a decryption key inside the APK: "0048B2AB558A01B6". Using CRID-usm-Decrypter and HCA key generation tools, I successfully extracted these assets. The Problem: The final implemented files before service shutdown confirm that the necessary assets exist. All content up to the EOS update is present in the extracted audio and video files, confirming that the cache holds the game’s full assets. However, 3D models and textures are missing, and the remaining files have no identifiable file extensions. Two distinct binary patterns (see images) appear frequently in these unidentified files, leading me to believe they contain graphics data. I suspect that these files contain the graphic data, but their format is unknown. I also tried using AI to perform decryption with the extracted key, but this has not yielded any results either. What I Am Currently Doing: I lack experience in disassembly or reverse engineering. I am using AI-assisted analysis to examine Il2CppDumper output and searching for clues via Ghidra, but progress has been slow. I have attached the cache files, APK, and DummyDlls. or alternatively, I will provide a sample of the cache with only the relevant files. If anyone is familiar with where to start or knows any effective tools or methods to analyze these files, I would greatly appreciate your guidance.2 points
-
2 points
-
Hey, im just an old game modder/researcher. Cant promise I will be all that active, but its nice to be here2 points
-
The kamzik123 texted me and I spoke with him and it seems that my view of him was wrong and there was a misunderstanding. He is currently not planning to release his tool until EOL for good reasons. If you wanna translate this game you can get the texts from attached file and send me the translated version to get a forge patch. (still you must prove that you are a creator by sending the link of your old translations) acs_texts.zip2 points
-
Well I updated my tool for ac shadows but as always (like other games) I will keep it private. Why? Because I don't want idiots to take my tool and sell their garbage translations without even leaving a little credit for me. If you need help, you can send me link of your other translations in pm (so I can make sure) and I will help you (I will send the text + put it back into game) to make a patch ( obviously I don't ask for money)2 points
-
Sure if you know full struct. Anyway here's bms for unpacking individual files. I have covered 4 file formats so far... ################################### get BaseFileName basename endian big get Unknown_0_Offset uint32 get Unknown_CRC uint32 idstring BANK getdstring Dummy 0x0C get TotalFileSize uint32 get Unknown_0 uint32 get Unknown_1 uint32 get Unknown_2 uint32 get ResourceCount uint32 get Unknown_3 uint32 get ResourceTableOffset uint32 get Unknown_1_Offset uint32 get Unknown_2_Offset uint32 get Unknown_3_Offset uint32 goto ResourceTableOffset get ResourceTableSize uint32 get Unknown_CRC uint32 for i = 0 < ResourceCount get ResourceOffset uint32 get ResourceSize uint32 get ResourceType uint32 get ResourceNameCRC uint32 savepos cPos goto ResourceOffset getdstring Dummy 0xC getdstring Sign 0x3 if Sign == "DD3" set Ext string "3dd" # Hiearchy elif Sign == "GD3" set Ext string "3dg" # Geometry elif Sign == "MD2" set Ext string "2dm" # Material elif Sign == "BD2" set Ext string "2db" # Texture else set Ext string "dat" # ? endif goto cPos string FileName p= "%s/0x%08x.%s" BaseFileName ResourceOffset Ext log FileName ResourceOffset ResourceSize next i And here Noesis for textures... from inc_noesis import * import noesis import rapi import os def registerNoesisTypes(): handle = noesis.register("Test Drive Unlimited - Xbox 360 Texture", ".2db") noesis.setHandlerTypeCheck(handle, noepyCheckType) noesis.setHandlerLoadRGBA(handle, noepyLoadRGBA) noesis.logPopup() return 1 def noepyCheckType(data): bs = NoeBitStream(data,NOE_BIGENDIAN) if len(data) < 20: return 0 return 1 def noepyLoadRGBA(data, texList): bs = NoeBitStream(data,NOE_BIGENDIAN) BaseName = rapi.getExtensionlessName(rapi.getLocalFileName(rapi.getInputName())) bs.readBytes(40) Width = bs.readUShort() Height = bs.readUShort() Unknown_0 = bs.readUByte() Unknown_1 = bs.readUByte() Unknown_2 = bs.readUByte() Unknown_3 = bs.readUByte() PixelFormat = bs.readUInt() Unknown_5 = bs.readUInt() Unknown_6 = bs.readUInt() Unknown_7 = bs.readUInt() bs.readBytes(4032) if PixelFormat == 132: bs.texSize = Width * Height //2 print("Pixel Format > DXT1") elif PixelFormat == 136: bs.texSize = Width * Height print("Pixel Format > DXT5") elif PixelFormat == 144: bs.texSize = Width * Height * 4 print("Pixel Format > RGBA32") data = bs.readBytes(bs.texSize) if PixelFormat == 132: data = rapi.imageUntile360DXT(rapi.swapEndianArray(data, 2), Width, Height, 8) texFmt = noesis.NOESISTEX_DXT1 elif PixelFormat == 136: data = rapi.imageUntile360DXT(rapi.swapEndianArray(data, 2), Width, Height, 16) texFmt = noesis.NOESISTEX_DXT5 elif PixelFormat == 144: data = rapi.imageUntile360Raw(data, Width, Height, 4) texFmt = noesis.NOESISTEX_RGBA32 texList.append(NoeTexture(rapi.getInputName(), Width, Height, data, texFmt)) return 1 Try to post one sample from x360 and another from pc, files must be same. I mean file name... EDiT: Has Noesis UInt64 data type? Thanks!2 points
-
Hello, everyone. I am Pandora, a Guitar Hero and Rock Band here. Nice to meet you all. As of March 2025, I just noticed that Xentax/Zenhax were deprecated. It is sad that such a tragedy happened to the mod community. I actually was trying to look for help regarding reverse Engineering Guitar Hero 3 for PC, when I knew catched up with the topic. If its allowed, I share some of my links. Please, feel free to have a look. DeviantArt Thanks to the gaming mod community, I was able to extract and share these Guitar Hero 3D models from the PC Version of the game. I am specially proud of Midori and the Male Singer. https://www.deviantart.com/lindsaypandora/art/Midori-3D-Model-Guitar-Hero-3-673967952 https://www.deviantart.com/lindsaypandora/art/Vocalist-3D-Model-Guitar-Hero-3-676369139 YouTube Again, thanks to the Rock Band Modding Community called MiloHax and Emulation Community, I was able to share Performance Mode Videos of Rock Band 2 Deluxe (Unlisted at the time of this message), as well as Guitar Hero Background Videos. My most popular playlist is the PC Version of Guitar Hero 3 https://www.youtube.com/@pandoraday/playlists Again, nice to meet you everyone! Thanks!2 points
-
2 points
-
Here you can use the script that I wrote for the WAD files here: ## Fear Effect 3 Inferno (PS2) (Prototype) - WAD extraction script by BloodRaynare ## For use with QuickBMS get HEADER_SZ long get DIRS long # value is always 1 get DIRNAME string padding 0x88 get ENTRY_OFFSET long # probably isn't needed since the script will always go to this offset after ENTRY_NUMS value is being read anyway get ENTRY_NUMS long for i = 0 < ENTRY_NUMS get FILES_ENTRY_OFFSET long get FILES_ENTRY long get FILES_DATA_SZ long get UNK long # something to do with file types? savepos ENTRY_OFFSET goto FILES_ENTRY_OFFSET for j = 0 < FILES_ENTRY savepos TMP get FNAME string string NAME p "%s/%s" DIRNAME FNAME padding 0x80 0 TMP get OFFSET long get UNK2 long # file type arrays? get SIZE long get ZERO long log NAME OFFSET SIZE next j goto ENTRY_OFFSET next i The models can be imported on blender w/ DragonFF addon as for the TXDs it can be opened with Magic.TXD No clue about animations (ANM) or the other files (DBX, CCD).2 points
-
2 points
-
I finally managed to get rid of a problem where a wronlgy determined face index count led to corrupted obj files. I didn't find a simple solution with Make_H2O_pub, so I decided to fix that bug using hex2obj (which required a special TDUnlimited version to be created). So if you don't want to trick around with a dozen *.objx files (from old hex2obj versions) it's important to use the updated exe (TDUnl) from here. Said exe will create *_corr.obj (instead of *.objx) which means that they can be imported without renaming. (Heaven will tell whether _corr(ection) is correct, always.) The process is like so (read How-to-use_TDUnl_bnk.txt from zip) : Make_H2O exe creates H2O files from bnk files hex2obj creates obj files from bnk using said H2O files bunch of obj files to be imported into blender using included .py file Found sub meshes might be uncomplete - tested three (+ 2 interior) bnk files only Have fun. edit: forgot to mention that doors, steering wheel etc need a positional correction. (The offsets are probably in the bnk files but I'll leave this to you.) And yeah, uvs are missing - progress: 50% for interior (see exe in ...F2.zip) (For chassis uvs need a recheck.) edit: the above mentioned hex2obj version was optimized for creating multiple H2O files (File\SaveAs Mmesh) from TDunlimited bnk files. The caveat is that handling single H2O files is restricted. So don't press the go1 button here. Just the "mesh" button (and maybe correct the vertex count if you're told to do so). Make_H2O_TDU_bnk.zip F2 - exe only - you need the files from the previous zip! Make_H2O-TDUnl-bnk-F2.zip2 points
-
2 points
-
So I've been following this thread from today, seeing all the progress as it comes. My main aim from the beginning was to find Tier's files and edit her to the authentic look. I've been able to find an alternate, albeit possibly outdated now, method of revealing the full 3d models for the files in Noesis. The python plugin is a slight change to DKDave's code that I found earlier in the thread (same file name). It forcibly commits all triangle data to a single mesh, essentially forcing all vertices and submeshes to appear. Maybe someone can benefit from this potential checkpoint? Can't wait to see what modding brings for this amazing game. I'll continue trying to fiddle with the textures tomorrow! Biggest thanks to DKDave again, doing the Soul King's good work. bleach_rebirth_tmd2.py2 points
-
Just a small update to add a few more mesh types from the additional samples provided. bleach_rebirth_tmd2.zip2 points
-
Is there a specific file you're having trouble with inside that archive? These appear quite similar. e.g. 0000000000000000_unpack.seg is uncompressed 8-bpp indexed pixels 512x1024 starting at 1600h and a palette at 200h. (you'll have to tell me if the red and blue channels are reversed, since you've played the game)2 points
-
2 points
-
2 points
-
Hi everyone, We're excited to announce a small yet important update regarding user groups on our board. This change is the first in a series of improvements planned for the very near future. Please find below the updated and detailed descriptions for each user group: Administrators Moderators Donators Engineers Supporter Members Guests Banned Thank you all for your attention, and we appreciate your ongoing support and contributions to the board. Stay tuned for more exciting updates! Best regards, The Administration Team2 points
-
.bsp, lots of small point clouds (11 to 20 vertices, one with 50). Someone with patience required to collect them. The search pattern is xx00000101xy, 5 times in a row, where xx is 00 to 05 and xy a wildcard byte. The vertex blocks start 48 bytes (+/- 1 or so) after the start of the pattern. (Imho most blocks don't look as if they represented meshes, btw.) One vertex (?) block from the end of the file, double vertices included:2 points
-
Version 1.0.1
163 downloads
Final Fantasy VII Rebirth tool Exports static and skeletal characters, maps (including nanites). In addition to all DLLs provided here, it requires global.ucas file from the game, it must be in the same folder as .EXE. Usage is similar to previous FF7remake tool. See below. Main difference is that nanite maps (using nanites) are exported in DMF format (download blender plugin for it here). Tool usage: You can use the tool to convert individual assets, or all assets in a folder. 1. To convert one asset, drop asset file onto the tool, or run the tool from command line with asset filename as parameter. If asset file contains a texture, it will create "texture.db" file with information for later use in map extraction. If asset file contains static or skeletal mesh, in will be exported to ASCII. Raw data will also be saved in "staticmesh.raw" & "skeletalmesh.raw" folders for later use in map extraction. If asset file contains a material, it will export material info in a text file, and create "material.db" file with information for later use in map extraction. If "material.db" file already exists next to the tool, it will be updated with newly found materials. If asset file contains a blueprint, it will create "blueprint.db" file with information for later use in map extraction. If "blueprint.db" file already exists next to the tool, it will be updated with newly found blueprints. 2. To convert all assets in a folder, place the tool in that folder and run it. Tool will search that folder and all subfolders for .uasset files and try converting them all. When prompted "are you sure?" you can press "enter" to confirm or Ctrl-C to cancel. 3. To convert maps, drop .umap file onto the tool, or run the tool from command line with umap filename as parameter. Current version will extract static meshes, skeletal meshes, blueprint-generated meshes and nanite "terrain streams" from a map. For map extraction to work, "staticmesh.raw" and "skeletalmesh.raw" folders with previously extracted data must be in the same folder with the tool. If some models will be missing, tool will give messages. If "blueprint.db" file will be next to the tool, it will try and place all models mentioned in blueprints on the map. There's no proper blueprint support, so some models may be placed incorrectly. If "texture.db" file will be next to the tool, it will be used to assign proper material names to nanite parts of a map instead of hashes.2 points -
Version 1.0.0
331 downloads
Tool for FFXVI (Final Fantasy 16) models. So far it must support all (or almost all) models from "chara" folder. Static map parts may also work. Did not test much of the others. Requires 1 or 2 parameters. Usage: FF16.exe <mdl> <pac> 2nd parameter is needed for skeletons. If you don't provide .PAC file, model will be exported as static mesh. The PAC file for character group is in its corresponding "pack" folder.2 points -
1 point
-
i still would have posted this regardless i did say for anyone to test with1 point
-
It doesnt work on decompressed lds files, you have to open the ones straight from the game files1 point
-
Tool updated. I planned to also improve materials, but had no time. So only this fix.1 point
-
1 point
-
Log from the Noesis script for ad005_cos00_00_dec.tmd2 (I used a stride of 60 instead of 56 for the 1st sub mesh, most index counts make sense): offs verts, vStride 0x645b0 56 counts of sm-indices start at 0x760 numFIs 3542 StartIndex 0 numFIs 3222 StartIndex 3542 numFIs 4403 StartIndex 6764 numFIs 2077 StartIndex 11167 + 2077 = 13244 numFIs 903 StartIndex 13244 numFIs 13652 StartIndex 14147 numFIs 2834 StartIndex 27799 numFIs 1120 StartIndex 30633 numFIs 11557 StartIndex 31753 numFIs 11628 ?? StartIndex 43310 ?? numFIs 9684 ?? StartIndex 54938 ?? The address of the 2nd sub meshes face index block was harder to obtain (it was not 0x236c, calculated): H2O file of 3rd sub mesh: 0xE836 4403 Vb1 60 52 0x645B0 6791 020000 0x0 255 All three together:1 point
-
If anyone want's a list of which pl#### character is, here's a list. Do note, there is 2-3 DLC chars in the game files which will not have their names shown.1 point
-
XPR files BMS script format sample files Beard And Granny 3D engine .gr2 files? https://www.mediafire.com/file/y4bjdaizb26q4v8/SplosionMan_XprGamesFiles.zip/file XPR games Archive Twisted Pixel Games Splosion Man Ms. Splosion Man Comic Jumper The Adventures of Captain Smiley The Gunstringer final1 point
-
I wish you had written how you extracted the language files. Right now I can't open the .forge file either. Can you share how did you open it?1 point
-
Of course so lets start with matrixs so in this case Porky pig have 19 Bones ok so first seek to offset 0x2374 and repeat this 19 times to get all bone matrixs so lets start: 1.64 bytes with trash for bone name 2.156 bytes unrelated to bone data 3.a float Matrix 4x4 wich is World Space bind pose matrix 4.84 bytes unrelated to bone data Ok now have all bone World Space bind pose matrix now lets get the mesh data including:faces vértices normals uvs bone índices and bone weights. Seek to offset 0x969d4 and start: 1.8898 faces as ushorts 2.1832 vértices as float 3.1832 normals as half float 4.8 bytes zero padding 5.1832 uvs as half float 6.1832 bone índices as ubyte 7.1832 bone weights as half float Ok now have a rigged mesh ready for animation so Next is seek to offset 0xdd340 Ok lets see whats have here: 64 bytes, BankName 64 bytes, AnimName 64 bytes, HierName ushort, frame ushort, numBones 16 bytes, unk (trash IfII) for range(numBones): 68 bytes, BoneName uint, numElem uint, trash for range(numElem): uint, fmt (1000-pos; 1002-rot; 1003-scl; 1010-uv1; 1011-color) uint, type (41-uint; 37-vec2(float); 38-vec3(float); 40-quat(float)) ushort, numKeys ushort, unk (trash) array[keys] Ok so this is all offset and structure wich you need to extract model and animation1 point
-
While I have no clue what's going on exactly with this, it still impresses me all the same.1 point
-
1 point
-
1 point
-
1 point
-
Aaaand why did you change topic's title from "Resident Evil 4 Remake text" to "Dragon Dogma 2 text"? It may confuse some people as aswer from @SungurTekin is for RE 4, I suppose...1 point
-
Howdy modders! Not sure where else to post this, but I just wanted to share a small personal project with you all that I took a week or so to create. https://jenkinstr.github.io/JMD-Forza-Vehicle-Database/ The page itself takes a bit to load because of the thousands of elements, give it a second or two until it fully loads before using it, as the JavaScript to make the filters/search work loads last. It's not particularly mobile friendly either but that shouldn't be a problem for modders. I tested it on a range of screen sizes. This was created from all versions of Forza that are extractable on PC, with the only exception being Apex and the most recent Motorsport 2023. FM5 and FM6 are not included as they were never released for PC, and FM1 is excluded as it uses a different file system for vehicles than the rest. If you have any questions or suggestions or just want to discuss the crazy amounts of data, I'd love to hear it! 🙂1 point
ResHax.com: Empowering Curious Minds in the World of Reverse Engineering
Delving into the Art of Code Unraveling: ResHax.com - Your Gateway to the Thrilling World of Reverse Engineering, Where Curiosity Meets Innovation!