Jump to content

Render biped arm multiplayer


Lyon

Recommended Posts

Hello,

I want to add a lantern, which is held by the player with streched out arms. I already managed to render the arms when holding a lantern in hand. But if another player is also rendered, the arm of the other player is rendered at my position.

Is there some way to fix this ? Help would be appreciated. 

Here is my code:

 

ToolLamp:

public class ToolLamp extends ItemBase
{
	public ToolLamp(String name) 
	{
		super(name);
		setMaxStackSize(1);
	}
}

 

LoginHandler:

public class LoginHandler 
{
	@SideOnly(Side.CLIENT)
	@SubscribeEvent
	public void onLogin(EntityJoinWorldEvent event)
	{
		if(event.getEntity() instanceof EntityPlayer && event.getWorld().isRemote)
		{
			MinecraftForge.EVENT_BUS.register(new LampHandler());
		}
	}
}

 

LampHandler:

public class LampHandler 
{
	
	public LampHandler() 
	{
	}
	
	@SideOnly(Side.CLIENT)
	@SubscribeEvent
	public void onPreRender(RenderPlayerEvent.Pre event)
	{
		EntityPlayer player = event.getEntityPlayer();
		
		if(player.getHeldItem(EnumHand.MAIN_HAND).getItem().equals(ItemInit.Lamp))
		{
			event.getRenderer().getMainModel().bipedRightArm.isHidden=true;
			event.getRenderer().getMainModel().bipedRightArmwear.isHidden=true;
		}
		if(player.getHeldItem(EnumHand.OFF_HAND).getItem().equals(ItemInit.Lamp))
		{
			event.getRenderer().getMainModel().bipedLeftArm.isHidden=true;
			event.getRenderer().getMainModel().bipedLeftArmwear.isHidden=true;
		}
	}
	
	@SideOnly(Side.CLIENT)
	@SubscribeEvent
	public void onPostRender(RenderPlayerEvent.Post event)
	{
		EntityPlayer player = event.getEntityPlayer();
		float yRotationPoint = 20.5F;
		
		if(player.isSneaking())
		{
			yRotationPoint = 16.5F; 
		}
		
		if(player.getHeldItem(EnumHand.MAIN_HAND).getItem().equals(ItemInit.Lamp))
		{
			//rotate arm
			event.getRenderer().getMainModel().bipedRightArm.isHidden=false;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointX = -MathHelper.cos((float)Math.toRadians(player.renderYawOffset)) * 4.2F;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointY = yRotationPoint;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointZ = -MathHelper.sin((float)Math.toRadians(player.renderYawOffset)) * 5.0F;
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleX = (float)Math.toRadians(90.0F);
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleY = (float)-Math.toRadians(player.renderYawOffset);
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleZ = 0.0F;
			event.getRenderer().bindTexture(event.getRenderer().getEntityTexture((AbstractClientPlayer)player));
			event.getRenderer().getMainModel().bipedRightArm.renderWithRotation(0.0625F);
			event.getRenderer().getMainModel().bipedRightArm.rotationPointY = 2.0F;
		}
		if(player.getHeldItem(EnumHand.OFF_HAND).getItem().equals(ItemInit.Lamp))
		{
			//rotate arm
			event.getRenderer().getMainModel().bipedLeftArm.isHidden=false;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointX = MathHelper.cos((float)Math.toRadians(player.renderYawOffset)) * 4.2F;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointY = yRotationPoint;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointZ = MathHelper.sin((float)Math.toRadians(player.renderYawOffset)) * 5.0F;
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleX = (float)Math.toRadians(90.0F);
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleY = (float)-Math.toRadians(player.renderYawOffset);
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleZ = 0.0F;
			event.getRenderer().bindTexture(event.getRenderer().getEntityTexture((AbstractClientPlayer)player));
			event.getRenderer().getMainModel().bipedLeftArm.renderWithRotation(0.0625F);
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointY = 2.0F;
		}
	}
}

 

Link to comment
Share on other sites

8 minutes ago, Lyon said:

public void onLogin(EntityJoinWorldEvent event)

No dont do this. You only need to register it once. Not every time a player logs in.

 

8 minutes ago, Lyon said:

Is there some way to fix this ?

Check if the entity player is the client player? Assuming I understand this correctly.

player == Minecraft#player

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.

Link to comment
Share on other sites

1 hour ago, Animefan8888 said:

