Jump to content

Gui, Container and not being able to open them.


SenpaiSubaraki

Recommended Posts

I have been modding on this mod for a few days now.

(I've got a nice tad of experience modding. dont worry )

 

Evertything works fine, apart from one thing.

 

Here's the idea :

When the Player opens the Vanilla Inventory, I open an ALternative gui, with two buttons : close and Rpg Inventory.

I got that working fine trought the ClientTickHandler.

 

The second button, the one that makes us go to a new Gui : My Rpg Inventory, is where the problems are.

 

I've tried opening it with ModLoader.openGui().

I've tried opening trough EntityPlayer.openGui().

I've tried sending a packet to the ServerPacketHandler opening either ModLoader.openGui or EntityPlayer.openGui().

I've tried going trough the Client and Commen Proxy to open the new gui, with gui client and server side, and container trough server side.

 

In any of those ways, either it wont show the gui, and just pops me back in to the 'playng minecraft' mode, or it shows the gui, with container, which is completely (sorry for the word) f**ked up.*

 

*definition of that word : I can pick up items 1 chance out of 100. if i can, i can or not put it back, or put it back, but it will pop in another slot. or i can take out items, but the whole inventory gets mixed up, or i click a slot, and the item 4 slots away will be taken out.

 

I've been told this is a server/client problem, which I do think it is too.

 

I would show you my code, but it's completly messed up atm.

 

Though, here are a few of them.

 

CommonProxy

 

package RpgInventory;

import net.minecraft.client.Minecraft;

import net.minecraft.client.gui.GuiScreen;

import net.minecraft.client.gui.inventory.GuiInventory;

import net.minecraft.client.multiplayer.WorldClient;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.inventory.ContainerPlayer;

import net.minecraft.src.ModLoader;

import net.minecraft.world.World;

import cpw.mods.fml.common.TickType;

import cpw.mods.fml.common.network.FMLNetworkHandler;

import cpw.mods.fml.common.network.IGuiHandler;

 

 

public class CommonProxy implements IGuiHandler

{

 

    public void registerRenderInformation()

    {

    } 

 

//    public void openGui(EntityPlayer player, int id)

//    {

// int x = (int)player.posX;

// int y = (int)player.posY;

// int z = (int)player.posZ;

//

// if(id == 1)

// {

// this.getServerGuiElement(1,player,Minecraft.getMinecraft().theWorld,x,y,z);

// this.getClientGuiElement(1,player,Minecraft.getMinecraft().theWorld,x,y,z);

// }

//    }

    @Override

    public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)

    {       System.out.println("COMMON PROXY READ CONTAINER");

 

return new RpgContainer(player);   

    }

 

    @Override

    public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)

    {

    System.out.println("COMMON PROXY READ GUI");

 

return new RpgGui(player);   

    }

}

 

 

 

ClientProxy

 

package RpgInventory;

import net.minecraft.client.Minecraft;

import net.minecraft.client.model.ModelBiped;

import net.minecraft.client.model.ModelBlaze;

import net.minecraft.client.model.ModelCreeper;

import net.minecraft.client.renderer.entity.RenderBiped;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.inventory.ContainerPlayer;

import net.minecraft.src.ModLoader;

import net.minecraft.world.World;

import net.minecraft.world.biome.BiomeGenBase;

import net.minecraftforge.client.MinecraftForgeClient;

import cpw.mods.fml.client.registry.RenderingRegistry;

import cpw.mods.fml.common.registry.GameRegistry;

 

public class ClientProxy extends CommonProxy

{

 

    public void registerRenderInformation()

    {

  MinecraftForgeClient.preloadTexture("/subaraki/RPGinventoryTM.png");

    }   

   

//    public void openGui(EntityPlayer player, int id)

//    {

//   

// int x = (int)player.posX;

// int y = (int)player.posY;

// int z = (int)player.posZ;

//

// if(id == 1)

// {

// this.getClientGuiElement(1,player,Minecraft.getMinecraft().theWorld,x,y,z);

// }

//    }

 

    @Override

    public Object getServerGuiElement(int ID, EntityPlayer player, World world,

    int x, int y, int z) {

    System.out.println("CLIENT PROXY READ CONTAINER");

 

    return null;

    }

   

    @Override

