Jump to content

[1.11] [SOLVED] Help disabling xp orbs on dead from a minion.


Recommended Posts

Posted

Hi everybody,

 

I have a problem coding my mod. I'm doing a summonable bear by extending EntityPolarBear class and implementing IEntityOwnable interface. Everything  works alright but when i kill my minion, it drop xp orbs which is a undesairable behavior. Could some help me disabling this feature? This is my code:

 

public class EntitySoulBear extends EntityPolarBear implements IEntityOwnable {
protected static int puntosAsignados;
private static double saludMaxima;
private static final int SALUD_INICIAL = 30;

protected static final DataParameter<Byte> TAMED = EntityDataManager.<Byte>createKey(EntityTameable.class,
		DataSerializers.BYTE);
protected static final DataParameter<Optional<UUID>> OWNER_UNIQUE_ID = EntityDataManager
		.<Optional<UUID>>createKey(EntityTameable.class, DataSerializers.OPTIONAL_UNIQUE_ID);

public EntitySoulBear(World worldIn) {
	super(worldIn);
	// this.setOwnerId(null);
	this.setTamed(false);

}

public EntitySoulBear(World worldIn, EntityPlayer playerIn) {
	this(worldIn);
	this.setOwnerId(playerIn.getUniqueID());
	this.setTamed(true);
}

@Override
protected void initEntityAI() {
	//super.initEntityAI();
	this.tasks.addTask(0, new EntityAISwimming(this));
	this.tasks.addTask(1, new EntityAIWatchClosest(this, EntityMob.class, 8.0F));
	// this.tasks.addTask(1, new EntityPolarBear.AIMeleeAttack());
	//this.tasks.addTask(2, new EntityAILeapAtTarget(this, 0.4F));
	this.tasks.addTask(3, new SoulBearAIMeleeAttack(this, 1.25D, true));
	// this.tasks.addTask(2, new EntityAIAttackMelee(this, 1.0D, true));
	// this.tasks.addTask(1, new EntityPolarBear.AIPanic());
	// this.tasks.addTask(3, new EntityAIPanic(this, 2.0D));

	//this.tasks.addTask(3, new EntityAIFollowParent(this, 1.25D));
	this.tasks.addTask(4, new SoulBearAIFollowOwner(this, 1.0D, 10.0F, 2.0F));
	this.tasks.addTask(5, new EntityAIWander(this, 1.0D));
	this.tasks.addTask(6, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F));
	this.tasks.addTask(7, new EntityAILookIdle(this));

	this.targetTasks.addTask(1, new SoulBearAIOwnerHurtByTarget(this));
	this.targetTasks.addTask(2, new SoulBearAIOwnerHurtTarget(this));
	this.targetTasks.addTask(3, new EntityAIHurtByTarget(this, true, new Class[0]));
	this.targetTasks.addTask(4, new EntityAINearestAttackableTarget(this, EntityMob.class, true));
	this.targetTasks.addTask(4, new EntityAINearestAttackableTarget(this, EntitySlime.class, true));
}

@Override
protected void applyEntityAttributes() {
	// super.applyEntityAttributes();

	EntityPlayer ep = Minecraft.getMinecraft().player;
	if (ep != null) {
		PlayerSkillCapability playerCapability = (PlayerSkillCapability) PlayerSkillCapabilityProvider.Get(ep);
		if (playerCapability != null) {
			this.puntosAsignados = playerCapability.getPaSoulBear();
			/*
			 * System.out.println( "===========>soulWolf PA:" +
			 * this.puntosAsignados + " SERVER?: " +
			 * !this.worldObj.isRemote);
			 */
			saludMaxima = this.puntosAsignados + SALUD_INICIAL;
		}
	}

	this.getAttributeMap().registerAttribute(SharedMonsterAttributes.MAX_HEALTH);
	this.getAttributeMap().registerAttribute(SharedMonsterAttributes.KNOCKBACK_RESISTANCE);
	this.getAttributeMap().registerAttribute(SharedMonsterAttributes.MOVEMENT_SPEED);
	this.getAttributeMap().registerAttribute(SharedMonsterAttributes.ARMOR);
	this.getAttributeMap().registerAttribute(SharedMonsterAttributes.ARMOR_TOUGHNESS);

	this.getAttributeMap().registerAttribute(SharedMonsterAttributes.FOLLOW_RANGE).setBaseValue(16.0D);

	this.getEntityAttribute(SharedMonsterAttributes.MAX_HEALTH).setBaseValue(30.0D);
	this.getEntityAttribute(SharedMonsterAttributes.FOLLOW_RANGE).setBaseValue(20.0D);
	this.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.25D);
	this.getEntityAttribute(SharedMonsterAttributes.ARMOR).setBaseValue(1.5D);
	this.getAttributeMap().registerAttribute(SharedMonsterAttributes.ATTACK_DAMAGE);
	// this.getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).setBaseValue(6.0D);
	this.getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE)
			.setBaseValue((1.0D * 0.35 * puntosAsignados) + 4); // 4-10 dmg
																// thru 20
																// lvls
	this.getEntityAttribute(SharedMonsterAttributes.MAX_HEALTH).setBaseValue(saludMaxima);
}

