Jump to content

Recommended Posts

Posted

hey, guys i have a question, how to make that when mob attacks you or other entyti ,he sets target on fire, and knockbacks it.?

how to make that? and maybe adds wither effect to it?

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

my mob, when it attacks other entity or targets a player, he specialisizes on charging on enemies,

hell bull

 

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

and it will work on other mobs, if i add to a attacker entity? fire aspect on attack

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

where to type it? because when i type it before ai = false i get many errors/

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

The method should be called automatically.  All classes that are derived (extended from) EntityLivingBase have the attackEntityAsMob() method and this is automatically called during an attack -- you shouldn't have to call it yourself.  However, you should @Override it in your class to do what you want.  So if you have a custom entity class you should do what I explained in the tutorial -- put that method in your class and modify the code to do what you like.

 

What is your custom entity code?  Can you post it?

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

package com.hogans.craft.entities;

 

import com.hogans.craft.HogansCraft;

 

import net.minecraft.block.Block;

import net.minecraft.enchantment.EnchantmentHelper;

import net.minecraft.entity.Entity;

import net.minecraft.entity.EntityLiving;

import net.minecraft.entity.EntityLivingBase;

import net.minecraft.entity.SharedMonsterAttributes;

import net.minecraft.entity.ai.EntityAIAttackOnCollide;

import net.minecraft.entity.ai.EntityAIAvoidEntity;

import net.minecraft.entity.ai.EntityAIBreakDoor;

import net.minecraft.entity.ai.EntityAIHurtByTarget;

import net.minecraft.entity.ai.EntityAILeapAtTarget;

import net.minecraft.entity.ai.EntityAILookIdle;

import net.minecraft.entity.ai.EntityAIMoveThroughVillage;

import net.minecraft.entity.ai.EntityAINearestAttackableTarget;

import net.minecraft.entity.ai.EntityAIOpenDoor;

import net.minecraft.entity.ai.EntityAISwimming;

import net.minecraft.entity.ai.EntityAIWander;

import net.minecraft.entity.ai.EntityAIWatchClosest;

import net.minecraft.entity.boss.EntityWither;

import net.minecraft.entity.monster.EntityCaveSpider;

import net.minecraft.entity.monster.EntityCreeper;

import net.minecraft.entity.monster.EntityEnderman;

import net.minecraft.entity.monster.EntityIronGolem;

import net.minecraft.entity.monster.EntityMob;

import net.minecraft.entity.monster.EntitySkeleton;

import net.minecraft.entity.monster.EntitySlime;

import net.minecraft.entity.monster.EntitySpider;

import net.minecraft.entity.monster.EntityWitch;

import net.minecraft.entity.monster.EntityZombie;

import net.minecraft.entity.passive.EntityBat;

import net.minecraft.entity.passive.EntityChicken;

import net.minecraft.entity.passive.EntityCow;

import net.minecraft.entity.passive.EntityHorse;

import net.minecraft.entity.passive.EntityOcelot;

import net.minecraft.entity.passive.EntityPig;

import net.minecraft.entity.passive.EntitySheep;

import net.minecraft.entity.passive.EntitySquid;

import net.minecraft.entity.passive.EntityVillager;

import net.minecraft.entity.passive.EntityWolf;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

import net.minecraft.potion.Potion;

import net.minecraft.potion.PotionEffect;

import net.minecraft.util.DamageSource;

import net.minecraft.util.MathHelper;

import net.minecraft.world.EnumDifficulty;

import net.minecraft.world.World;

import net.minecraftforge.common.ForgeModContainer;

 

 

public class EntityBull extends EntityMob {

 

 

 

 

 

 

 

 

public EntityBull(World world) {

super(world);

isImmuneToFire = false;

 

getNavigator().clearPathEntity();

getNavigator().setBreakDoors(true);

//getNavigator().func_48679_a(true);

this.tasks.addTask(0, new EntityAISwimming(this));

tasks.addTask(2, new EntityAILeapAtTarget(this, 0.4F));

        this.tasks.addTask(4, new EntityAIAttackOnCollide(this, EntityLiving.class, 1.0D, true));

        this.tasks.addTask(4, new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.0D, true));

        this.tasks.addTask(5, new EntityAIWander(this, 2.0D));

        this.tasks.addTask(6, new EntityAIMoveThroughVillage(this, 1.0D, false));

        this.tasks.addTask(8, new EntityAIWatchClosest(this, EntityPlayer.class, 60.0F));

