Jump to content

[SOLVED] [1.7.2] The Gui needs to read something from the server


TheDav1311

Recommended Posts

@SubscribeEvent
  public void renderTeamBar(RenderGameOverlayEvent event)
  {
	  if(event.isCancelable() || event.type != ElementType.EXPERIENCE)
	  {      
	      return;
	  }

          String  team = this.mc.thePlayer.getTeam().getRegisteredName();
	  
	  if(RoundHandler.isRoundaktiv) //that is a static boolean
	  {
		  FontRenderer fontrenderer = mc.fontRenderer;
		  mc.getTextureManager().bindTexture(new ResourceLocation("minecrafttrouble:textures/gui/teambar.png"));
		  
		  GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F)
		  GL11.glEnable(GL11.GL_BLEND);
		  OpenGlHelper.glBlendFunc(770, 771, 1, 0);
		  GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
		  this.drawTexturedModalRect(this.xPosition, this.yPosition, 0, 0, 100, 20);
		  this.drawCenteredString(fontrenderer, team, this.xPosition + 100 / 2, this.yPosition + (20 -  / 2, 14737632);
	  }
  }

 

The Problem is:

 

In a Lan-World only the Host see the Gui, noone else.

How I can fix that?

Link to comment
Share on other sites

In Minecraft there are networking packets that go between the client (GUI side) and server.  This actually happens even in single-player mode.

 

For the built-in Minecraft and Forge there are several packet systems already in place.  TileEntity uses packets to sync information, the data watcher uses packets, containers use packets, chat uses packets, commands use packets, etc.

 

The problem is that if you're not using one of those then you have to send your own custom packets.  The currently recommended way to do this is to use the simple network wrapper that has recently been fully implemented in Forge.  You should use diesieben07's tutorial to set this up in your mod: http://www.minecraftforge.net/forum/index.php/topic,20135.0.html

 

It is a bit of work, but it is worth doing.  You'll find many times in modding when you need to sync client and server with custom packets.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

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.