Jump to content

[1.8] [SOLVED] Texture and gui books crashing server


skyfir3

Recommended Posts

Seems that when i start up server on eclipse, it crashes and when i remove the registration of textures and server side gui it works.

ClientProxy.class and ServerProxy.class

 

 

Minecraft.getMinecraft().displayGuiScreen(new GuiOreBook());

 

 

TextureManager.class called in main class

 

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(ManagerItem.alloy_book, 0, new ModelResourceLocation(Main.MOD_ID + ":" + "alloyBook", "inventory"));

 

 

 

When i remove these lines, then the server works.

 

Link to comment
Share on other sites

The problem now is how do i open my book gui without using the Minecraft.class.

 

ClientProxy.class

 

 

@Override

public void displayGuiPlasticsBook() {

Minecraft.getMinecraft().displayGuiScreen(new GuiPlasticsBook());

}

 

@Override

public void displayGuiAlloyBook() {

Minecraft.getMinecraft().displayGuiScreen(new GuiAlloyBook());

}

 

@Override

public void displayGuiSteelBook() {

Minecraft.getMinecraft().displayGuiScreen(new GuiSteelBook());

}

 

@Override

public void displayGuiOreBook() {

Minecraft.getMinecraft().displayGuiScreen(new GuiOreBook());

}

 

 

Link to comment
Share on other sites

how do i do it in the ServerProxy?

 

ItemBook.class

 

 

    public ItemStack onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn)

    {

if (!worldIn.isRemote)

{

BlockPos pos = playerIn.getPosition();

Main.proxy.displayGuiBook(worldIn, pos, playerIn);

}

return itemStackIn;

    }

 

 

 

ServerProxy.class

 

 

@Override

public void displayGuiBook(World worldIn, BlockPos pos, EntityPlayer playerIn) {

        playerIn.openGui(Main.instance, Main.GUI_BOOK, worldIn, pos.getX(), pos.getY() , pos.getZ());

}

 

 

 

Proxy.class

 

 

void displayGuiAlloyBook(World worldIn, BlockPos pos, EntityPlayer playerIn);

 

 

 

Server doesn't crash, but nothing happends when i right click the book

Link to comment
Share on other sites

You need to put those types of calls in your ClientProxy.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

They are in my ClientProxy.class

 

 

 

@Override

public void displayGuiPlasticsBook(World worldIn, BlockPos pos, EntityPlayer playerIn) {

Minecraft.getMinecraft().displayGuiScreen(new GuiPlasticsBook());

}

 

@Override

public void displayGuiAlloyBook(World worldIn, BlockPos pos, EntityPlayer playerIn) {

Minecraft.getMinecraft().displayGuiScreen(new GuiAlloyBook());

}

 

@Override

public void displayGuiSteelBook(World worldIn, BlockPos pos, EntityPlayer playerIn) {

Minecraft.getMinecraft().displayGuiScreen(new GuiSteelBook());

}

 

@Override

public void displayGuiOreBook(World worldIn, EntityPlayer playerIn) {

Minecraft.getMinecraft().displayGuiScreen(new GuiSteelBook());

}

 

 

 

But nothing happends when i open book in server

Link to comment
Share on other sites

What do you mean with 'doesn't do anything on server'?

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

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.