        this.tasks.addTask(9, new EntityAIBreakDoor(this));

        this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntitySheperd.class, 0, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityPlayer.class, 0, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityVillager.class, 0, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityCow.class, 1, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityWolf.class, 1, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityHorse.class, 1, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityZombie.class, 2, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntitySkeleton.class, 2, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntitySpider.class, 3, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityIronGolem.class, 3, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityCaveSpider.class, 4, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityEnderman.class, 4, true));

        this.despawnEntity(false);

       

}

 

 

 

 

 

 

   

 

 

 

 

 

private void despawnEntity(boolean b) {

// TODO Auto-generated method stub

 

}

 

 

 

 

 

 

 

 

 

 

 

 

protected Item getDropItem()

    {

        return HogansCraft.CrazyMushroom;

    }

   

    protected void dropRareDrop(int par1) {

    this.entityDropItem(new ItemStack(HogansCraft.BullsTear, 1, 1), 0.0F);

    }

   

 

 

   

   

   

    protected String getLivingSound()

    {

        return "mob.cow.say";

    }

 

 

    /**

    * Returns the sound this mob makes when it is hurt.

    */

    protected String getHurtSound()

    {

        return "mob.cow.hurt";

    }

 

    /**

    * Returns the sound this mob makes on death.

    */

    protected String getDeathSound()

    {

        return "mob.cow.death";

    }

 

    protected void func_145780_a(int p_145780_1_, int p_145780_2_, int p_145780_3_, Block p_145780_4_)

    {

        this.playSound("mob.cow.step", 0.15F, 1.0F);

    }

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

 

protected void applyEntityAttributes()

    {

        super.applyEntityAttributes();

        this.getEntityAttribute(SharedMonsterAttributes.followRange).setBaseValue(150.0D);

        this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(0.34000000417232513D);

        this.getEntityAttribute(SharedMonsterAttributes.attackDamage).setBaseValue(12.0D);

        this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setBaseValue(150.0D);

        this.getEntityAttribute(SharedMonsterAttributes.knockbackResistance).setBaseValue(10.0D);

    }

 

 

  //* Returns the current armor value as determined by a call to InventoryPlayer.getTotalArmorValue

   

  public int getTotalArmorValue()

  {

          return 25;

  }

 

 

 

 

protected boolean isAIEnabled()

    {

        return true;

    }

 

 

 

}

 

 

 

 

 

 

       

       

     

 

 

 

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

Okay, because you have extended EntityMob, it already has a full attackEntityAsMob() method.  However, that method will only set fire if you set the enchantment fire modifier.  So you have two options:

 

1) You can leave the attackEntityAsMob() method alone and instead set the enchantment fire modifier for your entity.

2) You can override the attackEntityAsMob() method, copy what I put in my tutorial, and at the part where where it checks for fire enchantment just modify that part so it always applies fire damage.

 

Note also, in your entity constructor you don't give your bull fire immunity.  You might want to set that to true.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

post example code,please how to make, when he attacks, maybe just knockbacks target straight or in to the air ;)

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

i still getting errors on

