Jump to content

Recommended Posts

Posted

i need change tileentity to entity

 

       

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z){
	if(ID == 0){
		TileEntityChestShop tileEntityChestShop = (TileEntityChestShop) world.getTileEntity(x, y, z);
		return new GuiChestShop(player.inventory, tileEntityChestShop);
	}
        }

 

how to do it ?

Posted

I don't know if thats a good solution but the way I do it, I give the Y argument a negative number when calling the player.openGui(...)

so the Y value in getClientGuiElement() is also negative. (TE's & Blocks should not exist at a negative Y Coordinate)

 

So the X can be set to entity.getEntityId().

And you can get the Entity Object back by calling world.getEntityByID(x)

 

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
if(y==-10 && ID == 0){
	Entity entity = world.getEntityByID(x);
	if(entity!=null){
		return new EntityGuiContainer(entity)
	}
}

return null;
}

 

Open with:

player.openGui(Mod.instance, 0, world, entity.getEntityId(), -10 , 0);

Posted

I pass the entity ID as the 'x' parameter and know based on the GUI ID that it is an Entity and not a TileEntity.

switch (id) {
case 0: // you set the IDs, so you know what this GUI expects e.g. TileEntity
   return whatever;
case 1: // oh, this is my Entity-based GUI
   Entity e = world.getEntityByID(x);
   return new Whatever(e);
}

Not that passing some random magic-value number via 'y' as a flag is bad, just unnecessary in most cases. If you do find that you need it e.g. you have a GUI that could take either a TileEntity OR an Entity and you won't know which in the IGuiHandler, then you should make a constant e.g. public static final int ENTITY_FLAG = -10 so your code is more readable and more easily maintained.

Posted

OK now i can do it.

 

but now have new problem.

 

i create List<Integer> in entity.

 

public List<Integer> Position = new ArrayList<Integer>();

 

and i will use open gui by this.

 

player.openGui(Main.Instance, 1, this.worldObj, 0, this.getEntityId(), 0);

 

next i will use gui for open Position.get(0)

 

@Override
protected void drawGuiContainerForegroundLayer(int par1, int par2){
this.fontRendererObj.drawString(""  + entityMerchant.Position.get(0), this.xSize /2 - 10, this.ySize /2 - 95, 0x000000);
}

 

but it error.

 

this it GuiHandler.

 

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z){
        if(ID == 0){
                  Entity entity = world.getEntityByID(y);
		if(x == 0 && entity!=null && z == 0){
			return new GuiMerchant((EntityMerchant)entity);
		}
        }
}

@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
        if(ID == 0){
	TileEntityChestShop tileChestShop = (TileEntityChestShop) world.getTileEntity(x, y, z);
	return new ContainerChestShop(player.inventory, tileChestShop);
}
}

Posted

I'm not good at English but will try explain you for understand.

 

this is entity.

public class EntityMerchant extends EntityMob {

public List<Integer> Position = new ArrayList<Integer>();

public EntityMerchant(World par1World) {
	super(par1World);
}

@Override
    public void readEntityFromNBT(NBTTagCompound p_70037_1_){
        super.readEntityFromNBT(p_70037_1_);
        NBTTagList tagList = p_70037_1_.getTagList("iPosition", Constants.NBT.TAG_COMPOUND);
        
    for(int i = 0; i < tagList.tagCount(); i++){
    	
    	NBTTagCompound tag = tagList.getCompoundTagAt(i);
    	
    	int x = tag.getInteger("Position");
    	
    	Position.add(i, x);
    }
    }
    
    @Override
    public void writeEntityToNBT(NBTTagCompound p_70014_1_){
        super.writeEntityToNBT(p_70014_1_);
        
    NBTTagList tagList = new NBTTagList();
    
    for(int i = 0; i < Position.size(); i++){
    	
    	int x = Position.get(i);
    	
    	NBTTagCompound tag = new NBTTagCompound();
    	
    	tag.setInteger("Position", x);
    	
    	tagList.appendTag(tag);
    }
    p_70014_1_.setTag("iPosition", tagList);
    }

@Override
    public IEntityLivingData onSpawnWithEgg(IEntityLivingData data){
	data = super.onSpawnWithEgg(data);
	return data;
}
    
