How would I make a mob sit if tamed?

Started by EthanIslandGamer on

Topic category: Help with MCreator software

Last seen on 00:53, 10. Oct 2023
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How would I make a mob sit if tamed?

How would I make a mob sit if tamed?

Last seen on 14:23, 15. Sep 2020
Joined Aug 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I would think a separate…
Sat, 08/08/2020 - 17:43

I would think a separate entity with a sitting model that is activated on shift+RC or just RC and then about the same for the reverse

Last seen on 00:53, 10. Oct 2023
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Then how would I merge the…
Sun, 08/09/2020 - 00:37

Then how would I merge the models together? I have an animation ready for it.

Last seen on 14:23, 15. Sep 2020
Joined Aug 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You would not need to merge…
Sun, 08/16/2020 - 06:35

You would not need to merge them i would think

Last seen on 13:59, 19. May 2023
Joined Jul 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
pls how i make mob sit when…
Sun, 08/16/2020 - 14:44

pls how i make mob sit when right clicked while tamed im making a  mod with different dog breeds

Last seen on 00:53, 10. Oct 2023
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Im very confused, im new to…
Sun, 08/30/2020 - 18:42

Im very confused, im new to mcreator so i don't know how to do a lot

Last seen on 14:23, 15. Sep 2020
Joined Aug 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Aight so you make 2 entities…
Tue, 09/01/2020 - 17:25

Aight so you make 2 entities in mcreator one that cannot move and is the sitting or idle entity and one that is the active one that can move and or attack  then you make a procedure that upon right clicking one of the entities it switches to the other entity.

Last seen on 19:53, 2. Jun 2021
Joined Sep 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
dont make 2 entities... this…
Sun, 04/18/2021 - 00:45

dont make 2 entities... this would mess their current Health... just use this code here:

public void setLivingAnimations(Entity entityIn, float limbSwing, float limbSwingAmount, float partialTickTime) {
            if (((ChimpanzeEntity.CustomEntity) entityIn).isSitting()) {             //<---------------- SITTING
                this.BodyMiddle.rotateAngleX = -0.6981317F;
                this.BodyBack.setRotationPoint(0F, 13.5F, 4F);
                this.BodyBack.rotateAngleX = -1.047198F;
                this.UpperLeg1.setRotationPoint(-3F, 18.5F, 5F);
                this.UpperLeg1.rotateAngleX = -0.7853982F;
                this.DownLeg1.setRotationPoint(-3F, 22F, 8F);
                this.DownLeg1.rotateAngleX = -1.570796F;
                this.Foot1.setRotationPoint(-3F, 23F, 8F);
                this.Foot1.rotateAngleX = -1.570796F;
                this.UpperLeg2.setRotationPoint(2F, 18.5F, 6F);
                this.UpperLeg2.rotateAngleX = -0.7853982F;
                this.DownLeg2.setRotationPoint(2F, 22F, 8F);
                this.DownLeg2.rotateAngleX = -1.570796F;
                this.Foot2.setRotationPoint(2F, 23F, 8F);
                this.Foot2.rotateAngleX = -1.570796F;
                this.UpperArm1.rotateAngleX = -0.0872665F;
                this.UpperArm2.rotateAngleX = -0.0872665F;
                this.LowerArm1.rotateAngleX = 0.0872665F;
                this.LowerArm2.rotateAngleX = 0.0872665F;
                this.Hand1.rotateAngleX = 0F;
                this.Hand2.rotateAngleX = 0F;
            } else {           //<----------------------- MOVING
                this.BodyMiddle.rotateAngleX = -0.3490659F;
                this.BodyBack.setRotationPoint(0F, 11.5F, 5F);
                this.BodyBack.rotateAngleX = -0.6981317F;
                this.UpperLeg1.setRotationPoint(-3F, 15F, 7F);
                this.DownLeg1.setRotationPoint(-3F, 15F, 7F);
                this.Foot1.setRotationPoint(-3F, 15F, 7F);
                this.UpperLeg2.setRotationPoint(2F, 15F, 7F);
                this.DownLeg2.setRotationPoint(2F, 15F, 7F);
                this.Foot2.setRotationPoint(2F, 15F, 7F);
                this.UpperLeg1.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F) * 1.4F * limbSwingAmount - 0.0872665F;
                this.DownLeg1.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F) * 1.4F * limbSwingAmount - 0.0872665F;
                this.Foot1.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F) * 1.4F * limbSwingAmount;
                this.UpperLeg2.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F + (float) Math.PI) * 1.4F * limbSwingAmount - 0.0872665F;
                this.DownLeg2.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F + (float) Math.PI) * 1.4F * limbSwingAmount - 0.0872665F;
                this.Foot2.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F + (float) Math.PI) * 1.4F * limbSwingAmount;
                this.UpperArm1.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F) * 1.4F * limbSwingAmount - 0.0872665F;
                this.LowerArm1.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F) * 1.4F * limbSwingAmount + 0.0872665F;
                this.Hand1.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F) * 1.4F * limbSwingAmount;
                this.UpperArm2.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F + (float) Math.PI) * 1.4F * limbSwingAmount - 0.0872665F;
                this.LowerArm2.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F + (float) Math.PI) * 1.4F * limbSwingAmount + 0.0872665F;
                this.Hand2.rotateAngleX = MathHelper.cos(limbSwing * 0.6662F + (float) Math.PI) * 1.4F * limbSwingAmount;
            }
        }

 

Last seen on 19:53, 2. Jun 2021
Joined Sep 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
put that above this part:…
Sun, 04/18/2021 - 00:45

put that above this part:

private void setRotation(ModelRenderer model, float x, float y, float z) {
            model.rotateAngleX = x;
            model.rotateAngleY = y;
            model.rotateAngleZ = z;
        }

 

at the very end of the file

Last seen on 21:49, 2. Aug 2022
Joined Aug 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I have 2 entities already…
Tue, 08/02/2022 - 21:51

I have 2 entities already though