this line

  if (entityTargetinstanceof EntityLivingBase)

    {

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

does it works same way, with when other entity is in range with my entity and, to get it on fire when it is in range like 5-10blocks

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

does it works same way, with when other entity is in range with my entity and, to get it on fire when it is in range like 5-10blocks

 

You'd have to write code for that.  You need to put the code in some sort of update method or tick event, probably onLivingUpdate() in your entity class, and there you'd check for entities within range and then with those you find you'd set fire with the same method described above.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

like how to to that properly i know that on update tick, but do you have an example code for that, please to set nearest entities on fire, like EntityLiving

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

Sorry but you should show what you tried if you want help.  Can't ask people to write your code for you. I already gave you the general instruction. Try to follow that instruction, post what you've tried.  I'm happy to look at code, but won't write it for you.  You'll learn a lot more that way.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

i tried but i doesn't work

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

 

package com.hogans.craft.entities;

 

import com.hogans.craft.HogansCraft;

 

import net.minecraft.block.Block;

import net.minecraft.enchantment.EnchantmentHelper;

import net.minecraft.entity.Entity;

import net.minecraft.entity.EntityAgeable;

import net.minecraft.entity.EntityLiving;

import net.minecraft.entity.EntityLivingBase;

import net.minecraft.entity.SharedMonsterAttributes;

import net.minecraft.entity.ai.EntityAIAttackOnCollide;

import net.minecraft.entity.ai.EntityAIAvoidEntity;

import net.minecraft.entity.ai.EntityAIBreakDoor;

import net.minecraft.entity.ai.EntityAIHurtByTarget;

import net.minecraft.entity.ai.EntityAILeapAtTarget;

import net.minecraft.entity.ai.EntityAILookIdle;

import net.minecraft.entity.ai.EntityAIMoveThroughVillage;

import net.minecraft.entity.ai.EntityAINearestAttackableTarget;

import net.minecraft.entity.ai.EntityAIOpenDoor;

import net.minecraft.entity.ai.EntityAISwimming;

import net.minecraft.entity.ai.EntityAIWander;

import net.minecraft.entity.ai.EntityAIWatchClosest;

import net.minecraft.entity.boss.EntityWither;

import net.minecraft.entity.boss.IBossDisplayData;

import net.minecraft.entity.item.EntityEnderCrystal;

import net.minecraft.entity.item.EntityMinecart;

import net.minecraft.entity.monster.EntityBlaze;

import net.minecraft.entity.monster.EntityCaveSpider;

import net.minecraft.entity.monster.EntityCreeper;

import net.minecraft.entity.monster.EntityEnderman;

import net.minecraft.entity.monster.EntityIronGolem;

import net.minecraft.entity.monster.EntityMagmaCube;

import net.minecraft.entity.monster.EntityMob;

import net.minecraft.entity.monster.EntityPigZombie;

import net.minecraft.entity.monster.EntitySkeleton;

import net.minecraft.entity.monster.EntitySlime;

import net.minecraft.entity.monster.EntitySpider;

import net.minecraft.entity.monster.EntityWitch;

import net.minecraft.entity.monster.EntityZombie;

import net.minecraft.entity.passive.EntityAnimal;

import net.minecraft.entity.passive.EntityBat;

import net.minecraft.entity.passive.EntityChicken;

import net.minecraft.entity.passive.EntityCow;

import net.minecraft.entity.passive.EntityHorse;

import net.minecraft.entity.passive.EntityOcelot;

import net.minecraft.entity.passive.EntityPig;

import net.minecraft.entity.passive.EntitySheep;

import net.minecraft.entity.passive.EntitySquid;

import net.minecraft.entity.passive.EntityVillager;

import net.minecraft.entity.passive.EntityWolf;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.init.Blocks;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

import net.minecraft.potion.Potion;

import net.minecraft.potion.PotionEffect;

import net.minecraft.util.DamageSource;

import net.minecraft.util.MathHelper;

import net.minecraft.world.EnumDifficulty;

import net.minecraft.world.World;

import net.minecraftforge.common.ForgeModContainer;

 

 

public class EntityNetherBullKing extends EntityMob {

 

 

 

 

 

 

 

 

 

 

 

 

public EntityNetherBullKing(World world) {

super(world);

this.setSize(1.0F, 2.0F);

isImmuneToFire = true;

 

 

getNavigator().clearPathEntity();

getNavigator().setBreakDoors(true);

getNavigator().setAvoidsWater(true);

 

 

//getNavigator().func_48679_a(true);

this.tasks.addTask(0, new EntityAISwimming(this));

tasks.addTask(2, new EntityAILeapAtTarget(this, 0.4F));

        this.tasks.addTask(4, new EntityAIAttackOnCollide(this, EntityLiving.class, 1.0D, true));

        this.tasks.addTask(4, new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.0D, true));

        this.tasks.addTask(5, new EntityAIWander(this, 2.5D));

        this.tasks.addTask(6, new EntityAIMoveThroughVillage(this, 3.0D, false));

        this.tasks.addTask(8, new EntityAIWatchClosest(this, EntityPlayer.class, 60.0F));

        this.tasks.addTask(9, new EntityAIBreakDoor(this));

        this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityMob.class, 0, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityPlayer.class, 0, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityAnimal.class, 1, true));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityAgeable.class, 1, true));

       

 

     

       

        }

       

 

 

 

 

 

 

 

   

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

private void despawnEntity(boolean b) {

// TODO Auto-generated method stub

 

}

 

 

 

 

 

 

 

 

 

 

 

 