    public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)

    {

    System.out.println("CLIENT PROXY READ GUI ");

    return new RpgGui(player);

    }

}

 

 

Alternative Gui

 

package RpgInventory;

 

import java.io.ByteArrayOutputStream;

import java.io.IOException;

import java.io.ObjectOutput;

import java.io.ObjectOutputStream;

 

import net.minecraft.client.gui.GuiButton;

import net.minecraft.client.gui.inventory.GuiContainerCreative;

import net.minecraft.client.gui.inventory.GuiInventory;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.network.packet.Packet250CustomPayload;

import net.minecraft.src.ModLoader;

import cpw.mods.fml.common.network.FMLNetworkHandler;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

@SideOnly(Side.CLIENT)

public class AlternativeGui extends GuiInventory{

 

public int var1 = 75;

    public int var2 = -110;

   

    @SideOnly(Side.CLIENT)

public AlternativeGui(EntityPlayer par1EntityPlayer) {

super(par1EntityPlayer);

 

}

/**

    * Adds the buttons (and other controls) to the screen in question.

    */

@Override

    public void initGui()

    {

        this.controlList.clear();

        if (this.mc.playerController.isInCreativeMode())

        {

            this.mc.displayGuiScreen(new GuiContainerCreative(this.mc.thePlayer));

        }

        else

        {

            super.initGui();

            int posX = (this.width) / 2;

            int posY = (this.height) / 2;

            this.controlList.add(new GuiButton(0, posX-var1,      posY+var2, 75, 20, "Rpg Inventory"));

            this.controlList.add(new GuiButton(1, posX-var1+ 80,  posY+var2, 75, 20, "Close"));

        }

    }

public void actionPerformed(GuiButton button){

 

if(button.id == 0)

{

 

ByteArrayOutputStream bytes = new ByteArrayOutputStream() ;

ObjectOutput out;

try {

out = new ObjectOutputStream(bytes);    

out.writeInt(1);

out.close();

Packet250CustomPayload packet = new Packet250CustomPayload("RPGInv",bytes.toByteArray());

ModLoader.clientSendPacket(packet);

}

catch (IOException e) {

e.printStackTrace();

}

 

}

if(button.id == 1)

{

this.mc.thePlayer.closeScreen();

}

 

}

}

 

 

 

RpgGui

 

package RpgInventory;

 

import net.minecraft.client.Minecraft;

import net.minecraft.client.gui.GuiButton;

import net.minecraft.client.gui.inventory.GuiContainer;

import net.minecraft.client.renderer.OpenGlHelper;

import net.minecraft.client.renderer.RenderHelper;

import net.minecraft.client.renderer.entity.RenderManager;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.inventory.ContainerPlayer;

import net.minecraft.inventory.IInventory;

import net.minecraft.src.ModLoader;

 

import org.lwjgl.opengl.GL11;

import org.lwjgl.opengl.GL12;

 

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

@SideOnly(Side.CLIENT)

public class RpgGui extends GuiContainer

{

private float xSize_lo;

    private float ySize_lo;

 

 

public RpgGui(EntityPlayer player) {

super(new RpgContainer(player));

IInventory inv = new InventoryRpg(player);

IInventory invplayer = InventoryPlayer(player);

// xSize = 176;

// ySize = 166;

}

 

private IInventory InventoryPlayer(EntityPlayer player) {

return player.inventory;

 

}

 

public static String  hi = "Rpg Inventory"; 

    public void drawScreen(int par1, int par2, float par3)

    {

        super.drawScreen(par1, par2, par3);

        this.xSize_lo = (float)par1;

        this.ySize_lo = (float)par2;

    }

   

    protected void drawGuiContainerBackgroundLayer(float var1, int var2,

int var3) {

   

int var4 = this.mc.renderEngine.getTexture("/subaraki/RpgInv.png");

        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);

        this.mc.renderEngine.bindTexture(var4);

        int var5 = this.height;

        int var6 = this.width;

        int posX = (this.width - xSize) / 2;

int posY = (this.height - ySize) / 2;

drawTexturedModalRect(posX, posY, 0, 0, xSize, ySize);

drawString(fontRenderer, hi, this.width/2 + 15, this.height/2-15, 0xffffff);

