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

So basically I want to create an entity that has a custom value in his NBT (the custom value is a string).

But I have no idea of how to write a new value or how to read it !

Can someone help me please ?

 

My code so far with my entity

Spoiler

package fr.uiytt.playershop.Entity;


import java.util.List;
import java.util.UUID;

import fr.uiytt.playershop.Main;
import net.minecraft.entity.EntityCreature;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.SoundEvents;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.DamageSource;
import net.minecraft.util.SoundEvent;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.Style;
import net.minecraft.util.text.TextComponentString;
import net.minecraft.world.World;

public class PlayerShop extends EntityCreature {

	private boolean shopopen = false;
	
	
	public PlayerShop(World worldIn) {
		super(worldIn);
		setupAI();
	}
	@Override
	public float getBlockPathWeight(BlockPos pos)
    {
        return 0.1F;
    }
	
	@Override
	protected void applyEntityAttributes() {
		super.applyEntityAttributes();
		this.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.5D);
		this.getEntityAttribute(SharedMonsterAttributes.KNOCKBACK_RESISTANCE).setBaseValue(1.0D);
		this.getEntityAttribute(SharedMonsterAttributes.FOLLOW_RANGE).setBaseValue(16.0D);
	}

	@Override
	public boolean isAIDisabled() {
		return false;
	}
	
	
	
	protected void setupAI() {
		clearAITasks();
		this.tasks.addTask(0,new EntityAISwimming(this));
		this.tasks.addTask(1,new EntityAIShopWander(this));
		this.tasks.addTask(2,new EntityAIWatchClosest(this, EntityPlayer.class, 10.0F));
	}
	
	protected void clearAITasks() {
		this.tasks.taskEntries.clear();
		this.targetTasks.taskEntries.clear();
	}
    
	
	@Override
	public boolean attackEntityFrom(DamageSource dmsource, float dmg) {
		if(this.getIsInvulnerable()) {
			return false;
		}
		
		if(!(dmsource.getTrueSource() instanceof EntityPlayer)) {
			return false;
		}else {
			EntityPlayer player = (EntityPlayer)dmsource.getTrueSource();
			if(player.capabilities.isCreativeMode) {
				
				this.damageEntity(dmsource, dmg);
				this.playHurtSound(dmsource);
				this.performHurtAnimation();
				return true;
			}
				
		}
		return false;
		
	}
	
	
	protected SoundEvent getHurtSound(DamageSource damageSourceIn)
    {
        return SoundEvents.ENTITY_VILLAGER_HURT;
    }

    protected SoundEvent getDeathSound()
    {
        return SoundEvents.ENTITY_VILLAGER_DEATH;
    }

	
	public boolean isShopopen() {
		return shopopen;
	}
	public void setShopopen(boolean shopopen) {
		this.shopopen = shopopen;
	}

}

 

 

Edited by uiytt

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.