@Override
protected void entityInit() {
	super.entityInit();
	this.dataManager.register(TAMED, Byte.valueOf((byte) 0));
	this.dataManager.register(OWNER_UNIQUE_ID, Optional.<UUID>absent());
}

@Override
public void onLivingUpdate() {
	super.onLivingUpdate();
	if (this.getOwner() == null || this.getOwner().isDead)
		this.setDead();
}

@Override
public UUID getOwnerId() {
	return (UUID) ((Optional) this.dataManager.get(OWNER_UNIQUE_ID)).orNull();
}

public void setOwnerId(@Nullable UUID p_184754_1_) {
	this.dataManager.set(OWNER_UNIQUE_ID, Optional.fromNullable(p_184754_1_));
}

@Override
@Nullable
public EntityLivingBase getOwner(){
        try {
            UUID uuid = this.getOwnerId();
            return uuid == null ? null : this.world.getPlayerEntityByUUID(uuid);
        }
        catch (IllegalArgumentException var2){
            return null;
        }
    }

public void setTamed(boolean tamed) {
	// super.setTamed(tamed);
	byte tamedByte = ((Byte) this.dataManager.get(TAMED)).byteValue();
	if (tamed) {
		this.dataManager.set(TAMED, Byte.valueOf((byte) (tamedByte | 4)));
	} else {
		this.dataManager.set(TAMED, Byte.valueOf((byte) (tamedByte & -5)));
	}
}

public boolean isOwner(EntityLivingBase entityIn) {
	return entityIn == this.getOwner();
}

@Override
public Team getTeam() {
	if (this.isTamed()) {
		EntityLivingBase entitylivingbase = (EntityLivingBase) this.getOwner();

		if (entitylivingbase != null) {
			return entitylivingbase.getTeam();
		}
	}
	return super.getTeam();
}

@Override
public boolean isOnSameTeam(Entity entityIn) {
	// super.isOnSameTeam(entityIn);
	if (this.isTamed()) {
		EntityLivingBase entitylivingbase = (EntityLivingBase) this.getOwner();

		if (entityIn == entitylivingbase) {
			return true;
		}

		if (entitylivingbase != null) {
			boolean isOnTeam = entitylivingbase.isOnSameTeam(entityIn);
			boolean isSameOwner = false;
			if (entityIn instanceof IEntityOwnable && ((IEntityOwnable) entityIn).getOwner() != null)
				isSameOwner = entitylivingbase.getUniqueID()
						.equals(((IEntityOwnable) entityIn).getOwner().getUniqueID());
			return isOnTeam || isSameOwner;
		}
	}

	return super.isOnSameTeam(entityIn);
}

public boolean isTamed() {
	return (((Byte) this.dataManager.get(TAMED)).byteValue() & 4) != 0;
}

public boolean isSitting() {
	return (((Byte) this.dataManager.get(TAMED)).byteValue() & 1) != 0;
}

@Override
public void onDeath(DamageSource cause) {
	if (!this.world.isRemote && this.world.getGameRules().getBoolean("showDeathMessages")
			&& this.getOwner() instanceof EntityPlayerMP) {
		// this.getOwner().addChatMessage(this.getCombatTracker().getDeathMessage());
		this.setTamed(false);
	}
	super.onDeath(cause);
}

public static void setPuntosAsignados(int puntos) {
	puntosAsignados = puntos;
}

public void playWarningSound() {
	super.playWarningSound();
}

public boolean shouldAttackEntity(EntityLivingBase p_142018_1_, EntityLivingBase p_142018_2_) {
	if (/* !(p_142018_1_ instanceof EntityCreeper) && */ !(p_142018_1_ instanceof EntityGhast)) {

		if (p_142018_1_ instanceof EntitySoulBear) {
			EntitySoulBear soulBear = (EntitySoulBear) p_142018_1_;

			if (soulBear.isTamed() && soulBear.getOwner() == p_142018_2_) {
				return false;
			}
		}
		if (p_142018_1_ instanceof EntityWolf) {
			EntityWolf entitywolf = (EntityWolf) p_142018_1_;

			if (entitywolf.isTamed() && entitywolf.getOwner() == p_142018_2_) {
				return false;
			}
		}

		return p_142018_1_ instanceof EntityPlayer && p_142018_2_ instanceof EntityPlayer
				&& !((EntityPlayer) p_142018_2_).canAttackPlayer((EntityPlayer) p_142018_1_) ? false
						: !(p_142018_1_ instanceof AbstractHorse) || !((AbstractHorse) p_142018_1_).isTame();
	} else {
		return false;
	}
}