        renderPlayerinInv(this.mc, posX + 51, posY + 75, 30, (float)(posX + 51) - this.xSize_lo, (float)(posY + 75 - 50) - this.ySize_lo);

    }

    public static void renderPlayerinInv(Minecraft par0Minecraft, int par1, int par2, int par3, float par4, float par5)

{

    GL11.glEnable(GL11.GL_COLOR_MATERIAL);

    GL11.glPushMatrix();

    GL11.glTranslatef((float)par1, (float)par2, 50.0F);

    GL11.glScalef((float)(-par3), (float)par3, (float)par3);

    GL11.glRotatef(180.0F, 0.0F, 0.0F, 1.0F);

    float var6 = par0Minecraft.thePlayer.renderYawOffset;

    float var7 = par0Minecraft.thePlayer.rotationYaw;

    float var8 = par0Minecraft.thePlayer.rotationPitch;

    GL11.glRotatef(135.0F, 0.0F, 1.0F, 0.0F);

    RenderHelper.enableStandardItemLighting();

    GL11.glRotatef(-135.0F, 0.0F, 1.0F, 0.0F);

    GL11.glRotatef(-((float)Math.atan((double)(par5 / 40.0F))) * 20.0F, 1.0F, 0.0F, 0.0F);

    par0Minecraft.thePlayer.renderYawOffset = (float)Math.atan((double)(par4 / 40.0F)) * 20.0F;

    par0Minecraft.thePlayer.rotationYaw = (float)Math.atan((double)(par4 / 40.0F)) * 40.0F;

    par0Minecraft.thePlayer.rotationPitch = -((float)Math.atan((double)(par5 / 40.0F))) * 20.0F;

    par0Minecraft.thePlayer.rotationYawHead = par0Minecraft.thePlayer.rotationYaw;

    GL11.glTranslatef(0.0F, par0Minecraft.thePlayer.yOffset, 0.0F);

    RenderManager.instance.playerViewY = 180.0F;

    RenderManager.instance.renderEntityWithPosYaw(par0Minecraft.thePlayer, 0.0D, 0.0D, 0.0D, 0.0F, 1.0F);

    par0Minecraft.thePlayer.renderYawOffset = var6;

    par0Minecraft.thePlayer.rotationYaw = var7;

    par0Minecraft.thePlayer.rotationPitch = var8;

    GL11.glPopMatrix();

    RenderHelper.disableStandardItemLighting();

    GL11.glDisable(GL12.GL_RESCALE_NORMAL);

    OpenGlHelper.setActiveTexture(OpenGlHelper.lightmapTexUnit);

    GL11.glDisable(GL11.GL_TEXTURE_2D);

    OpenGlHelper.setActiveTexture(OpenGlHelper.defaultTexUnit);

}

 

public void initGui()

{

super.initGui();

this.controlList.clear();

 

int posX = (this.width - xSize) / 2;

int posY = (this.height - ySize) / 2;

 

this.controlList.add(new GuiButton(0, posX + 115, posY + 20, 50, 20, "Back"));

}

 

public boolean doesGuiPauseGame()

{

    return false;

}

public void actionPerformed(GuiButton button){

 

if(button.id == 0)

{

EntityPlayer player = ModLoader.getMinecraftInstance().thePlayer;

    player.inventoryContainer = new ContainerPlayer(Minecraft.getMinecraft().thePlayer.inventory, !Minecraft.getMinecraft().theWorld.isRemote, player);

        ModLoader.openGUI(player, new AlternativeGui(Minecraft.getMinecraft().thePlayer));

 

}

 

}

}

 

 

and offcourse, the @mod

 

package RpgInventory;

 

import net.minecraft.item.Item;

import net.minecraft.network.packet.Packet250CustomPayload;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.Init;

import cpw.mods.fml.common.Mod.Instance;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.network.NetworkMod;

import cpw.mods.fml.common.network.NetworkMod.SidedPacketHandler;

import cpw.mods.fml.common.network.NetworkRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

import cpw.mods.fml.common.registry.TickRegistry;

import cpw.mods.fml.relauncher.Side;

 

@Mod(modid = "RPGInventoryMod", name = "Subarakis RPG Inventory mod", version = "14710")

@NetworkMod(clientSideRequired = true, serverSideRequired = false,

clientPacketHandlerSpec =

@SidedPacketHandler(channels = {"RPGInv" }, packetHandler = ClientPacketHandler.class),

serverPacketHandlerSpec =

@SidedPacketHandler(channels = {"RPGInv" }, packetHandler = ServerPacketHandler.class))

 

