Jump to content

Recommended Posts

Posted (edited)

Hi,

I have a GUI that extends Screen. It is similar to how a writable_book works. There is not a container and no tileentity. The Gui pulls data from NBT from the Item and uses a network handler to send the data to the server.

 

The Gui comes up from an Item by using onItemRightClick. I currently call it from that function like this: Minecraft.getInstance().displayGuiScreen(new MyGuiScreen(playerIn, itemstack, handIn)); That has been working fine until I put my mod on a Dedicated Server and got this error at startup: "Attempted to load class net/minecraft/client/gui/screen/Screen for invalid dist DEDICATED_SERVER". How do I call my Gui properly in 1.14.4 so it doesn't crash the server? I saw some posts that suggested other things like NetworkHooks but those all seemed to require tile entities or containers.

 

Thank you for your help.

Edited by Daniel Rollins
Posted
21 minutes ago, Daniel Rollins said:

Minecraft.getInstance().displayGuiScreen(new MyGuiScreen(playerIn, itemstack, handIn));

You cant access client only code on the server. Use your proxy setup to run this.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Posted

The Screen class you're using is trying to run on the server i'm guessing. Calling it from your client proxy should fix it.

MyScreenObjects Class:

public class MyScreenObjects{
	@ObjectHolder("modid:myobjectholder")
	public static ContainerType<ModContainer> ModContainerScreen;
}

ClientProxy: (IMCOMPLETE PROXY CLASS) You can find a tutorial somewhere on how to set it up right if you don't already have one.

public class ClientProxy implements ProxyInterface{

    @Override
    public void init() {
   		ScreenManager.registerFactory(MyScreenObjects.ModContainerScreen, MyModScreenClass::new);
    }

}

*called in your main class

Posted (edited)
3 hours ago, max2461 said:

The Screen class you're using is trying to run on the server i'm guessing. Calling it from your client proxy should fix it.

MyScreenObjects Class:

ClientProxy: (IMCOMPLETE PROXY CLASS) You can find a tutorial somewhere on how to set it up right if you don't already have one.

*called in your main class

That is the registering of the GUI. OP is having problem with opening the GUI.

 

3 hours ago, Animefan8888 said:

You cant access client only code on the server. Use your proxy setup to run this.

Since the OP is calling the code from Item#onItemRightClick, I would suggest to handle the right click on the server side, then sends a packet to the client to open the GUI. This allows the server to control if the GUI should be opened.

Actually, since the OP is trying to create a book-like GUI about which the server does not care, opening it directly on the client-side should be fine.

Edited by DavidM

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

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.