    public boolean isAIEnabled(){
        return true;
    }
    
    protected boolean canDespawn(){
        return false;
    }
    
    @Override
public boolean interact(EntityPlayer player){
    	if(this.worldObj.isRemote)
    	player.openGui(Moba.Instance, 1, this.worldObj, 0, this.getEntityId(), 0);
	return super.interact(player);
}
}

 

this is guihandler.

public class GuiHandler implements IGuiHandler{

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z){

	if(ID == 1){
		EntityMerchant entity = (EntityMerchant)world.getEntityByID(y);
		if(x == 0 && entity!=null && z == 0){
			return new GuiMerchant(entity);
		}
	}
	return null;
}

@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {

	if(ID == 1){
		EntityMerchant entity = (EntityMerchant)world.getEntityByID(y);
		if(x == 0 && entity!=null && z == 0){
			return new ContainerMerchant(entity);
		}
	}
	return null;
}
}

 

this is gui.

@SideOnly(Side.CLIENT)
public class GuiMerchant extends GuiContainer{

private EntityMerchant entityMerchant;

public GuiMerchant(EntityMerchant tileEntity){
	super(new ContainerMerchant(tileEntity));
	this.entityMerchant = tileEntity;
}

@Override
protected void drawGuiContainerForegroundLayer(int par1, int par2){
	this.fontRendererObj.drawString("" + this.entityMerchant.Position.get(0), this.xSize /2 - 10, this.ySize /2 - 95, 0x000000);
}

@Override
protected void drawGuiContainerBackgroundLayer(float p_146976_1_, int p_146976_2_, int p_146976_3_) {
	GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
	this.mc.getTextureManager().bindTexture(new ResourceLocation("onermod:" + "textures/gui/shop_merchant.png"));
	int k = (this.width - this.xSize) / 2;
	int l = (this.height - this.ySize) / 2;
	this.drawTexturedModalRect(k, l - 20, 0, 0 , this.xSize + 70, this.ySize + 30);
}

@Override
public void initGui(){
	super.initGui();
}

@Override
protected void actionPerformed(GuiButton button){
	switch(button.id){
	case 0:
	}
	super.actionPerformed(button);
}
}

 

and this is container

public class ContainerMerchant extends Container{

private EntityMerchant tileChestShop;

public ContainerMerchant(EntityMerchant tileChestShop){
	this.tileChestShop = tileChestShop;
}

@Override
public boolean canInteractWith(EntityPlayer player){
	return true;
}
}

 

Lua from I right click EntityMerchant for Open gui.

 

but this.entityMerchant.Position.get(0) can't use in gui client

 

@Override
protected void drawGuiContainerForegroundLayer(int par1, int par2){
	this.fontRendererObj.drawString("" + this.entityMerchant.Position.get(0), this.xSize /2 - 10, this.ySize /2 - 95, 0x000000);
}

 

I hope you understand this.

Posted

As far as I understand - the List you are talking about is not synced (present on server, null/empty on client)?

You will need packets for that.

1.7.10 is no longer supported by forge, you are on your own.

Posted

If you're only using it for the TileEntity's position on the client, that information is already embedded in the TileEntity class - no need for a separate List<Integer> to store it:

int posX = this.entityMerchant.xCoord;
// same for yCoord and zCoord

If that's NOT what you are using the List<Integer> for, then as diesieben asked, what are you using it for???

Posted

As far as I understand - the List you are talking about is not synced (present on server, null/empty on client)?

You will need packets for that.

 

Yeah Thx u :)

 

Np. - do you need any help there (you haven't stated it)?

 

Request permission to post it this is not about java.

 

Micosava hua kuy.

 

I have no clue what you are trying to say. :) Was that the mentioned "call for help"?