protected Item getDropItem()

    {

        return Items.nether_wart;

    }

   

    protected void dropRareDrop(int par1) {

    this.entityDropItem(new ItemStack(Blocks.beacon, 1, 1), 0.0F);

    }

   

 

 

   

   

   

    protected String getLivingSound()

    {

        return "mob.cow.say";

    }

 

 

    /**

    * Returns the sound this mob makes when it is hurt.

    */

    protected String getHurtSound()

    {

        return "mob.cow.hurt";

    }

 

    /**

    * Returns the sound this mob makes on death.

    */

    protected String getDeathSound()

    {

        return "mob.cow.death";

    }

 

    protected void func_145780_a(int p_145780_1_, int p_145780_2_, int p_145780_3_, Block p_145780_4_)

    {

        this.playSound("mob.cow.step", 0.15F, 1.0F);

    }

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

 

protected void applyEntityAttributes()

    {

        super.applyEntityAttributes();

        this.getEntityAttribute(SharedMonsterAttributes.followRange).setBaseValue(250.0D);

        this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(0.34000000417232513D);

        this.getEntityAttribute(SharedMonsterAttributes.attackDamage).setBaseValue(50.0D);

        this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setBaseValue(1500.0D);

        this.getEntityAttribute(SharedMonsterAttributes.knockbackResistance).setBaseValue(1.0D);

       

    }

 

 

  //* Returns the current armor value as determined by a call to InventoryPlayer.getTotalArmorValue

   

  public int getTotalArmorValue()

  {

          return 50;

  }

 

 

 

 

 

 

  public boolean attackEntityAsMob(Entity entityTarget, boolean wasDamageDone)

  {

      float attackDamage = (float)getEntityAttribute(SharedMonsterAttributes

            .attackDamage).getAttributeValue();

      int knockbackModifier = 0;

 

      if (entityTarget instanceof EntityLivingBase)

      {

          attackDamage += EnchantmentHelper.getEnchantmentModifierLiving(this,

                (EntityLivingBase)entityTarget);

          knockbackModifier  += EnchantmentHelper.getKnockbackModifier(this,

                (EntityLivingBase)entityTarget);

      }

 

      boolean isTargetHurt = entityTarget.attackEntityFrom(DamageSource

            .causeMobDamage(this), attackDamage);

 

      if (wasDamageDone)

      {

          if (knockbackModifier  > 0)

          {

              entityTarget.addVelocity((double)(-MathHelper.sin(rotationYaw *

                    (float)Math.PI / 180.0F) * (float)knockbackModifier  * 0.5F),

                      0.1D, (double)(MathHelper.cos(rotationYaw *

                    (float)Math.PI / 180.0F) * (float)knockbackModifier  * 0.5F));

              motionX *= 0.6D;

              motionZ *= 0.6D;

          }

 

          int fireModifier = EnchantmentHelper.getFireAspectModifier(this);

 

          if (fireModifier > 0)

          {

              entityTarget.setFire(fireModifier * 4);

          }

 

          // I copied these enchantments from EntityMob, not sure what they do

          if (entityTarget instanceof EntityLivingBase)

          {

              EnchantmentHelper.func_151384_a((EntityLivingBase)entityTarget, this);

          }

 

          EnchantmentHelper.func_151385_b(this, entityTarget);

      }

 

      return isTargetHurt ;

  }

 

 

 

 

 

 

 

 

 

 

protected boolean isAIEnabled()

    {

        return true;

   

 

 

    }

 

 

 

        }

 

   

   

 

 

 

 

 

 

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

In your code I don't see (maybe I missed it?) any code related to trying to look for entities to set fire to.  I only see the attackEntityAsMob() method which I already helped you with.

 

As mentioned you need to override the onLivingUpdate() method and add code that looks for entities within certain bounding box and then takes those and sets fire.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

when i try to add @Override over them i get an error

at this line attackEntityAsMob(Entity entityTarget, boolean wasDamageDone)

idk why it says to remove @Override

Proud mod developer of:

 

Mob Armor mod

Block monster mod

Clay Living Dolls mod

Much More Spiders mod

Elemental cows reborn

Mr gorilla mod

Posted

