Jump to content

[mod] Phaze Body


Recommended Posts

Posted
52 minutes ago, csirke128 said:

 

They updated the gui file, same issue was there for CBO, for now just load this after the AGOT patch

 

 

Thanks for the help, i got it working.

Posted
51 minutes ago, csirke128 said:

 

I think AGOT+ doesnt modify gui files, so probably not needed

I pasted the file itself into Phaze Body AGOT and im still experiencing the same issues unfortunately 

image.png

Screenshot 2026-05-03 at 1.04.26 PM.png

Posted
8 minutes ago, 123abcde2 said:

I pasted the file itself into Phaze Body AGOT and im still experiencing the same issues unfortunately 

image.png

Screenshot 2026-05-03 at 1.04.26 PM.png

Actually, I just got it working!

Posted
4 hours ago, csirke128 said:

 

I have some workaround for it in CBO, modifying the gui file to automatically change to visual tab, reset the court room, and switch back.

Also raised a bug ticket to paradox, but dont expect them to fix it.

can you show the workaround?

and also my issue is that i used phaze body with cbo base and cbo animation and even tough only for a certain type of courts but the carnal court animations were good that way, and now it doesnt change to the scene, or when it does it stays on the bedroom court and cannot be changed back

Posted
On 4/14/2026 at 8:31 AM, byehi said:

This isnt a bug, its an engine limitation, essentially your seeing dozens of animations layered over each other and because theyre not paradox animations it results in the engine displaying these layer lines

 

The older version of CBO didn't have those lines visible. It worked flawlessly.

Posted

Hello, I have been using your mods for a while now, but after CK3 updated to 1.19 I have been going back and forth trying to install the updated versions of all their mods. But I am having trouble with the character models. Whenever I load in, the clothing is always broken, and I cannot see options for Phaze clothing in the barbershop. On the Phaze Body mod, you csirke128 created an add-on for PHAZE BODY BETTER BARBERSHOP EXTENSION. I couldn't find it on their page.

Posted
11 hours ago, Kesfaha said:

Hello, I have been using your mods for a while now, but after CK3 updated to 1.19 I have been going back and forth trying to install the updated versions of all their mods. But I am having trouble with the character models. Whenever I load in, the clothing is always broken, and I cannot see options for Phaze clothing in the barbershop. On the Phaze Body mod, you csirke128 created an add-on for PHAZE BODY BETTER BARBERSHOP EXTENSION. I couldn't find it on their page.

 

Hi, the barbershop extension shouldnt be needed to have working clothing, its for adding extra gene sliders

 

Can you share a load order and an error.log? There is a log folder next to the mod folder

Posted
19 hours ago, geryy13 said:

can you show the workaround?

and also my issue is that i used phaze body with cbo base and cbo animation and even tough only for a certain type of courts but the carnal court animations were good that way, and now it doesnt change to the scene, or when it does it stays on the bedroom court and cannot be changed back

 

Hi, its in CBO Animation, the changes are

 

window_royal_court.gui:

 

	state = {
		name = _show
		next = "chtovis"
		# Don't clear tabs etc. here, we need to be able to open the Royal Court in the Artifact tab from Character Inventory.

		on_start = "[GetVariableSystem.Set( 'hide_bottom_left_HUD', 'true' )]"
		on_start = "[GetVariableSystem.Set( 'court_scene', 'yes' )]"
		on_start = "[GetVariableSystem.Set('active_royal_court_tab', 'throne_tab')]"
		on_start = "[GetVariableSystem.Clear( 'court_type' )]"
		on_start = "[RoyalCourtWindow.ClearSelectedArtifact]"
		on_start = "[CloseGameView( 'inventory' )]"

		using = Sound_EP1_Courtroom_MapMute_Snapshot
		using = Animation_FadeIn_Standard
	}
	state = {
		name = _hide
		using = Animation_FadeOut_Standard
		on_finish = "[RoyalCourtWindow.AccessInspirationsWindow.ClearSelectedInspiration]"
		on_start = "[GetVariableSystem.Clear( 'hide_bottom_left_HUD' )]"
	}

	state = {
		name = "chtovis"
		next = "chtothrone"
		duration = 0.0
        
		on_start = "[RoyalCourtWindow.SetActiveTab( 'visuals' )]"
	}

	state = {
		name = "chtothrone"
		duration = 0.0
        
		on_start = "[RoyalCourtWindow.SetActiveTab( 'throne' )]"
	}

 

I added the "next = "chtovis"" to the _show state, and added the 2 extra states, "chtovis", "chtothrone"

Basically, it clicks the change tab to visual, and then clicks back to the throne tab, so the event can be played.

 

window_court_visuals.gui:

	state = {
		name = _show
		on_start = "[CourtVisualsWindow.ResetCourtVisualToDefault]"
	}

 

I added the state _show, and it will execute the reset to default, when you switch to the visual tab

 

So in effect, it will quickly switch to visual, then reset visual to default, which makes it run the old court room triggers it used to do before, and then switch back to throne room

Posted
46 minutes ago, csirke128 said:

 

Hi, its in CBO Animation, the changes are

 