Check if the entity player is the client player? Assuming I understand this correctly.

player == Minecraft#player

i have the exact same problem with my mediating pose.. but doing it that way it would only render correctly for the client player and not for every other player too. basically im in multiplayer and if the other player meditates, his arms are rendered on mine ://

Link to comment
Share on other sites

Just now, eatthenight said:

im in multiplayer and if the other player meditates, his arms are rendered on mine ://

Ok you'll have to render it different if it isn't the client player than you would if it was the client player. @Lyon

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.

Link to comment
Share on other sites

3 minutes ago, Animefan8888 said:

Ok you'll have to render it different if it isn't the client player than you would if it was the client player. @Lyon

but how do you do that? how do i get the model of other players and change the rotation of arms and stuff..? idk because it seems everything works fine except the position is set to the clients player arms and not of the player who’s actually mediating..

Edited by eatthenight
Link to comment
Share on other sites

Just now, eatthenight said:

but how do you do that? how do i get the model of other players and change the rotation of arms and stuff..?

The RenderPlayerEvent is called for all Player entities. You'll just have to do what you have been doing just twice and differently. IE

if eventPlayer is clientPlayer
   // Render what you have
else

  // Render with different settings that make it look correct.

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.

Link to comment
Share on other sites

2 minutes ago, Animefan8888 said:

The RenderPlayerEvent is called for all Player entities. You'll just have to do what you have been doing just twice and differently. IE

if eventPlayer is clientPlayer
   // Render what you have
else

  // Render with different settings that make it look correct.

exactly but what im confused about is event.getEntityPlayer() should give the player who's rendered if im not mistaken? but why does it render on the client player and not on the player who's actually mediating? like the arms are rendered on the position of the client players arms..... but i use the values of event.getEntityPlayer() to set the position so it should be rendered on the correct position? it seems somehow event.getEntityPlayer gives me the wrong player? im rotating the arms of the right player just the position is wrong cuz when i mediate my player has no arms.

 

Link to comment
Share on other sites

5 minutes ago, eatthenight said:

exactly but what im confused about is event.getEntityPlayer() should give the player who's rendered if im not mistaken? but why does it render on the client player and not on the player who's actually mediating? like the arms are rendered on the position of the client players arms..... but i use the values of event.getEntityPlayer() to set the position so it should be rendered on the correct position? it seems somehow event.getEntityPlayer gives me the wrong player? im rotating the arms of the right player just the position is wrong cuz when i mediate my player has no arms.

How about you make your own thread and post your code so we can give you appropriate help.

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.

Link to comment
Share on other sites

Thank you very much for replying.

@Animefan8888

I added "GlStateManager.translate" like you advised eatthenight in his thread.

Now the arms are rendering at the right spot, but they're glitching back and forth as I move. Is there a way to fix this?

Here's my new code:

Spoiler

public class LampHandler 
{	
	@SideOnly(Side.CLIENT)
	@SubscribeEvent
	public void onPreRender(RenderPlayerEvent.Pre event)
	{
		EntityPlayer player = event.getEntityPlayer();
		
		GlStateManager.pushMatrix();
		
		if(player.getHeldItem(EnumHand.MAIN_HAND).getItem().equals(ItemInit.Lamp))
		{
			event.getRenderer().getMainModel().bipedRightArm.isHidden=true;
		}
		if(player.getHeldItem(EnumHand.OFF_HAND).getItem().equals(ItemInit.Lamp))
		{
			event.getRenderer().getMainModel().bipedLeftArm.isHidden=true;
		}
	}
	