public class AARpgBaseClass {

 

public static Item neckleather;

public static Item neckiron;

public static Item neckgold;

public static Item shieldwood;

public static Item shieldiron;

public static Item shieldgold;

public static Item glovesleather;

public static Item glovesiron;

public static Item glovesbutter;

public static Item cloak;

public static Item cloakI;

public static Item ringleath;

public static Item ringiron;

public static Item ringgold;

@SidedProxy(serverSide = "RpgInventory.CommonProxy",clientSide = "RpgInventory.ClientProxy")

 

public static CommonProxy proxy;

   

@Instance(value= "RPGInventoryMod")

public static AARpgBaseClass instance = new AARpgBaseClass();

 

@Init

public void load(FMLInitializationEvent event)

{

// Args : Mineral, effect, (nrItems, timeInSecs/hearts%2)

// With Diamond : Regen Effect  (1,10),(2,5),(3,4),(4,3)

// With Emerald : Damage reduction Effect (1,1),(2,2),(3,3),(4,4)

// With Lapis :  Damage+ (1,2),(2,3),(3,4),(4,5)

 

neckleather  = new ItemArmorRpg(5784,  5).setIconIndex(0).setItemName("lethernecklace");

neckiron    = new ItemArmorRpg(5785,  5).setIconIndex(1).setItemName("ironnecklace");

neckgold    = new ItemArmorRpg(5786,  5).setIconIndex(2).setItemName("buddernecklace");

 

shieldwood  = new ItemArmorRpg(5787,  7).setIconIndex(3).setItemName("woodshield");

shieldiron  = new ItemArmorRpg(5788,  7).setIconIndex(4).setItemName("ironshield");

shieldgold  = new ItemArmorRpg(5789,  7).setIconIndex(5).setItemName("buddershield");

 

glovesleather= new ItemArmorRpg(5790,  8).setIconIndex(6).setItemName("leddergloves");

glovesiron  = new ItemArmorRpg(5791,  8).setIconIndex(7).setItemName("irongloves");

glovesbutter = new ItemArmorRpg(5792,  8).setIconIndex(8).setItemName("budderrrgloves");

 

cloak      = new ItemArmorRpg(5793,  6).setIconIndex(12).setItemName("cloak");

cloakI    = new ItemArmorRpg(5794,  6).setIconIndex(13).setItemName("InvisibilityCloak");

 

ringleath  = new ItemArmorRpg(5795, 7).setIconIndex(9).setItemName("leatherring");

ringiron  = new ItemArmorRpg(5796, 7).setIconIndex(9).setItemName("anodefer");

ringgold  = new ItemArmorRpg(5797, 7).setIconIndex(9).setItemName("budderring");

 

LanguageRegistry.addName(neckleather, "Wooden Necklace");

LanguageRegistry.addName(neckiron  , "Iron Necklace");

LanguageRegistry.addName(neckgold  , "Gold Necklace");

LanguageRegistry.addName(shieldwood , "Wooden Shield");

LanguageRegistry.addName(shieldiron , "Iron Shield");

LanguageRegistry.addName(shieldgold , "Golden Shield");

LanguageRegistry.addName(glovesleather, "Leather Gloves");

LanguageRegistry.addName(glovesiron  , "Iron Gloves");

LanguageRegistry.addName(glovesbutter , "Gold Gloves");

LanguageRegistry.addName(cloak,"Cloak");

LanguageRegistry.addName(cloakI,"Invisibility Cloak");

LanguageRegistry.addName(ringleath,"Leather Ring");

LanguageRegistry.addName(ringiron,"Iron Ring");

LanguageRegistry.addName(ringgold,"Golden Ring");

 

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

 

TickRegistry.registerTickHandler(new ClientTickHandler(), Side.CLIENT);

 

Packet250CustomPayload packet = new Packet250CustomPayload();

packet.channel = "RPGInv";

}

 

}

 

 

 

 

 

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

    • >>>KLIK LOGIN DISINI SAYANG<<< >>>KLIK DAFTAR DISINI SAYANG<<< Pendahuluan Dalam dunia perjudian online, slot menjadi salah satu permainan yang paling diminati. Dengan munculnya berbagai platform, Togel2Win hadir sebagai salah satu pilihan menarik, terutama dengan fitur anti rungkad yang dijanjikan. Artikel ini akan membahas tentang Togel2Win, keunggulan slot terbaru, dan bagaimana server Thailand berperan dalam meningkatkan pengalaman bermain. Apa Itu Togel2Win? Togel2Win adalah platform permainan yang menawarkan berbagai jenis permainan, termasuk slot dan togel. Dengan antarmuka yang ramah pengguna dan beragam pilihan permainan, situs ini bertujuan untuk memberikan pengalaman bermain yang menyenangkan dan menguntungkan bagi para pemain. Keunggulan Slot Togel2Win Fitur Anti Rungkad: Salah satu keunggulan utama dari Togel2Win adalah fitur anti rungkad yang dirancang untuk mengurangi kemungkinan gangguan saat bermain. Ini memastikan bahwa pemain dapat menikmati permainan tanpa gangguan teknis, meningkatkan kenyamanan dan fokus. Beragam Pilihan Slot: Togel2Win menawarkan berbagai jenis slot, dari yang klasik hingga yang modern dengan grafis menawan dan tema yang menarik. Ini memberikan variasi yang cukup bagi pemain untuk menemukan permainan yang sesuai dengan preferensi mereka. Server Thailand yang Stabil: Server yang berlokasi di Thailand memberikan koneksi yang cepat dan stabil. Ini sangat penting untuk pengalaman bermain yang lancar, terutama saat bermain slot yang memerlukan respons cepat. Bonus dan Promosi Menarik: Togel2Win sering menawarkan bonus dan promosi yang menarik untuk menarik pemain baru dan mempertahankan loyalitas pemain yang sudah ada. Ini bisa berupa bonus deposit, putaran gratis, atau program loyalitas. Tips untuk Pemain Slot di Togel2Win Pilih Slot dengan RTP Tinggi: Sebelum memulai permainan, pastikan untuk memilih slot dengan tingkat pengembalian pemain (RTP) yang tinggi untuk meningkatkan peluang menang. Kelola Anggaran: Tentukan batasan anggaran sebelum bermain dan patuhi itu. Ini membantu mencegah kerugian besar dan menjaga pengalaman bermain tetap menyenangkan. Manfaatkan Bonus: Jangan ragu untuk memanfaatkan bonus dan promosi yang ditawarkan. Ini bisa memberikan tambahan modal untuk bermain lebih lama. Kesimpulan Togel2Win merupakan pilihan menarik bagi para penggemar slot, terutama dengan fitur anti rungkad dan server yang stabil. Dengan berbagai pilihan permainan dan bonus yang menggiurkan, Togel2Win siap memberikan pengalaman bermain yang tak terlupakan. Jika Anda mencari platform slot yang andal dan menyenangkan, Togel2Win bisa menjadi solusi yang tepat.
    • I'm trying to make my own modpack, but sometimes, in certain areas of the world, the game just says "server closed". Minecraft doesn't close, it just returns to the menu. When I tried to figure it out on my own and understand the logs, I didn't understand anything (English is not my native language, so it's difficult for me). I've been trying to solve the problem for the third month. So I ask if anyone is good at this and it's not difficult for you, to help me with this. If you need details, ask. I'll describe everything. What it looks like Logs
    • Hi i installed modpack to my server, it starts but when i join it crashes everytime, im running 1.20.1 forge version, all client mods are deleted from the server.   java.lang.NoClassDefFoundError: Could not initialize class sun.security.ssl.SSLContextImpl$DefaultSSLContext at java.lang.Class.forName0(Native Method) ~[?:?] {re:mixin} at java.lang.Class.forName(Class.java:390) ~[?:?] {re:mixin} at java.lang.Class.forName(Class.java:381) ~[?:?] {re:mixin} at java.security.Provider$Service.getImplClass(Provider.java:1967) ~[?:?] {} at java.security.Provider$Service.getDefaultConstructor(Provider.java:1998) ~[?:?] {} at java.security.Provider$Service.newInstanceOf(Provider.java:1912) ~[?:?] {} at java.security.Provider$Service.newInstanceUtil(Provider.java:1920) ~[?:?] {} at java.security.Provider$Service.newInstance(Provider.java:1895) ~[?:?] {} at sun.security.jca.GetInstance.getInstance(GetInstance.java:236) ~[?:?] {} at sun.security.jca.GetInstance.getInstance(GetInstance.java:164) ~[?:?] {} at javax.net.ssl.SSLContext.getInstance(SSLContext.java:185) ~[?:?] {} at javax.net.ssl.SSLContext.getDefault(SSLContext.java:110) ~[?:?] {} at javax.net.ssl.SSLSocketFactory.getDefault(SSLSocketFactory.java:83) ~[?:?] {} at javax.net.ssl.HttpsURLConnection.getDefaultSSLSocketFactory(HttpsURLConnection.java:336) ~[?:?] {} at javax.net.ssl.HttpsURLConnection.<init>(HttpsURLConnection.java:292) ~[?:?] {} at sun.net.www.protocol.https.HttpsURLConnectionImpl.&lt;init&gt;(HttpsURLConnectionImpl.java:81) ~[?:?] {} at sun.net.www.protocol.https.Handler.openConnection(Handler.java:62) ~[?:?] {} at sun.net.www.protocol.https.Handler.openConnection(Handler.java:57) ~[?:?] {} at java.net.URL.openConnection(URL.java:1095) ~[?:?] {re:mixin} at java.net.URL.openStream(URL.java:1162) ~[?:?] {re:mixin} at xxrexraptorxx.additionalstructures.utils.Events.SupporterCheck(Events.java:129) ~[AdditionalStructures-1.20.x-(v.4.2.2).jar%23401!/:4.2.2] {re:classloading} at xxrexraptorxx.additionalstructures.utils.Events.SupporterRewards(Events.java:86) ~[AdditionalStructures-1.20.x-(v.4.2.2).jar%23401!/:4.2.2] {re:classloading} at xxrexraptorxx.additionalstructures.utils.__Events_SupporterRewards_PlayerLoggedInEvent.invoke(.dynamic) ~[AdditionalStructures-1.20.x-(v.4.2.2).jar%23401!/:4.2.2] {re:classloading,pl:eventbus:B} at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%2352!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%2352!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%2352!/:?] {} at net.minecraftforge.event.ForgeEventFactory.firePlayerLoggedIn(ForgeEventFactory.java:875) ~[forge-1.20.1-47.3.0-universal.jar%23694!/:?] {re:mixin,re:classloading,pl:mixin:A} at net.minecraft.server.players.PlayerList.m_11261_(PlayerList.java:261) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A} at net.minecraft.server.network.ServerLoginPacketListenerImpl.m_143699_(ServerLoginPacketListenerImpl.java:139) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:krypton.mixins.json:shared.network.pipeline.encryption.ServerLoginNetworkHandlerMixin,pl:mixin:APP:connectivity.mixins.json:ServerLoginNetHandlerMixin,pl:mixin:A} at net.minecraft.server.network.ServerLoginPacketListenerImpl.m_10055_(ServerLoginPacketListenerImpl.java:126) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:krypton.mixins.json:shared.network.pipeline.encryption.ServerLoginNetworkHandlerMixin,pl:mixin:APP:connectivity.mixins.json:ServerLoginNetHandlerMixin,pl:mixin:A} at net.minecraft.server.network.ServerLoginPacketListenerImpl.m_9933_(ServerLoginPacketListenerImpl.java:70) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:krypton.mixins.json:shared.network.pipeline.encryption.ServerLoginNetworkHandlerMixin,pl:mixin:APP:connectivity.mixins.json:ServerLoginNetHandlerMixin,pl:mixin:A} at net.minecraft.network.Connection.m_129483_(Connection.java:263) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,re:classloading,pl:mixin:APP:connectivity.mixins.json:AdvancedPacketErrorLogging,pl:mixin:APP:krypton.mixins.json:shared.network.flushconsolidation.ClientConnectionMixin,pl:mixin:APP:krypton.mixins.json:shared.network.pipeline.compression.ClientConnectionMixin,pl:mixin:APP:krypton.mixins.json:shared.network.pipeline.encryption.ClientConnectionMixin,pl:mixin:APP:connectivity.mixins.json:ConnectionErrorMixin,pl:mixin:APP:connectivity.mixins.json:NetworkManagerMixin,pl:mixin:A} at net.minecraft.server.network.ServerConnectionListener.m_9721_(ServerConnectionListener.java:142) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,re:classloading} at net.minecraft.server.MinecraftServer.m_5703_(MinecraftServer.java:907) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:neruina.mixins.json:MinecraftServerMixin,pl:mixin:A} at net.minecraft.server.dedicated.DedicatedServer.m_5703_(DedicatedServer.java:283) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:lithostitched.mixins.json:server.DedicatedServerMixin,pl:mixin:APP:mixins/common/nochatreports.mixins.json:server.MixinDedicatedServer,pl:mixin:APP:tombstone.mixins.json:DedicatedServerMixin,pl:mixin:A} at net.minecraft.server.MinecraftServer.m_5705_(MinecraftServer.java:814) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:neruina.mixins.json:MinecraftServerMixin,pl:mixin:A} at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:661) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:neruina.mixins.json:MinecraftServerMixin,pl:mixin:A} at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[server-1.20.1-20230612.114412-srg.jar%23689!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:neruina.mixins.json:MinecraftServerMixin,pl:mixin:A} at java.lang.Thread.run(Thread.java:1589) ~[?:?] {re:mixin} Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.ExceptionInInitializerError [in thread " Iron Furnaces Update Checker"] at javax.crypto.Cipher.getInstance(Cipher.java:548) ~[?:?] {re:mixin} at sun.security.ssl.SSLCipher.isTransformationAvailable(SSLCipher.java:523) ~[?:?] {} at sun.security.ssl.SSLCipher.<init>(SSLCipher.java:512) ~[?:?] {} at sun.security.ssl.SSLCipher.<clinit>(SSLCipher.java:93) ~[?:?] {} at sun.security.ssl.CipherSuite.<clinit>(CipherSuite.java:65) ~[?:?] {} at sun.security.ssl.SSLContextImpl.getApplicableSupportedCipherSuites(SSLContextImpl.java:343) ~[?:?] {} at sun.security.ssl.SSLContextImpl$AbstractTLSContext.<clinit>(SSLContextImpl.java:556) ~[?:?] {} at java.lang.Class.forName0(Native Method) ~[?:?] {re:mixin} at java.lang.Class.forName(Class.java:390) ~[?:?] {re:mixin} at java.lang.Class.forName(Class.java:381) ~[?:?] {re:mixin} at java.security.Provider$Service.getImplClass(Provider.java:1967) ~[?:?] {} at java.security.Provider$Service.getDefaultConstructor(Provider.java:1998) ~[?:?] {} at java.security.Provider$Service.newInstanceOf(Provider.java:1912) ~[?:?] {} at java.security.Provider$Service.newInstanceUtil(Provider.java:1920) ~[?:?] {} at java.security.Provider$Service.newInstance(Provider.java:1895) ~[?:?] {} at sun.security.jca.GetInstance.getInstance(GetInstance.java:236) ~[?:?] {} at sun.security.jca.GetInstance.getInstance(GetInstance.java:164) ~[?:?] {} at javax.net.ssl.SSLContext.getInstance(SSLContext.java:185) ~[?:?] {} at javax.net.ssl.SSLContext.getDefault(SSLContext.java:110) ~[?:?] {} at javax.net.ssl.SSLSocketFactory.getDefault(SSLSocketFactory.java:83) ~[?:?] {} at javax.net.ssl.HttpsURLConnection.getDefaultSSLSocketFactory(HttpsURLConnection.java:336) ~[?:?] {} at javax.net.ssl.HttpsURLConnection.<init>(HttpsURLConnection.java:292) ~[?:?] {} at sun.net.www.protocol.https.HttpsURLConnectionImpl.&lt;init&gt;(HttpsURLConnectionImpl.java:81) ~[?:?] {} at sun.net.www.protocol.https.Handler.openConnection(Handler.java:62) ~[?:?] {} at sun.net.www.protocol.https.Handler.openConnection(Handler.java:57) ~[?:?] {} at java.net.URL.openConnection(URL.java:1095) ~[?:?] {re:mixin} at java.net.URL.openStream(URL.java:1162) ~[?:?] {re:mixin} at ironfurnaces.update.ThreadUpdateChecker.run(ThreadUpdateChecker.java:30) ~[ironfurnaces-1.20.1-4.1.6.jar%23534!/:4.1.6] {re:classloading}
  • Topics

×
×
  • Create New...

Important Information

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