I was trying to make a mod for a another minecraft mod as a total begginer #191139
Replies: 3 comments 3 replies
-
|
It's partially possible, but with a key limitation. What you can achieve client-side: How it would work technically:
The hard limitation: Other players on the server will never see your custom skin without a server-side
Practical suggestion: Look into whether CSM has an optional server plugin mode where the client mod still If you want to pursue making the mod yourself, start with the Fabric modding |
Beta Was this translation helpful? Give feedback.
-
|
Yes, this is technically possible, but only client-side. Customizable Skin Models works by sending extra model/animation data that normally requires the server mod to sync with other players. However, if your goal is only to see your own custom model locally, you can intercept the player renderer on the client and override the model/texture without needing server support. A possible approach: Hook into the client rendering pipeline (Fabric/Forge mixins or events) This means: Copilot likely struggled because this requires understanding how CSM injects models and how Minecraft’s rendering layers work, not just basic mod scaffolding. If your attempt already modifies the player renderer or model layer, you’re on the right track — the key part is forcing the custom model to load without relying on server packets. So yes, definitely possible, just slightly advanced since it involves client-side rendering overrides rather than standard gameplay logic. |
Beta Was this translation helpful? Give feedback.
-
|
Yeah, it is possible, but only on the client side. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Question
Help
So there is this minecraft mod called Customizable Skin Models that allows to create custom new custom textures and even animations for them and many more.So I spent 5 hours modeling the new skin.Everything works fine but when I try to go play on servers it turnes out that the server need a special server side mod/plugin.So I wanted to create a mod that only allows the player to see their skin and so that the user dont need the server side mod/plugin with Copilot but he didnt give any advice at all.Is it possible for someone who is good at coding and also have this mod to make this mod? Also you can see my attempt at making the mod in my profile.Idk if its even possible to make such a mod.
Beta Was this translation helpful? Give feedback.
All reactions