Valkyria Revolution (.MLX, .HMD, .MXE)
Valkyria Revolution (.MLX, .HMD, .MXE)
Somewhat similiar format like Valkyria Chronicles 1 & 4.
https://drive.google.com/open?id=1t7ulp ... 8Gt7ua-Iz0 Weapons only for now, I'll upload more samples if needed.
https://drive.google.com/open?id=1t7ulp ... 8Gt7ua-Iz0 Weapons only for now, I'll upload more samples if needed.
- shakotay2
- MEGAVETERAN

- Posts: 3461
- Joined: Fri Apr 20, 2012 9:24 am
- Location: Nexus, searching for Jim Kirk
- Has thanked: 955 times
- Been thanked: 1876 times
Re: Valkyria Revolution (.MLX, .HMD, .MXE)
I don't see senseful data in your 7z ipped files.
Bigchillghost, Reverse Engineering a Game Model: viewtopic.php?f=29&t=17889
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
-
akderebur
- ultra-veteran

- Posts: 621
- Joined: Fri Jul 08, 2011 10:36 am
- Has thanked: 65 times
- Been thanked: 777 times
Re: Valkyria Revolution (.MLX, .HMD, .MXE)
Search for the "KFMG" tag in the largest file. The vertices/indices are below that. Other files don't seem to have any geometry data though.shakotay2 wrote:I don't see senseful data in your 7z ipped files.
- shakotay2
- MEGAVETERAN

- Posts: 3461
- Joined: Fri Apr 20, 2012 9:24 am
- Location: Nexus, searching for Jim Kirk
- Has thanked: 955 times
- Been thanked: 1876 times
Re: Valkyria Revolution (.MLX, .HMD, .MXE)
I see - thanx!
Maybe Make_H2O can be patched. From a first glance:
first addrFI[0] at 0x58b260
first addrFI[1] at 0x58ee90
first addrFI[2] at 0x592530
first addrFI[3] at 0x593c50
first addrFI[4] at 0x59a900
first addrFI[5] at 0x5a26e0
first addrFI[6] at 0x5a49a0
first addrFI[7] at 0x5b66f0
first addrFI[8] at 0x5bae00
first addrFI[9] at 0x5bf790
first addrFI[10] at 0x5c6d80
first addrFI[11] at 0x5db9c0
first addrFI[12] at 0x5dddd0
first addrFI[13] at 0x5e0990
first submesh of Weapon WM_Axe_101A:
Maybe Make_H2O can be patched. From a first glance:
first addrFI[0] at 0x58b260
first addrFI[1] at 0x58ee90
first addrFI[2] at 0x592530
first addrFI[3] at 0x593c50
first addrFI[4] at 0x59a900
first addrFI[5] at 0x5a26e0
first addrFI[6] at 0x5a49a0
first addrFI[7] at 0x5b66f0
first addrFI[8] at 0x5bae00
first addrFI[9] at 0x5bf790
first addrFI[10] at 0x5c6d80
first addrFI[11] at 0x5db9c0
first addrFI[12] at 0x5dddd0
first addrFI[13] at 0x5e0990
first submesh of Weapon WM_Axe_101A:
You do not have the required permissions to view the files attached to this post.
Bigchillghost, Reverse Engineering a Game Model: viewtopic.php?f=29&t=17889
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
- shakotay2
- MEGAVETERAN

- Posts: 3461
- Joined: Fri Apr 20, 2012 9:24 am
- Location: Nexus, searching for Jim Kirk
- Has thanked: 955 times
- Been thanked: 1876 times
Re: Valkyria Revolution (.MLX, .HMD, .MXE)
well, I'm not sure if this it is how it should look like:
You do not have the required permissions to view the files attached to this post.
Bigchillghost, Reverse Engineering a Game Model: viewtopic.php?f=29&t=17889
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
- shakotay2
- MEGAVETERAN

- Posts: 3461
- Joined: Fri Apr 20, 2012 9:24 am
- Location: Nexus, searching for Jim Kirk
- Has thanked: 955 times
- Been thanked: 1876 times
Re: Valkyria Revolution (.MLX, .HMD, .MXE)
anyways, the H2O files (with 2 corrections for vAddr and FVFSize, 72 instead of 68):
btw: you don't load each H2O as a single file; instead you should use the hex2obj, SaveAs Mmesh option!
Then in blender, you need a script like this one to import all .obj in a folder:
Then in blender, you need a script like this one to import all .obj in a folder:
Code: Select all
import os
import bpy
# http://blender.stackexchange.com/questions/5064/batch-import-wavefront-obj
# put the location to the folder where the objs are located here in this fashion
# this line will only work on windows ie D:\ValkR\objects
path_to_obj_dir = os.path.join('D:\\', 'ValkR\\objects')
# get list of all files in directory
file_list = sorted(os.listdir(path_to_obj_dir))
# get a list of files ending in 'obj'
obj_list = [item for item in file_list if item[-3:] == 'obj']
# loop through the strings in obj_list and add the files to the scene
for item in obj_list:
path_to_file = os.path.join(path_to_obj_dir, item)
bpy.ops.import_scene.obj(filepath = path_to_file)You do not have the required permissions to view the files attached to this post.
Bigchillghost, Reverse Engineering a Game Model: viewtopic.php?f=29&t=17889
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
extracting simple models: viewtopic.php?f=29&t=10894
Make_H2O-ForzaHor3-jm9.zip
"You quoted the whole thing, what a mess."
Re: Valkyria Revolution (.MLX, .HMD, .MXE)
Hi, there well it anyone explain where can I find the character model/texture filename? ![rolleyes [roll]](./images/smilies/icon_rolleyes.gif)
Re: Valkyria Revolution (.MLX, .HMD, .MXE)
I did found some character texture of Ophelia, Unfortunately, Blender 2.79 w/ MLX tool didn't open.
All I got was Texture.
Still looking for HEX code.
Here the ZIP.
https://drive.google.com/drive/folders/ ... sp=sharing
All I got was Texture.
Still looking for HEX code.
Here the ZIP.
https://drive.google.com/drive/folders/ ... sp=sharing
You do not have the required permissions to view the files attached to this post.
