Jump to content

Tools for taking Meshes and Textures from MMOs?


Recommended Posts

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

Link to comment

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?

Link to comment

ok no download for me :D

 

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
)

Link to comment

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
)
Link to comment

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use