Jump to content

Recommended Posts

Posted

iam trying to give the player hair where he can switch it on and off so i have to give the player a custom model but if i can instead somehow change the biped model that would be great or maybe have it like a 3d armor anything that works just how

Posted

No. We won't be writing your code for you.

 

https://mcforge.readthedocs.io/en/latest/events/intro/
This is what you need to get started with events. Look for open source mods that use the RenderPlayer event for examples.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Posted
3 minutes ago, larsgerrits said:

No. We won't be writing your code for you.

i never said write my code for me there is a difference between an example and writing my code

Posted
21 minutes ago, Skarte said:

i never said write my code for me there is a difference between an example and writing my code

Well he gave you the documentation which is equivalent to what you want.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Posted
1 minute ago, Animefan8888 said:

Well he gave you the documentation which is equivalent to what you want.

not really anyways make my model a child of biped body and in the event just say

ModelCustomArmour model = new ModelCustomArmour();

 

model.bipedBody.showModel = true;

Posted
5 minutes ago, Skarte said:

not really anyways make my model a child of biped body and in the event just say

ModelCustomArmour model = new ModelCustomArmour();

 

model.bipedBody.showModel = true;

Potentially

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Posted

https://github.com/search?q=RenderPlayerEvent&type=Code

Here are a lot of examples. Could've found these yourself...

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Posted

iam stoping it from rendering the player model now how do i make it render my model

    @SubscribeEvent
    public void preRenderPlayer(RenderPlayerEvent.Pre event)
    {
        event.setCanceled(true);
    }

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.