Hi guys.
Need help with the models for the UFC 2 game on the ps4. The model extension is MCD and the header is RSF.
Here's a sample of the file:
MCD Model: http://www74.zippyshare.com/v/f2E614jW/file.html
Join also our Discord channel! Click here.
UFC 2 Models - PS4 - figured out the verts and faces
-
- ultra-n00b
- Posts: 1
- Joined: Sun Nov 04, 2018 5:03 pm
Re: UFC 2 Models - PS4
i know this is like 9 month old thread... but any luck with MCD files? it seems like it might be the same file format as NHL 18 for PS4, and i'm trying to extract models from that game...
Thanks.
Thanks.
- plodtrew
- mega-veteran
- Posts: 177
- Joined: Wed Jul 18, 2007 7:14 am
- Has thanked: 13 times
- Been thanked: 5 times
- Contact:
Re: UFC 2 Models - PS4
Had some spare time to look into the model format again. It seems like there are hard coded text values indicating the start of the verts and faces instead of offset references. Using this assumption, I wrote code to the view the models in an existing application I've coded. The code seems to work with the models I have tested:

I haven't figure out the UV format as yet. Using @shakotay2 's hex2obj, I determined that the UV's are half float values but I don't know how to convert these hex values into float using C#. With the UV's exported from hex2obj, the model looks like this:

I'm not the best at maxscript, but I can try to write an import script once the uv format is figured out, that's if anyone is interested in these models?

I haven't figure out the UV format as yet. Using @shakotay2 's hex2obj, I determined that the UV's are half float values but I don't know how to convert these hex values into float using C#. With the UV's exported from hex2obj, the model looks like this:

I'm not the best at maxscript, but I can try to write an import script once the uv format is figured out, that's if anyone is interested in these models?
- plodtrew
- mega-veteran
- Posts: 177
- Joined: Wed Jul 18, 2007 7:14 am
- Has thanked: 13 times
- Been thanked: 5 times
- Contact:
Re: UFC 2 Models - PS4 - figured out the verts and faces
Spend the entire day reading up on half float values and managed to code support for the UV's. The code is still rough but it seems to work on all the head models in the game.
You do not have the required permissions to view the files attached to this post.
-
- ultra-n00b
- Posts: 1
- Joined: Fri Apr 03, 2020 7:54 am
Re: UFC 2 Models - PS4 - figured out the verts and faces
@plodtrew
I'm interested in this, how can I do the same thing and mod textures and models?