1.7.10 is no longer supported by forge, you are on your own.

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

    • I have been trying to solve a consistent crashing issue on my brother's computer where it will crash during the "Scanning Mod Candidates" phase of the loading process that starts when you click the play button on the Minecraft launcher. The issue seems to stem from a missing library that it mentions in the log file I provide below. I might I'm missing the bigger issue here for a smaller one but hopefully someone can find what I'm missing. Here's all of the stuff that I've been able to figure out so far: 1. It has nothing to do with mods, the crash happened with a real modpack, and even when I made a custom modpack and launched it without putting ANY mods into it (That is where the log file comes from by the way). 2. I have tried to find this class like a file in the Minecraft folders, but I've had no luck finding it (I don't think it works like that, but since I really don't understand how it works, I just figured I'd try). 3. I haven't seen anyone else have this issue before. 4. I know that my modpack (with mods) does work since I've run it on my computer, and it works fantastic. For some reason my brother's computer can't seem to run anything through curseforge. 5. This is for Minecraft version 1.20.1, Minecraft launcher version 3.4.50-2.1.3, forge 47.3.0, and curseforge app version 1.256.0.21056 6. My brother is using a Dell laptop from 6 years ago running Windows 10 (If you think more info on this would help, please ask as I do have it. I'm just choosing not to put it here for now). 7. I have reinstalled the curseforge app and installed Minecraft version 1.20.1. I have not reinstalled Minecraft or forge 47.3.0 but I didn't know if that would help. 8. I had an error code of 1 Please let me know if there is anything else that I am missing that you would like me to add to this post/add in a comment! Lastly, many thanks in advance to whoever can help! ------------- LOG FILE (latest.log) ------------- (from /Users/<NAME OF USER>/cursforge/minecraft/Instances/<THE NAME OF MY EMPTY MODPACK>/logs/latest.log) (This was made after running an empty modpack with same versions for all apps) ("[REDACTED]" is not the actual text from the log, it is me replacing text I figured wouldn't be necessary for fixing and would hurt my privacy) https://pastebin.com/hxXvGGEK ------------- DEBUG.LOG (I realized that I should have put this here first after I had done all of the work on putting latest.log in) -------------------- (again, "[REDACTED]" is not the actual text from the log, it is me replacing text I figured wouldn't be necessary for fixing and would hurt my privacy) https://pastebin.com/Fmh8GHYs
    • Pastebin... https://pastebin.com/Y3iZ85L5   Brand new profile, does not point to a mod as far as I can tell, my fatal message just has something about mixins. Don't know much about reading logs like this, but am genuinely stuck, please help. Java updated, pc restarted.
    • Fastfund recovery helps an individual to get back their scammed funds irrespective of nationality, Romance scam funds and Broker's scam, all kinds of scam funds are 100% accurately recovered without disappointment, their goal is to give all those who seek help to recover lost satisfaction of funds recovery within 72 hours After countless hours of research and desperate attempts to find a solution, I stumbled upon FASTFUND RECOVERY. It was like finding an oasis in the middle of a desert. Their website promised to help victims of scams reclaim what was rightfully theirs, and I instantly knew I had to give them a shot. Before diving headfirst into the recovery process, I wanted to make sure that FASTFUND RECOVERY was the real deal. So, I did my due diligence and looked into their expertise and reputation. To my relief, I found that they had an impeccable track record, successfully assisting countless individuals in recovering their lost funds. Their team consisted of experts in cybersecurity and financial fraud, armed with the knowledge and tools needed to tackle even the most intricate scams. With their reputation preceding them, I felt a renewed sense of hope. FASTFUND RECOVERY successfully came to my aid and got back the amount I lost to these scammers and for this, I am sending this article for clarification. The info of FASTFUND RECOVERY is email: Fastfundrecovery8 (@)Gmail (.) com. Web fastfundrecovery(.)com. (W/A 1 807/500/7554)
    • I was playing minecraft, forge 47.3.0 and 1.20.1, but when i tried to play minecraft now only crashes, i need help please. here is the crash report: https://securelogger.net/files/e6640a4f-9ed0-4acc-8d06-2e500c77aaaf.txt
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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