Jump to content

[SOLVED][1.10.2]replacing Playerinventory Gui with custom one


Mark136

Recommended Posts

hallo,

 

I currently stuck at replacing the player's inventory with my custom one,

I have googled much for a solution for this, but cannot find anything that would help me

 

I've already tried this:

@SubscribeEvent
public void PlayerContainerEvent(net.minecraftforge.event.entity.player.PlayerContainerEvent e){
	Container container = e.getContainer();
	EntityPlayer player = e.getEntityPlayer()
	if(container == player.inventoryContainer && !player.isCreative()){	//also true when my custom gui is opened ? and yeah, i wish to keep creative inventory
		System.out.println("do some stuff like opening my own gui & container");
}

 

but somewhere if i open my Gui, the booleancontainer == player.inventoryContainer is also true,

so this hasn't worked for me. does someone know something better then this ore something to fix my problem.

 

my Mod: Extended RPG [W.I.P]

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.