Koko.Hekmatyar Posted May 13, 2013 Posted May 13, 2013 I'm trying to help Asianboy345 get the new Armors from Tera but I'm having trouble finding tools that will work with an MMO that requires you to start it through a launcher. If anyone could suggest a good set of tool I'd appreciate it. P.s. Tera uses the Unreal Engine
Koko.Hekmatyar Posted May 14, 2013 Author Posted May 14, 2013 I did but it only loaded the textures and not the meshes look a little.....scary to be honest.
b3lisario Posted May 14, 2013 Posted May 14, 2013 Tera is listed in the umodel compatibility table so I'm pretty sure it is the right tool. I've used it in the past with other Unreal games. I don't have TERA so I can't test on that game. I've just tried it with Bioshock (the only Unreal game that I know I have) and it extracted meshes and textures. Have you tried another package? How many GB is the TERA download?
Koko.Hekmatyar Posted May 14, 2013 Author Posted May 14, 2013 The US one is 22 Gigs but the Korean one that has the new Meshes and Textures is 26.8 Gigs
b3lisario Posted May 14, 2013 Posted May 14, 2013 ok no download for me But maybe I can help to find the meshes. I made a bat script to recursively list all contents of the upk packages. Save the following code as a bat file in the TERA root folder Copy umodel.exe and SDL.dll in the TERA root folder The script will create a file named contents.txt that lists all the contents of all packages. That, or a bunch of errors. Does TERA use upk files? If not, change the 3d line to the extension TERA uses. @echo off del /q /s contents.txt for /f "tokens=*" %%a in ('dir /b /s *.upk') do ( echo processing package %%~na echo ############################################ package %%a >> contents.txt umodel.exe -list "%%a" >> contents.txt echo. >> contents.txt )
b3lisario Posted May 14, 2013 Posted May 14, 2013 for gpk, then @echo off del /q /s contents.txt for /f "tokens=*" %%a in ('dir /b /s *.gpk') do ( echo processing package %%~na echo ############################################ package %%a >> contents.txt umodel.exe -list "%%a" >> contents.txt echo. >> contents.txt )
Recommended Posts
Archived
This topic is now archived and is closed to further replies.