	@SideOnly(Side.CLIENT)
	@SubscribeEvent
	public void onPostRender(RenderPlayerEvent.Post event)
	{
		EntityPlayer playerR = event.getEntityPlayer();
		EntityPlayer playerC = Minecraft.getMinecraft().player;
		float yRotationPoint = 20.5F;
		
		if(!playerR.equals(playerC))
		{
			GlStateManager.translate(playerR.posX-playerC.posX, playerR.posY-playerC.posY, playerR.posZ-playerC.posZ);
		}
		
		if(playerR.isSneaking())
		{
			yRotationPoint = 16.5F; 
		}
		
		if(playerR.getHeldItem(EnumHand.MAIN_HAND).getItem().equals(ItemInit.Lamp))
		{			
			event.getRenderer().getMainModel().bipedRightArm.isHidden=false;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointX = -MathHelper.cos((float)Math.toRadians(playerR.renderYawOffset)) * 4.2F;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointY = yRotationPoint;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointZ = -MathHelper.sin((float)Math.toRadians(playerR.renderYawOffset)) * 5.0F;
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleX = (float)Math.toRadians(90.0F);
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleY = (float)-Math.toRadians(playerR.renderYawOffset);
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleZ = 0.0F;
			event.getRenderer().bindTexture(event.getRenderer().getEntityTexture((AbstractClientPlayer)playerR));
			event.getRenderer().getMainModel().bipedRightArm.renderWithRotation(0.0625F);
			event.getRenderer().getMainModel().bipedRightArm.rotationPointY = 2.0F;
		}
		if(playerR.getHeldItem(EnumHand.OFF_HAND).getItem().equals(ItemInit.Lamp))
		{
			event.getRenderer().getMainModel().bipedLeftArm.isHidden=false;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointX = MathHelper.cos((float)Math.toRadians(playerR.renderYawOffset)) * 4.2F;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointY = yRotationPoint;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointZ = MathHelper.sin((float)Math.toRadians(playerR.renderYawOffset)) * 5.0F;
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleX = (float)Math.toRadians(90.0F);
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleY = (float)-Math.toRadians(playerR.renderYawOffset);
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleZ = 0.0F;
			event.getRenderer().bindTexture(event.getRenderer().getEntityTexture((AbstractClientPlayer)playerR));
			event.getRenderer().getMainModel().bipedLeftArm.renderWithRotation(0.0625F);
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointY = 2.0F;
		}
		
		GlStateManager.popMatrix();
	}
}

 

 

Link to comment
Share on other sites

6 hours ago, Lyon said:

Now the arms are rendering at the right spot, but they're glitching back and forth as I move. Is there a way to fix this?

You've gotta interpolate the position of them. Using the partialTicks value in the event and the Entity#posX/Y/Z and Entity#lastPosX/Y/Z

  • Thanks 1

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.

Link to comment
Share on other sites

@Animefan8888

Now it's working really well. Thank so much ?.

Here's my code:

 

LampHandler:

Spoiler

 


public class LampHandler 
{	
	@SideOnly(Side.CLIENT)
	@SubscribeEvent
	public void onPreRender(RenderPlayerEvent.Pre event)
	{
		EntityPlayer player = event.getEntityPlayer();
		
		GlStateManager.pushMatrix();
		
		if(player.getHeldItem(EnumHand.MAIN_HAND).getItem().equals(ItemInit.Lamp))
		{
			event.getRenderer().getMainModel().bipedRightArm.isHidden=true;
		}
		if(player.getHeldItem(EnumHand.OFF_HAND).getItem().equals(ItemInit.Lamp))
		{
			event.getRenderer().getMainModel().bipedLeftArm.isHidden=true;
		}
	}
	
	@SideOnly(Side.CLIENT)
	@SubscribeEvent
	public void onPostRender(RenderPlayerEvent.Post event)
	{
		EntityPlayer playerR = event.getEntityPlayer();
		EntityPlayer playerC = Minecraft.getMinecraft().player;
		float yRotationPoint = 20.5F;
		
		if(!playerR.equals(playerC))
		{
			GlStateManager.translate(Utils.getPlayerXOffset(playerR, playerC, event.getPartialRenderTick()), Utils.getPlayerYOffset(playerR, playerC, event.getPartialRenderTick()), Utils.getPlayerZOffset(playerR, playerC, event.getPartialRenderTick()));
		}
		
		if(playerR.isSneaking())
		{
			yRotationPoint = 16.5F; 
		}
		
		if(playerR.getHeldItem(EnumHand.MAIN_HAND).getItem().equals(ItemInit.Lamp))
		{
			
			//rotate arm
			event.getRenderer().getMainModel().bipedRightArm.isHidden=false;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointX = -MathHelper.cos((float)Math.toRadians(playerR.renderYawOffset)) * 4.2F;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointY = yRotationPoint;
			event.getRenderer().getMainModel().bipedRightArm.rotationPointZ = -MathHelper.sin((float)Math.toRadians(playerR.renderYawOffset)) * 5.0F;
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleX = (float)Math.toRadians(90.0F);
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleY = (float)-Math.toRadians(playerR.renderYawOffset);
			event.getRenderer().getMainModel().bipedRightArm.rotateAngleZ = 0.0F;
			event.getRenderer().bindTexture(event.getRenderer().getEntityTexture((AbstractClientPlayer)playerR));
			event.getRenderer().getMainModel().bipedRightArm.renderWithRotation(0.0625F);
			event.getRenderer().getMainModel().bipedRightArm.rotationPointY = 2.0F;
		}
		if(playerR.getHeldItem(EnumHand.OFF_HAND).getItem().equals(ItemInit.Lamp))
		{
			//rotate arm
			event.getRenderer().getMainModel().bipedLeftArm.isHidden=false;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointX = MathHelper.cos((float)Math.toRadians(playerR.renderYawOffset)) * 4.2F;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointY = yRotationPoint;
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointZ = MathHelper.sin((float)Math.toRadians(playerR.renderYawOffset)) * 5.0F;
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleX = (float)Math.toRadians(90.0F);
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleY = (float)-Math.toRadians(playerR.renderYawOffset);
			event.getRenderer().getMainModel().bipedLeftArm.rotateAngleZ = 0.0F;
			event.getRenderer().bindTexture(event.getRenderer().getEntityTexture((AbstractClientPlayer)playerR));
			event.getRenderer().getMainModel().bipedLeftArm.renderWithRotation(0.0625F);
			event.getRenderer().getMainModel().bipedLeftArm.rotationPointY = 2.0F;
		}
		
		GlStateManager.popMatrix();
	}
}

 