@Override
public boolean attackEntityAsMob(Entity entityIn) {
	super.attackEntityAsMob(entityIn);
	boolean flag = entityIn.attackEntityFrom(DamageSource.causeMobDamage(this),
			(float) ((int) this.getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).getAttributeValue()));
	if (flag) {
		this.applyEnchantments(this, entityIn);
		// Cura 1.5 cada que ataca
		// this.heal(1.5F);
	}
	return flag;
}
}

 

Thanks in advance

Posted

Override the

getExperiencePoints

in your

Entity

class to control how much experience is dropped.

 

It worked! Now i'm trying to get the mobs drop XP points when my summonable bear kill them. Any ideas? Many Thanks.

Posted

EXP only drops if mobs are killed by the player.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

You'll have to examine the EntityWolf class to see how it does it.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

I already did. Even EntityTamable (Which is the extra class that EntityWolf inherits from unlike EntityPolarBear) and they don't seem to have any code for setting experience orbs from mobs they kill. any idea folks?

Posted

I already did. Even EntityTamable (Which is the extra class that EntityWolf inherits from unlike EntityPolarBear) and they don't seem to have any code for setting experience orbs from mobs they kill. any idea folks?

Make yours extend EntityTameable and if it is not supposed to function that way you will need to subscribe to LivingDeathEvent and spawn the exp points yourself.

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

Ok it worked. Here's what i did: I copied EntityPolarBear into a new class and made it extend from EntityTameable. Then i copied Model an Render into new classes and adapted them to my bear class. Tank you very much.

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

    • Hi, i'm really having problems trying to set the texture to my custom item. I thought i'm doing everything correctly, but all i see is the missing texture block for my item. I am trying this for over a week now and getting really frustrated. The only time i could make the texture work, was when i used an older Forge version (52.0.1) for Minecraft (1.21.4). Was there a fundamental change for textures and models somewhere between versions that i'm missing? I started with Forge 54.1.0 and had this problem, so in my frustration i tried many things: Upgrading to Forge 54.1.1, created multiple new projects, workspaces, redownloaded everything and setting things up multiple times, as it was suggested in an older thread. Therea are no errors in the console logs, but maybe i'm blind, so i pasted the console logs to pastebin anyway: https://pastebin.com/zAM8RiUN The only time i see an error is when i change the models JSON file to an incorrect JSON which makes sense and that suggests to me it is actually reading the JSON file.   I set the github repository to public, i would be so thankful if anyone could take a look and tell me what i did wrong: https://github.com/xLorkin/teleport_pug_forge   As a note: i'm pretty new to modding, this is my first mod ever. But i'm used to programming. I had some up and downs, but through reading the documentation, using google and experimenting, i could solve all other problems. I only started modding for Minecraft because my son is such a big fan and wanted this mod.
    • Please read the FAQ (link in orange bar at top of page), and post logs as described there.
    • Hello fellow Minecrafters! I recently returned to Minecraft and realized I needed a wiki that displays basic information easily and had great user navigation. That’s why I decided to build: MinecraftSearch — a site by a Minecraft fan, for Minecraft fans. Key Features So Far Straight-to-the-Point Info: No extra fluff; just the essentials on items, mobs, recipes, loot and more. Clean & Intuitive Layout: Easy navigation so you spend less time scrolling and more time playing. Optimized Search: Search for anything—items, mobs, blocks—and get results instantly. What I’m Thinking of Adding More data/information: Catch chances for fishing rod, traveling villager trades, biomes info and a lot more. The website is still under development and need a lot more data added. Community Contributions: Potential for user-uploaded tips for items/mobs/blocks in the future. Feature Requests Welcome: Your ideas could shape how the wiki evolves! You can see my roadmap at the About page https://minecraftsearch.com/about I’d love for you to check out MinecraftSearch and see if it helps you find the info you need faster. Feedback is crucial—I want to develop this further based on what the community needs most, so please let me know what you think. Thanks, and happy crafting!
    • Instructions on how to install newer Java can be found in the FAQ
    • That's just plain wrong... newer versions are much better optimised and start a lot faster than 1.8.9, both Forge and Minecraft itself. Comparing Fabric 1.21 with Forge 1.8 is like comparing apples and oranges... one's brand new and the other's over a decade old.
  • Topics

×
×
  • Create New...

Important Information

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