Jump to content

[Xbox] Conker Live and Reloaded models


Recommended Posts

  • Members
Posted
53 minutes ago, Über Winfrey said:

here is a patch to hopefully fix the red messy textures
just search for #generic linear in the word search found on the right side of the script window and it should bring you there, 
replace this whole section 
# generic linear
payload = self._unswizzle_linear_bytes(raw, w, h, spec['bpp'] // 8) if swz else raw
return self._make_dds(w, h, payload, bpp=spec['bpp'], rgba_masks=spec['rgba_masks'])

with the below code, 
 

        # generic linear (ALL OTHER formats)
        payload = self._unswizzle_linear_bytes(raw, w, h, spec['bpp'] // 8) if swz else raw

        # --- PATCH: fmt 0x00 (L8) preview as RGBA so it doesn't show as "red-only" ---
        if int(fmt_code) == 0x00:
            top_len = w * h  # 1 byte per pixel
            if len(payload) < top_len:
                print(f"[tex-decode] fmt0x00(L8) payload too small: have={len(payload)} need={top_len}")
                return None

            src = payload[:top_len]

            # Expand L8 -> RGBA8888 (R=G=B=A=v) (RenderDoc-like)
            out = bytearray(top_len * 4)
            for i, v in enumerate(src):
                j = i * 4
                out[j+0] = v  # R
                out[j+1] = v  # G
                out[j+2] = v  # B
                out[j+3] = v  # A

            rgba_masks = (0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000)
            return self._make_dds(w, h, bytes(out), bpp=32, rgba_masks=rgba_masks)

        return self._make_dds(w, h, payload, bpp=spec['bpp'], rgba_masks=spec['rgba_masks'])   


THEN
go to the  _init_ function and under where you see 
 

        self.FORCE_SWIZZLE = False   # None=auto, True=force on, False=force off
        self.FORCE_SWIZZLE_BY_FMT = {0x28: True}


Add this immediately after
 

        self.FORCE_SWIZZLE_BY_FMT[0x00] = True

 

Seems to have done the trick for the most part. Not too sure with the floor there, but eh. Could be just me not noticing things all the way.

image.png

  • Members
Posted
54 minutes ago, Über Winfrey said:

here is a patch to hopefully fix the red messy textures
just search for #generic linear in the word search found on the right side of the script window and it should bring you there, 
replace this whole section 
# generic linear
payload = self._unswizzle_linear_bytes(raw, w, h, spec['bpp'] // 8) if swz else raw
return self._make_dds(w, h, payload, bpp=spec['bpp'], rgba_masks=spec['rgba_masks'])

with the below code, 
 

        # generic linear (ALL OTHER formats)
        payload = self._unswizzle_linear_bytes(raw, w, h, spec['bpp'] // 8) if swz else raw

        # --- PATCH: fmt 0x00 L8-
        if int(fmt_code) == 0x00:
            top_len = w * h  # 1 byte per pixel
            if len(payload) < top_len:
                print(f"[tex-decode] fmt0x00(L8) payload too small: have={len(payload)} need={top_len}")
                return None

            src = payload[:top_len]

            # Expand L8 -> RGBA8888 (R=G=B=A=v) (RenderDoc-like)
            out = bytearray(top_len * 4)
            for i, v in enumerate(src):
                j = i * 4
                out[j+0] = v  # R
                out[j+1] = v  # G
                out[j+2] = v  # B
                out[j+3] = v  # A

            rgba_masks = (0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000)
            return self._make_dds(w, h, bytes(out), bpp=32, rgba_masks=rgba_masks)

        return self._make_dds(w, h, payload, bpp=spec['bpp'], rgba_masks=spec['rgba_masks'])   


THEN
go to the  _init_ function and under where you see 
 

        self.FORCE_SWIZZLE = False   # None=auto, True=force on, False=force off
        self.FORCE_SWIZZLE_BY_FMT = {0x28: True}


Add this immediately after
 

        self.FORCE_SWIZZLE_BY_FMT[0x00] = True

image.thumb.png.9d57fbb7eabfd45750dc562d89b6cffc.pngimage.thumb.png.ddac3911b4c4106e8fbeed52b276f589.pngimage.png.8429af15975d790a65bbc185976ed861.png

fixed my bug lol, there is still a few textures that have issues, mostly with padding and such, onces I work it out, textures should be 100%, but I'm sure something will crop up

  • Members
Posted
2 minutes ago, Über Winfrey said:

fixed my bug lol, there is still a few textures that have issues, mostly with padding and such, onces I work it out, textures should be 100%, but I'm sure something will crop up

Seems to always be the inevitable when dealing with this mess. One thing after another, right? 

  • Members
Posted
2 minutes ago, MilesMontana said:

Seems to always be the inevitable when dealing with this mess. One thing after another, right? 

yep, speaking of which I found a bug where Matrix Conker is having some material issues lol

  • Members
Posted
Just now, Über Winfrey said:

yep, speaking of which I found a bug where Matrix Conker is having some material issues lol

Oh? Interesting. What kind of issue we talking here? Just a scaling one or some of the laid out vertices looking like they had a stroke?

  • Members
Posted
2 minutes ago, MilesMontana said:

Oh? Interesting. What kind of issue we talking here? Just a scaling one or some of the laid out vertices looking like they had a stroke?

none, I was just dumb, wasn't looking in Material view, instead was just looking at solid view with textures enabled

  • Members
Posted
36 minutes ago, Über Winfrey said:

none, I was just dumb, wasn't looking in Material view, instead was just looking at solid view with textures enabled

Lol. Happens. At least it's better than some of the UV scaling i've seen here and there. Example being Rodent since you gotta play with some values to get his materials to align with him, but it's quite a simple fix really. Iirc, it's usually about .5 in most cases with the cursor as your main point to scale from.

  • Members
Posted
36 minutes ago, MilesMontana said:

Lol. Happens. At least it's better than some of the UV scaling i've seen here and there. Example being Rodent since you gotta play with some values to get his materials to align with him, but it's quite a simple fix really. Iirc, it's usually about .5 in most cases with the cursor as your main point to scale from.

you can also add a mapping node and place it between the UV node and sampler

it has scaling and such on it, so you dont have to deal with manual UV editing

  • Members
Posted
9 minutes ago, Über Winfrey said:

you can also add a mapping node and place it between the UV node and sampler

it has scaling and such on it, so you dont have to deal with manual UV editing

Fair. I guess just a lil stubborn and use to old methods. It's not the worst.

Posted
On 2/28/2026 at 9:42 AM, MilesMontana said:

If you mean just getting the model from the game to Blender, you can already do that. Just have the files from the rom itself, use the tools provided in the thread and you have it yourself.

thanks bro. i'll update ya'll if i got any trouble with porting.

Posted
On 2/28/2026 at 9:42 AM, MilesMontana said:

If you mean just getting the model from the game to Blender, you can already do that. Just have the files from the rom itself, use the tools provided in the thread and you have it yourself.

I seem to be stuck already. i used the exe on the conker stuff zip. and it just makes an extra file if the file i drag and drop into the exe. got any tips?

1.JPG

  • Members
Posted (edited)
13 hours ago, MrBlue2838 said:

I seem to be stuck already. i used the exe on the conker stuff zip. and it just makes an extra file if the file i drag and drop into the exe. got any tips?

1.JPG

Okay, let's start with what was done wrong. First off, you shouldn't really be dropping any of those files into clr_unpack.exe. That's where you're getting stuck.

Now, to do this, you're going to need the following items: 

.  clr_unpack.exe (You already got that covered)
.  Blender 4.0 (Any version iirc, but idk on 5.0)
. Command Prompt and knowledge of how to use it.
. Exiso (For dumping the iso of the game)
.RBM Import Python Script that is in this thread (Latest one will do)
.(Optional, but recommended) Texture Batch Extractor Script as well from this thread


First, use Exiso to dump the rom.

image.png.88e9d6d019e65c41fdbfaba2a098a3db.png

After you select "Extract ISO" and the location you want to put it in, his "Ok" and let it do what it needs to do. 

Next, you need to get into command prompt. Open it using administrator mode just in case.

image.png.4468d52a4e2ee7c387c7a4c06b8c7b62.png

Once here, you can just do something like this: cd "insert copied location here". That changes the directory of command prompt to make it easier for what you need to do next.

Now, let's use the Tediz Demolisher from the Old War/WW2 as our test subject. 

image.png.f6259d9057fe3779a6bdcf78ceeea216.png

You want to put clr_unpack in the same area as the default.rbm so it makes things easier and the .exe notices it. After you have set your directory for command prompt to be assigned there, type the following: clr_unpack.exe default.rbm -d index 

Once you do that, you should see this for example:

image.thumb.png.5e28da2056e76729851ffeffebf01058.png

After that, you should see this particular file has now spawned in there.

image.png.604d4e38a79c611a007e6757f6e8567d.png

.Mapped is what you want for this to be noticed.

Now, you need to open up your Blender.

image.thumb.png.7e1e90ac75f12101ae727f6d9965223d.png

If you know your way around, you'll be fine on this part, but if you don't know how to create more windows/viewports, just grab the little corner in the top right to either be rid of one or make one. After you create the new one, change it with that little top left button near here.

image.png.3b0c8e7e954c55eee67b858da8cda798.png

Select text editor, load the script provided in this thread, then hit run. You're gonna want to use that every time as it's easier to do and makes cleaning up the list easier than having a ton of file names to read through repeatedly or other issues. After you set it up, do the following: (Note: All the little folder looking tabs in my 3D viewport are usually hidden by default, but you can click the little tongue to get them out and Blender doesn't come with all of these by default. Just focus on the "Conker RBM Import" one)

image.thumb.png.8ac1ce74b1c1868f0f2d083e3322f5d1.png
You're gonna wanna hit "Load RBM", then go and find the .mapped file in the location you unpacked it at. 

image.thumb.png.cea265ec0fdd5968e11ef753fee55267.png

You're going to want to click the one labelled as the character. Those other tabs are just textures you can spawn in if you desire, but the model comes with them on by default if you have the material preview viewport shading on. If you got it, you should see this:

image.png.d10126c7916779caf3531bed8a53e76b.png

Granted, he's missing his body texture in the file itself it seems, but other than that? Easy fix when you know where to look. Since you're aiming for the SHC Grunt WW2, i'll give you a small heads up on his model.

image.png.12fc524a6858e9a836b3bb59e875d00e.png

If you get his "MultFrontend" model from the folder labelled as such however, his eyes will look like this.

image.png.58d78a25c7b2d9b01bb8b47157816c94.png
To fix this, you're going to want to switch to edit mode after selecting the eye mesh

image.thumb.png.77409da4c1610a3e94d94fca8774ceb9.png
Then switch your script tab to UV Editor, switch the pivot to 2D Cursor, then scale by .5, then g, y and .5 again.

image.png.1d977b823fc5bc22047b5502d020c218.png

Then he's fixed. You're able to export all this easily as well. Textures can be done via the batch script that was dropped earlier and have a little bit of simple code changing on directory of where you want the textures dumped, but remember to follow the instructions there because the script wants /, not \ in your directory.

Hope this helped. If you're going to do maps anytime sooner, there's going to have to be more instructions for that.

 

 

 

Edited by MilesMontana
Posted
5 hours ago, MilesMontana said:

Okay, let's start with what was done wrong. First off, you shouldn't really be dropping any of those files into clr_unpack.exe. That's where you're getting stuck.

Now, to do this, you're going to need the following items: 

.  clr_unpack.exe (You already got that covered)
.  Blender 4.0 (Any version iirc, but idk on 5.0)
. Command Prompt and knowledge of how to use it.
. Exiso (For dumping the iso of the game)
.RBM Import Python Script that is in this thread (Latest one will do)
.(Optional, but recommended) Texture Batch Extractor Script as well from this thread


First, use Exiso to dump the rom.

image.png.88e9d6d019e65c41fdbfaba2a098a3db.png

After you select "Extract ISO" and the location you want to put it in, his "Ok" and let it do what it needs to do. 

Next, you need to get into command prompt. Open it using administrator mode just in case.

image.png.4468d52a4e2ee7c387c7a4c06b8c7b62.png

Once here, you can just do something like this: cd "insert copied location here". That changes the directory of command prompt to make it easier for what you need to do next.

Now, let's use the Tediz Demolisher from the Old War/WW2 as our test subject. 

image.png.f6259d9057fe3779a6bdcf78ceeea216.png

You want to put clr_unpack in the same area as the default.rbm so it makes things easier and the .exe notices it. After you have set your directory for command prompt to be assigned there, type the following: clr_unpack.exe default.rbm -d index 

Once you do that, you should see this for example:

image.thumb.png.5e28da2056e76729851ffeffebf01058.png

After that, you should see this particular file has now spawned in there.

image.png.604d4e38a79c611a007e6757f6e8567d.png

.Mapped is what you want for this to be noticed.

Now, you need to open up your Blender.

image.thumb.png.7e1e90ac75f12101ae727f6d9965223d.png

If you know your way around, you'll be fine on this part, but if you don't know how to create more windows/viewports, just grab the little corner in the top right to either be rid of one or make one. After you create the new one, change it with that little top left button near here.

image.png.3b0c8e7e954c55eee67b858da8cda798.png

Select text editor, load the script provided in this thread, then hit run. You're gonna want to use that every time as it's easier to do and makes cleaning up the list easier than having a ton of file names to read through repeatedly or other issues. After you set it up, do the following: (Note: All the little folder looking tabs in my 3D viewport are usually hidden by default, but you can click the little tongue to get them out and Blender doesn't come with all of these by default. Just focus on the "Conker RBM Import" one)

image.thumb.png.8ac1ce74b1c1868f0f2d083e3322f5d1.png
You're gonna wanna hit "Load RBM", then go and find the .mapped file in the location you unpacked it at. 

image.thumb.png.cea265ec0fdd5968e11ef753fee55267.png

You're going to want to click the one labelled as the character. Those other tabs are just textures you can spawn in if you desire, but the model comes with them on by default if you have the material preview viewport shading on. If you got it, you should see this:

image.png.d10126c7916779caf3531bed8a53e76b.png

Granted, he's missing his body texture in the file itself it seems, but other than that? Easy fix when you know where to look. Since you're aiming for the SHC Grunt WW2, i'll give you a small heads up on his model.

image.png.12fc524a6858e9a836b3bb59e875d00e.png

If you get his "MultFrontend" model from the folder labelled as such however, his eyes will look like this.

image.png.58d78a25c7b2d9b01bb8b47157816c94.png
To fix this, you're going to want to switch to edit mode after selecting the eye mesh

image.thumb.png.77409da4c1610a3e94d94fca8774ceb9.png
Then switch your script tab to UV Editor, switch the pivot to 2D Cursor, then scale by .5, then g, y and .5 again.

image.png.1d977b823fc5bc22047b5502d020c218.png

Then he's fixed. You're able to export all this easily as well. Textures can be done via the batch script that was dropped earlier and have a little bit of simple code changing on directory of where you want the textures dumped, but remember to follow the instructions there because the script wants /, not \ in your directory.

Hope this helped. If you're going to do maps anytime sooner, there's going to have to be more instructions for that.

 

 

 

one issue so far. i can't find the import .rbm thing anywhere.

issue1.JPG

  • Members
Posted
38 minutes ago, MrBlue2838 said:

one issue so far. i can't find the import .rbm thing anywhere.

issue1.JPG

You're using the wrong script. NOT the one from the zip Birdy dropped. Only the one Uber dropped.

Posted
51 minutes ago, MilesMontana said:

You're using the wrong script. NOT the one from the zip Birdy dropped. Only the one Uber dropped.

which one? i noticed a few different downloads. gonna be real, i feel like this type of stuff should be in a disord server. i think it would get stuff done faster with faster replies and whatnot.

Posted
18 hours ago, MilesMontana said:

You're using the wrong script. NOT the one from the zip Birdy dropped. Only the one Uber dropped.

what script do i use? Uber has a few file downloads in this thread. im lost.

  • Members
Posted (edited)
4 hours ago, MrBlue2838 said:

what script do i use? Uber has a few file downloads in this thread. im lost.

RBMimport7.py would be your best bet since it's the latest.

Edited by MilesMontana
  • Members
Posted
20 hours ago, MrBlue2838 said:

which one? i noticed a few different downloads. gonna be real, i feel like this type of stuff should be in a disord server. i think it would get stuff done faster with faster replies and whatnot.

If you got an account there, I might be of service there easier, but don't expect me to know everything there is to this particular script. I'm just someone who uses it rather than someone actively writing it. I don't think there's a server for this afaik, but this account name might help and make it quicker on answers.

miles_montana

Posted

finally got it to work with a little bit of trial and error i got the model i wanted. thanks for the help. i can't wait to see what else i can port over.

combat_squirrel1.JPG

  • Like 1
  • Members
Posted
2 hours ago, MrBlue2838 said:

finally got it to work with a little bit of trial and error i got the model i wanted. thanks for the help. i can't wait to see what else i can port over.

combat_squirrel1.JPG

Glad you got what you wanted out of it.

  • Members
Posted

image.thumb.png.4427512107362ac78cd5eb0a39115454.pngits progress atleast, don't mind the eyes, I was experimenting

been using the shaders from the game and stripping them down to their basics for Blender making templates so they auto import

  • Members
Posted (edited)

its mostly figuring out the UV Scale for the fur masks thats making him look like he's vibrating, if I manually change the furmask size it looks better, it does choose the correct masks automatically so thats good, 

Edited by Über Winfrey
Posted

interesting thing is that the shot soldier at the top of the beach is not a static model and is fully rigged. I also found the gun they hold in the level too. there is also the backpack and helmet from bad fur day that the SHC soldier is seen with.

shc_2.JPG

sample_1.png

  • Members
Posted (edited)

New batch image extractor

now you just select the output folder without having to manually paste it
and it also extracts all images regardless of their user standing

eventually I might add it to the importer itself to make it more streamlined

batch_imgextract_2.py

Edited by Über Winfrey
Posted

Hey there, I'm reaching out because I'm interested in extracting models from this game. Right now I'm focused on exporting Windy to be used as a custom stage in Smash Bros. I followed the steps MilesMontana posted and got the main portion loaded but am seemingly missing a lot of models and textures such as the Windmill's blades. I'll go ahead and upload an attachment of my blender screen below. I noticed there are several other RBM files in the scrip menu. Do I need to load all of these as well? It seems like there's also textures that need to be extracted with batch_imgextract_2.py? I'm somewhat tech savvy but find structured walkthroughs like MilesMontana's above to be helpful for processes such as this. 

On a closing note, the work that has been achieved here so far is incredible! Well done! Cool to see these models being freed just in time for the 25th anniversary.

image.thumb.png.23ace41b94a71427eccfda43a5d3dc70.png

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...