Utils:

Spoiler

public class Utils 
{
	public static final double getPlayerXOffset(EntityPlayer pR, EntityPlayer pC, float partialTick)
	{
		return (pR.lastTickPosX+((pR.posX-pR.lastTickPosX)*partialTick))-(pC.lastTickPosX+((pC.posX-pC.lastTickPosX)*partialTick));
	}
	
	public static final double getPlayerYOffset(EntityPlayer pR, EntityPlayer pC, float partialTick)
	{
		return (pR.lastTickPosY+((pR.posY-pR.lastTickPosY)*partialTick))-(pC.lastTickPosY+((pC.posY-pC.lastTickPosY)*partialTick));
	}
	
	public static final double getPlayerZOffset(EntityPlayer pR, EntityPlayer pC, float partialTick)
	{
		return (pR.lastTickPosZ+((pR.posZ-pR.lastTickPosZ)*partialTick))-(pC.lastTickPosZ+((pC.posZ-pC.lastTickPosZ)*partialTick));
	}
}

 

 

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • OLXTOTO: Platform Maxwin dan Gacor Terbesar Sepanjang Masa OLXTOTO telah menetapkan standar baru dalam dunia perjudian dengan menjadi platform terbesar untuk pengalaman gaming yang penuh kemenangan dan kegacoran, sepanjang masa. Dengan fokus yang kuat pada menyediakan permainan yang menghadirkan kesenangan tanpa batas dan peluang kemenangan besar, OLXTOTO telah menjadi pilihan utama bagi para pencinta judi berani di Indonesia. Maxwin: Mengejar Kemenangan Terbesar Maxwin bukan sekadar kata-kata kosong di OLXTOTO. Ini adalah konsep yang ditanamkan dalam setiap aspek permainan yang mereka tawarkan. Dari permainan slot yang menghadirkan jackpot besar hingga berbagai opsi permainan togel dengan hadiah fantastis, para pemain dapat memperoleh peluang nyata untuk mencapai kemenangan terbesar dalam setiap taruhan yang mereka lakukan. OLXTOTO tidak hanya menawarkan kesempatan untuk menang, tetapi juga menjadi wadah bagi para pemain untuk meraih impian mereka dalam perjudian yang berani. Gacor: Keberuntungan yang Tak Tertandingi Keberuntungan seringkali menjadi faktor penting dalam perjudian, dan OLXTOTO memahami betul akan hal ini. Dengan berbagai strategi dan analisis yang disediakan, pemain dapat menemukan peluang gacor yang tidak tertandingi dalam setiap taruhan. Dari hasil togel yang tepat hingga putaran slot yang menguntungkan, OLXTOTO memastikan bahwa setiap taruhan memiliki potensi untuk menjadi momen yang mengubah hidup. Inovasi dan Kualitas Tanpa Batas Tidak puas dengan prestasi masa lalu, OLXTOTO terus berinovasi untuk memberikan pengalaman gaming terbaik kepada para pengguna. Dengan menggabungkan teknologi terbaru dengan desain yang ramah pengguna, platform ini menyajikan antarmuka yang mudah digunakan tanpa mengorbankan kualitas. Setiap pembaruan dan peningkatan dilakukan dengan tujuan tunggal: memberikan pengalaman gaming yang tanpa kompromi kepada setiap pengguna. Komitmen Terhadap Kepuasan Pelanggan Di balik kesuksesan OLXTOTO adalah komitmen mereka terhadap kepuasan pelanggan. Tim dukungan pelanggan yang profesional siap membantu para pemain dalam setiap langkah perjalanan gaming mereka. Dari pertanyaan teknis hingga bantuan dengan transaksi keuangan, OLXTOTO selalu siap memberikan pelayanan terbaik kepada para pengguna mereka. Penutup: Mengukir Sejarah dalam Dunia Perjudian Daring OLXTOTO bukan sekadar platform perjudian berani biasa. Ini adalah ikon dalam dunia perjudian daring Indonesia, sebuah destinasi yang menyatukan kemenangan dan keberuntungan dalam satu tempat yang mengasyikkan. Dengan komitmen mereka terhadap kualitas, inovasi, dan kepuasan pelanggan, OLXTOTO terus mengukir sejarah dalam dunia perjudian berani, menjadi nama yang tak terpisahkan dari pengalaman gaming terbaik. Bersiaplah untuk mengalami sensasi kemenangan terbesar dan keberuntungan tak terduga di OLXTOTO - platform maxwin dan gacor terbesar sepanjang masa.
    • OLXTOTO - Bandar Togel Online Dan Slot Terbesar Di Indonesia OLXTOTO telah lama dikenal sebagai salah satu bandar online terkemuka di Indonesia, terutama dalam pasar togel dan slot. Dengan reputasi yang solid dan pengalaman bertahun-tahun, OLXTOTO menawarkan platform yang aman dan andal bagi para penggemar perjudian daring. DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI Beragam Permainan Togel Sebagai bandar online terbesar di Indonesia, OLXTOTO menawarkan berbagai macam permainan togel. Mulai dari togel Singapura, togel Hongkong, hingga togel Sidney, pemain memiliki banyak pilihan untuk mencoba keberuntungan mereka. Dengan sistem yang transparan dan hasil yang adil, OLXTOTO memastikan bahwa setiap taruhan diproses dengan cepat dan tanpa keadaan. Slot Online Berkualitas Selain togel, OLXTOTO juga menawarkan berbagai permainan slot online yang menarik. Dari slot klasik hingga slot video modern, pemain dapat menemukan berbagai opsi permainan yang sesuai dengan preferensi mereka. Dengan grafis yang memukau dan fitur bonus yang menggiurkan, pengalaman bermain slot di OLXTOTO tidak akan pernah membosankan. Keamanan dan Kepuasan Pelanggan Terjamin Keamanan dan kepuasan pelanggan merupakan prioritas utama di OLXTOTO. Mereka menggunakan teknologi enkripsi terbaru untuk melindungi data pribadi dan keuangan para pemain. Tim dukungan pelanggan yang ramah dan responsif siap membantu pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Promosi dan Bonus Menarik OLXTOTO sering menawarkan promosi dan bonus menarik kepada para pemainnya. Mulai dari bonus selamat datang hingga bonus deposit, pemain memiliki kesempatan untuk meningkatkan kemenangan mereka dengan memanfaatkan berbagai penawaran yang tersedia. Penutup Dengan reputasi yang solid, beragam permainan berkualitas, dan komitmen terhadap keamanan dan kepuasan pelanggan, OLXTOTO tetap menjadi salah satu pilihan utama bagi para pecinta judi online di Indonesia. Jika Anda mencari pengalaman berjudi yang menyenangkan dan terpercaya, OLXTOTO layak dipertimbangkan.
    • I have been having a problem with minecraft forge. Any version. Everytime I try to launch it it always comes back with error code 1. I have tried launching from curseforge, from the minecraft launcher. I have also tried resetting my computer to see if that would help. It works on my other computer but that one is too old to run it properly. I have tried with and without mods aswell. Fabric works, optifine works, and MultiMC works aswell but i want to use forge. If you can help with this issue please DM on discord my # is Haole_Dawg#6676
    • Add the latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here  
    • I have no idea how a UI mod crashed a whole world but HUGE props to you man, just saved me +2 months of progress!  
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.