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

A mod tried to open a gui on the server without being a NetworkMod <- that what Forge saying when i'm opening GUI,but i have that in main code @NetworkMod(clientSideRequired = true, serverSideRequired = true)

you should have some methods like the following:

 

to open the GUI you should have something like this:

	@Override
public boolean onBlockActivated(World world, int x, int y, int z,
	EntityPlayer player, int par6, float par7, float par8, float par9)
{
	TileEntity tileEntity = world.getBlockTileEntity(x, y, z);

	if (tileEntity == null || player.isSneaking())
	{
		return false;
	}

	player.openGui(MTech.instance, 0, world, x, y, z);
	return true;
}

 

GUI handler:

should be something like this: https://github.com/Yagoki/MTech/blob/master/MTech/mtech/handler/gui/MyGuiHandler.java

The get server GUI element returns false due to the fact none of my blocks have a container (no inventory slots).

 

Also in your main mod file (with all the annotations) make sure there is something lie this line in one of the init methods

	NetworkRegistry.instance().registerGuiHandler(instance, new MyGuiHandler());

 

all of my source code is on github(https://github.com/Yagoki/MTech/) if you want to look through it if you still can't figure it out. (also if you still cant figure it out, there is a tutorial on the wiki which is still quite good, if you can get on there, i seem to be having some trouble with that at the moment). If you get stuck with anything else just say (once you've given it a good shot trying to solve it yourself)

 

Hope all that's useful to you

You need to return the container on the server side

 

Trust me, I very much do not need to, The block has no, and needs no container. I was submitting this as an example to the topic starter on how to do this properly. A container is only needed when the block ether stores items or has inventory slots (e.g. a chest or anvil). If the block does not need this, there is no requirement for the container, so null can be passed to the server GUI element.

If this didn't work, then my GUI wouldn't work which I can assure you it does.

  • Author

do you know what? i'm doing that alredy :| i have GUI Handler,and i'm opening chest right,and and and.....i have evrething,what i need to have for it to work.......but it doesnt work!

work's

 

www.apostropheabuse.com

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.

work's

 

www.apostropheabuse.com

Not if they're obviously foreign... What we need on this forum is a "native language" field by the profile box.

 

I can't find any foreign language that uses apostrophes to denote a plural word.  In fact, I can only find evidence to the reverse: native English speakers using an apostrophe to denote foreign plurals.

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.

work's

 

www.apostropheabuse.com

Not if they're obviously foreign... What we need on this forum is a "native language" field by the profile box.

 

I can't find any foreign language that uses apostrophes to denote a plural word.  In fact, I can only find evidence to the reverse: native English speakers using an apostrophe to denote foreign plurals.

Not that; more like a Google Translate fail or a "I duznt understand Inglish".

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Not that; more like a Google Translate fail or a "I duznt understand Inglish".

 

Oh yeah, well that I give people passes for.

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.

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.