Jump to content

Make a mob Explode on hit (and have mob live)


Military Police15

Recommended Posts

So I've been trying to make a mob for my mod, and the concept is this: if the mob gets hurt by the player, the mob explodes, but the mob would still live. I've got most of the AI and attributes down, I'm just having trouble finding a way to code it so when the mob is attacked by the player it explodes. Any help would be appreciated, here is what i've got so far

public class Jeff extends EntityMob
{
	
	private int explosionRadius = 3;
	
	protected void initEntityAI()
	{
		this.tasks.addTask(0, new EntityAISwimming(this));
		this.tasks.addTask(1, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F));
		this.tasks.addTask(2, new EntityAILookIdle(this));
		this.tasks.addTask(3, new EntityAIOpenDoor(this, false));
	}
	
	public float getEyeHeight()
	{
		return 0.5F;
	}

	protected void applyEntityAttributes()
	{
		this.getCreatureAttribute();
		this.getCreatureAttribute();
	}

	protected Jeff(EntityType<?> type, World p_i48553_2_) 
	{
		super(type, p_i48553_2_);
		this.getAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.25D);
	}
	
	
	
}

 

Link to comment
Share on other sites

Override Entity#attackEntityFrom and call World#createExplosion (to create the explosion) if the DamageSource is from a player. Return true in this case as players are able to damage your entity.

If the DamageSource is from an explosion, return false.

Edited by DavidM

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

Link to comment
Share on other sites

45 minutes ago, DavidM said:

Override Entity#attackEntityFrom and call World#createExplosion (to create the explosion) if the DamageSource is from a player. Return true in this case as players are able to damage your entity.

If the DamageSource is from an explosion, return false.

I Found some of the code parts you were talking about, and implemented them into my code, but i have a small problem with 'this.damageEntity', which is giving the error 'Entity Living Base is not applicable for the arguments (EntityPlayer, float)

public class Jeff extends EntityMob
{
	private EntityPlayer player;
	private int explosionRadius = 3;
	
	protected void initEntityAI()
	{
		this.tasks.addTask(0, new EntityAISwimming(this));
		this.tasks.addTask(1, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F));
		this.tasks.addTask(2, new EntityAILookIdle(this));
		this.tasks.addTask(3, new EntityAIOpenDoor(this, false));
	}
	
	public float getEyeHeight()
	{
		return 0.5F;
	}

	protected void applyEntityAttributes()
	{
		this.getCreatureAttribute();
		this.getCreatureAttribute();
	}

	protected Jeff(EntityType<?> type, World p_i48553_2_) 
	{
		super(type, p_i48553_2_);
		this.getAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.25D);
	}
	
	public boolean attackEntityFrom(DamageSource source, float amount)
	{
		if (this.damageEntity(this.player, amount))
		{
			return true;
			World createExplosion;
		}
		else
		{
			return false;
		}
	}
	
	
}

 

Link to comment
Share on other sites

You need to check whether the DamageSource is from a player by checking whether DamageSource#damageType is equal to “player”, not create a new field for player.

 

Do you know Java though? If not, please learn it before making a mod.

Edited by DavidM

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

Link to comment
Share on other sites

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.