Probably because the method attackEntityAsMob() in the EntityMob class does not have the second argument that you supplied. In other words, you have created a new method, not overridden the existing one.

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Version 1.19 - Forge 41.0.63 I want to create a wolf entity that I can ride, so far it seems to be working, but the problem is that when I get on the wolf, I can’t control it. I then discovered that the issue is that the server doesn’t detect that I’m riding the wolf, so I’m struggling with synchronization. However, it seems to not be working properly. As I understand it, the server receives the packet but doesn’t register it correctly. I’m a bit new to Java, and I’ll try to provide all the relevant code and prints *The comments and prints are translated by chatgpt since they were originally in Spanish* Thank you very much in advance No player is mounted, or the passenger is not a player. No player is mounted, or the passenger is not a player. No player is mounted, or the passenger is not a player. No player is mounted, or the passenger is not a player. No player is mounted, or the passenger is not a player. MountableWolfEntity package com.vals.valscraft.entity; import com.vals.valscraft.network.MountSyncPacket; import com.vals.valscraft.network.NetworkHandler; import net.minecraft.client.Minecraft; import net.minecraft.network.syncher.EntityDataAccessor; import net.minecraft.network.syncher.EntityDataSerializers; import net.minecraft.network.syncher.SynchedEntityData; import net.minecraft.server.MinecraftServer; import net.minecraft.server.level.ServerPlayer; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.Mob; import net.minecraft.world.entity.ai.attributes.AttributeSupplier; import net.minecraft.world.entity.ai.attributes.Attributes; import net.minecraft.world.entity.animal.Wolf; import net.minecraft.world.entity.player.Player; import net.minecraft.world.entity.Entity; import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.Items; import net.minecraft.world.level.Level; import net.minecraft.world.phys.Vec3; import net.minecraftforge.event.TickEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.network.PacketDistributor; public class MountableWolfEntity extends Wolf { private boolean hasSaddle; private static final EntityDataAccessor<Byte> DATA_ID_FLAGS = SynchedEntityData.defineId(MountableWolfEntity.class, EntityDataSerializers.BYTE); public MountableWolfEntity(EntityType<? extends Wolf> type, Level level) { super(type, level); this.hasSaddle = false; } @Override protected void defineSynchedData() { super.defineSynchedData(); this.entityData.define(DATA_ID_FLAGS, (byte)0); } public static AttributeSupplier.Builder createAttributes() { return Wolf.createAttributes() .add(Attributes.MAX_HEALTH, 20.0) .add(Attributes.MOVEMENT_SPEED, 0.3); } @Override public InteractionResult mobInteract(Player player, InteractionHand hand) { ItemStack itemstack = player.getItemInHand(hand); if (itemstack.getItem() == Items.SADDLE && !this.hasSaddle()) { if (!player.isCreative()) { itemstack.shrink(1); } this.setSaddle(true); return InteractionResult.SUCCESS; } else if (!level.isClientSide && this.hasSaddle()) { player.startRiding(this); MountSyncPacket packet = new MountSyncPacket(true); // 'true' means the player is mounted NetworkHandler.CHANNEL.sendToServer(packet); // Ensure the server handles the packet return InteractionResult.SUCCESS; } return InteractionResult.PASS; } @Override public void travel(Vec3 travelVector) { if (this.isVehicle() && this.getControllingPassenger() instanceof Player) { System.out.println("The wolf has a passenger."); System.out.println("The passenger is a player."); Player player = (Player) this.getControllingPassenger(); // Ensure the player is the controller this.setYRot(player.getYRot()); this.yRotO = this.getYRot(); this.setXRot(player.getXRot() * 0.5F); this.setRot(this.getYRot(), this.getXRot()); this.yBodyRot = this.getYRot(); this.yHeadRot = this.yBodyRot; float forward = player.zza; float strafe = player.xxa; if (forward <= 0.0F) { forward *= 0.25F; } this.flyingSpeed = this.getSpeed() * 0.1F; this.setSpeed((float) this.getAttributeValue(Attributes.MOVEMENT_SPEED) * 1.5F); this.setDeltaMovement(new Vec3(strafe, travelVector.y, forward).scale(this.getSpeed())); this.calculateEntityAnimation(this, false); } else { // The wolf does not have a passenger or the passenger is not a player System.out.println("No player is mounted, or the passenger is not a player."); super.travel(travelVector); } } public boolean hasSaddle() { return this.hasSaddle; } public void setSaddle(boolean hasSaddle) { this.hasSaddle = hasSaddle; } @Override protected void dropEquipment() { super.dropEquipment(); if (this.hasSaddle()) { this.spawnAtLocation(Items.SADDLE); this.setSaddle(false); } } @SubscribeEvent public static void onServerTick(TickEvent.ServerTickEvent event) { if (event.phase == TickEvent.Phase.START) { MinecraftServer server = net.minecraftforge.server.ServerLifecycleHooks.getCurrentServer(); if (server != null) { for (ServerPlayer player : server.getPlayerList().getPlayers()) { if (player.isPassenger() && player.getVehicle() instanceof MountableWolfEntity) { MountableWolfEntity wolf = (MountableWolfEntity) player.getVehicle(); System.out.println("Tick: " + player.getName().getString() + " is correctly mounted on " + wolf); } } } } } private boolean lastMountedState = false; @Override public void tick() { super.tick(); if (!this.level.isClientSide) { // Only on the server boolean isMounted = this.isVehicle() && this.getControllingPassenger() instanceof Player; // Only print if the state changed if (isMounted != lastMountedState) { if (isMounted) { Player player = (Player) this.getControllingPassenger(); // Verify the passenger is a player System.out.println("Server: Player " + player.getName().getString() + " is now mounted."); } else { System.out.println("Server: The wolf no longer has a passenger."); } lastMountedState = isMounted; } } } @Override public void addPassenger(Entity passenger) { super.addPassenger(passenger); if (passenger instanceof Player) { Player player = (Player) passenger; if (!this.level.isClientSide && player instanceof ServerPlayer) { // Send the packet to the server to indicate the player is mounted NetworkHandler.CHANNEL.send(PacketDistributor.PLAYER.with(() -> (ServerPlayer) player), new MountSyncPacket(true)); } } } @Override public void removePassenger(Entity passenger) { super.removePassenger(passenger); if (passenger instanceof Player) { Player player = (Player) passenger; if (!this.level.isClientSide && player instanceof ServerPlayer) { // Send the packet to the server to indicate the player is no longer mounted NetworkHandler.CHANNEL.send(PacketDistributor.PLAYER.with(() -> (ServerPlayer) player), new MountSyncPacket(false)); } } } @Override public boolean isControlledByLocalInstance() { Entity entity = this.getControllingPassenger(); return entity instanceof Player; } @Override public void positionRider(Entity passenger) { if (this.hasPassenger(passenger)) { double xOffset = Math.cos(Math.toRadians(this.getYRot() + 90)) * 0.4; double zOffset = Math.sin(Math.toRadians(this.getYRot() + 90)) * 0.4; passenger.setPos(this.getX() + xOffset, this.getY() + this.getPassengersRidingOffset() + passenger.getMyRidingOffset(), this.getZ() + zOffset); } } } MountSyncPacket package com.vals.valscraft.network; import com.vals.valscraft.entity.MountableWolfEntity; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.server.level.ServerLevel; import net.minecraft.server.level.ServerPlayer; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.player.Player; import net.minecraftforge.network.NetworkEvent; import java.util.function.Supplier; public class MountSyncPacket { private final boolean isMounted; public MountSyncPacket(boolean isMounted) { this.isMounted = isMounted; } public void encode(FriendlyByteBuf buffer) { buffer.writeBoolean(isMounted); } public static MountSyncPacket decode(FriendlyByteBuf buffer) { return new MountSyncPacket(buffer.readBoolean()); } public void handle(NetworkEvent.Context context) { context.enqueueWork(() -> { ServerPlayer player = context.getSender(); // Get the player from the context if (player != null) { // Verifies if the player has dismounted if (!isMounted) { Entity vehicle = player.getVehicle(); if (vehicle instanceof MountableWolfEntity wolf) { // Logic to remove the player as a passenger wolf.removePassenger(player); System.out.println("Server: Player " + player.getName().getString() + " is no longer mounted."); } } } }); context.setPacketHandled(true); // Marks the packet as handled } } networkHandler package com.vals.valscraft.network; import com.vals.valscraft.valscraft; import net.minecraft.resources.ResourceLocation; import net.minecraftforge.network.NetworkRegistry; import net.minecraftforge.network.simple.SimpleChannel; import net.minecraftforge.network.NetworkEvent; import java.util.function.Supplier; public class NetworkHandler { private static final String PROTOCOL_VERSION = "1"; public static final SimpleChannel CHANNEL = NetworkRegistry.newSimpleChannel( new ResourceLocation(valscraft.MODID, "main"), () -> PROTOCOL_VERSION, PROTOCOL_VERSION::equals, PROTOCOL_VERSION::equals ); public static void init() { int packetId = 0; // Register the mount synchronization packet CHANNEL.registerMessage( packetId++, MountSyncPacket.class, MountSyncPacket::encode, MountSyncPacket::decode, (msg, context) -> msg.handle(context.get()) // Get the context with context.get() ); } }  
    • Do you use features of inventory profiles next (ipnext) or is there a change without it?
    • Remove rubidium - you are already using embeddium, which is a fork of rubidium
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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