Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

I have this simple entity here:

 

package realmoffera.entity;

import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class EntityCoinsRF extends Entity {
public int value = 10;

public EntityCoinsRF(World world) {
	super(world);
}

public EntityCoinsRF(World world, int value) {
	super(world);
	this.value = value;
}

@Override
public void onCollideWithPlayer(EntityPlayer player) {
	NBTTagCompound nbt = player.getEntityData().getCompoundTag(EntityPlayer.PERSISTED_NBT_TAG);
	nbt.setInteger("Coins", nbt.getInteger("Coins") + value);
}

@Override
protected void entityInit() {
	System.err.println("Initializing coins.");
}

@Override
protected void readEntityFromNBT(NBTTagCompound nbt) {
	value = nbt.getInteger("Value");
}

@Override
protected void writeEntityToNBT(NBTTagCompound nbt) {
	nbt.setInteger("Value", value);
}

@Override
public boolean canAttackWithItem() {
	return false;
}

@Override
protected boolean canTriggerWalking() {
	return false;
}

@Override
public boolean canBePushed() {
	return false;
}

@Override
@SideOnly(Side.CLIENT)
public void performHurtAnimation() {
}
}

 

The problem is that it says that it has been initialized, but it never appears. I've tried overriding the setDead method and seeing if it's being called, but it isn't.

 

 

Any ideas?

Kain

  • Author

I've asked friends about it, and all they did was extend EntityMob. Is there any other way besides making it a mob?

 

I also experimented with it some more, and it seems that it initializes, never gets set dead, and is never updates.

 

Code:

package realmoffera.entity;

import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class EntityCoinsRF extends Entity {
public int value = 10;

public EntityCoinsRF(World world) {
	super(world);
	this.yOffset = 0.0F;
	this.setSize(0.5F, 0.5F);
}

public EntityCoinsRF(World world, int value) {
	this(world);
	this.value = value;
}

@Override
public void onUpdate() {
	super.onUpdate();
	System.err.println("UPDATING");
}

@Override
public void onCollideWithPlayer(EntityPlayer player) {
	NBTTagCompound nbt = player.getEntityData().getCompoundTag(EntityPlayer.PERSISTED_NBT_TAG);
	nbt.setInteger("Coins", nbt.getInteger("Coins") + value);
}

@Override
protected void entityInit() {
}

@Override
protected void readEntityFromNBT(NBTTagCompound nbt) {
	value = nbt.getInteger("Value");
}

@Override
protected void writeEntityToNBT(NBTTagCompound nbt) {
	nbt.setInteger("Value", value);
}

@Override
public boolean canAttackWithItem() {
	return false;
}

@Override
protected boolean canTriggerWalking() {
	return false;
}

@Override
public boolean canBePushed() {
	return true;
}

@Override
@SideOnly(Side.CLIENT)
public void performHurtAnimation() {
}
}

Kain

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.