window_royal_court.gui:

 

	state = {
		name = _show
		next = "chtovis"
		# Don't clear tabs etc. here, we need to be able to open the Royal Court in the Artifact tab from Character Inventory.

		on_start = "[GetVariableSystem.Set( 'hide_bottom_left_HUD', 'true' )]"
		on_start = "[GetVariableSystem.Set( 'court_scene', 'yes' )]"
		on_start = "[GetVariableSystem.Set('active_royal_court_tab', 'throne_tab')]"
		on_start = "[GetVariableSystem.Clear( 'court_type' )]"
		on_start = "[RoyalCourtWindow.ClearSelectedArtifact]"
		on_start = "[CloseGameView( 'inventory' )]"

		using = Sound_EP1_Courtroom_MapMute_Snapshot
		using = Animation_FadeIn_Standard
	}
	state = {
		name = _hide
		using = Animation_FadeOut_Standard
		on_finish = "[RoyalCourtWindow.AccessInspirationsWindow.ClearSelectedInspiration]"
		on_start = "[GetVariableSystem.Clear( 'hide_bottom_left_HUD' )]"
	}

	state = {
		name = "chtovis"
		next = "chtothrone"
		duration = 0.0
        
		on_start = "[RoyalCourtWindow.SetActiveTab( 'visuals' )]"
	}

	state = {
		name = "chtothrone"
		duration = 0.0
        
		on_start = "[RoyalCourtWindow.SetActiveTab( 'throne' )]"
	}

 

I added the "next = "chtovis"" to the _show state, and added the 2 extra states, "chtovis", "chtothrone"

Basically, it clicks the change tab to visual, and then clicks back to the throne tab, so the event can be played.

 

window_court_visuals.gui:

	state = {
		name = _show
		on_start = "[CourtVisualsWindow.ResetCourtVisualToDefault]"
	}

 

I added the state _show, and it will execute the reset to default, when you switch to the visual tab

 

So in effect, it will quickly switch to visual, then reset visual to default, which makes it run the old court room triggers it used to do before, and then switch back to throne room

does it work for you?

it doesnt work for me, altough im using phaze body so that might cause a problem.

its the same, but i might be the problem, carnalitas dei wouldnt work for me only if i put it last in the load order so idk

Posted
4 minutes ago, geryy13 said:

does it work for you?

it doesnt work for me, altough im using phaze body so that might cause a problem.

its the same, but i might be the problem, carnalitas dei wouldnt work for me only if i put it last in the load order so idk

 

For me this works, but it assumes you dont have mods that modify these files later, and some others also reported issues with it.

It should work with Phaze Body as well

Posted
9 minutes ago, geryy13 said:

this is my load order, is there anything with it?

Képernyőkép 2026-05-04 200333.png

Képernyőkép 2026-05-04 200347.png

Képernyőkép 2026-05-04 200356.png

 

Hi, nothing really stands out, maybe you should try enabling just the first 18, and see if it works, and if yes, just move CBO and Phaze later in the load order

Posted
12 minutes ago, csirke128 said:

 

Hi, nothing really stands out, maybe you should try enabling just the first 18, and see if it works, and if yes, just move CBO and Phaze later in the load order

i tried with cbo with the same load order and it works fineKpernykp2026-05-04202641.png.79d902b8e681f38fe0fa7be18c99a889.png

Posted
2 minutes ago, geryy13 said:

i tried with cbo with the same load order and it works fineKpernykp2026-05-04202641.png.79d902b8e681f38fe0fa7be18c99a889.png

 

Thats weird... maybe because you have CFP? You could try with 

CBO Base

CBO Anim

CFP CBO Patch

Phaze Body

Phaze Body CFP+EPE

 

Basically, CFP CBO Patch has some updates to the culture files to patch the CFP court, but Phaze Body CFP + EPE doesnt

Posted
15 minutes ago, csirke128 said:

 

Thats weird... maybe because you have CFP? You could try with 

CBO Base

CBO Anim

CFP CBO Patch

Phaze Body

Phaze Body CFP+EPE

 

Basically, CFP CBO Patch has some updates to the culture files to patch the CFP court, but Phaze Body CFP + EPE doesnt

thank you so much this worked

i have another thing its that in the scene the characters doesnt have eyebrows both w phaze and cbo

Posted
4 hours ago, csirke128 said:

 

Hi, the barbershop extension shouldnt be needed to have working clothing, its for adding extra gene sliders

 

Can you share a load order and an error.log? There is a log folder next to the mod folder

Here is my load order
Screenshot(1).png.ab1feb36fa23696394c8033b15cef4c8.pngScreenshot(2).png.06344183fabc32c29563f5809ca77644.pngScreenshot(3).png.5bd6e34f7688b8ba12570e653e63fd5a.png

Posted
4 hours ago, csirke128 said:

 

Hi, the barbershop extension shouldnt be needed to have working clothing, its for adding extra gene sliders

 

Can you share a load order and an error.log? There is a log folder next to the mod folder


When I try to start a new game, the c lothes are broken (wonky, leaf censor stays, no "None" option), and no Phaze clothing options appear in the Barbershop.

Posted
5 hours ago, Kesfaha said:


When I try to start a new game, the c lothes are broken (wonky, leaf censor stays, no "None" option), and no Phaze clothing options appear in the Barbershop.

You need to put better barbershop mod and its phaze submod below also i dont see phaze body mod you have only vanilla compat download phaze body and put it above vanilla compat

Posted

I'm having problems with the game; it crashes when I use mods, but when I don't load mods, the game works normally. This is my mod loading order; I'd like to know if this is correct or if I need to add something else.image.png.4f600f8da19368c7b39e478fd271ffeb.png

image.png

Posted
7 hours ago, reke34 said:

is correct or if I need to add something else.

You are running Phaze Body CFP whilst also running Phaze Body CFP + EPE??????????????
In addition, you don't even have CFP or EPE installed.
I would also place Materna Under Additional Degeneracy

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
  • Recently Browsing   0 members

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