Jump to content

Crafting for your own Guis


Kloonder

Recommended Posts

Hey there,

I wanted to do Crafting Recepis for this Gui I made.

 

width=256 height=256https://lh5.googleusercontent.com/-ArTaN4mTbTI/U4ibdv02K4I/AAAAAAAAAKE/gdIqT0WI_9E/s426/blockmixergui.png[/img]

 

But my Game keeps Crashing when i join into my world, but i dont know why.

 

If you know why my game is crahing or how to make Crafing Recepis for guis, you clould write it to me. So if you know it yourself or you know any tutorial for this please write it to me.

 

Main class

 

package com.kloon.periodicsystem;

import com.kloon.periodicsystem.crafting.PeriodicsystemCraftingElementMixer;
import com.kloon.periodicsystem.crafting.PeriodicsystemCraftingManager;

import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.Item.ToolMaterial;
import net.minecraft.item.ItemArmor.ArmorMaterial;
import net.minecraft.item.ItemStack;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.network.NetworkRegistry;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraftforge.common.util.EnumHelper;


@Mod(modid = Periodicsystem.MODID, version = Periodicsystem.VERSION)

public class Periodicsystem
{


public static final String MODID = "Periodicsystem";
public static final String VERSION = "1.0";

//Utilityplus CreativTabs

public static final CreativeTabs PeriodicsystemBlocks = new CreativeTabs("Periodicsystem Blocks")
    {
        private static final String __OBFID = "CL_00000010";
        @SideOnly(Side.CLIENT)
        public Item getTabIconItem()
        {
            return Item.getItemFromBlock(Periodicsystem.blockIridiumOre);
        }
    };

    public static final CreativeTabs PeriodicsystemItems = new CreativeTabs("Periodicsystem Items")
    {
        private static final String __OBFID = "CL_00000012";
        @SideOnly(Side.CLIENT)
        public Item getTabIconItem()
        {
            return Periodicsystem.itemOsidiumIngot;
        }
    };
    
    public static final CreativeTabs PeriodicsystemArmor = new CreativeTabs("Periodicsystem Armor")
    {
        private static final String __OBFID = "CL_00000012";
        @SideOnly(Side.CLIENT)
        public Item getTabIconItem()
        {
            return Periodicsystem.itemArmorOsidiumHelmet;
        }
    };
    public static final CreativeTabs PeriodicsystemTools = new CreativeTabs("Periodicsystem Tools")
    {
        private static final String __OBFID = "CL_00000012";
        @SideOnly(Side.CLIENT)
        public Item getTabIconItem()
        {
            return Periodicsystem.OsidiumSword;
        }
    };
    public static Periodicsystem instance;
    //Gui
    public static final int GuiIDElementMixer = 0;
    //Classes
    public static UtilityPlusGenerationClass UtilityPlusGen = new UtilityPlusGenerationClass();
//Blocks
    public static Block blockElementMixer;
    //Ores
public static Block blockIridiumOre;
public static Block blockOsmiumOre;
public static Block blockPlatinumOre;
public static Block blockTitanOre;
//Blocks
public static Block blockIridiumBlock;
public static Block blockOsmiumBlock;
public static Block blockPlatinumBlock;
public static Block blockTitanBlock;
public static Block blockOsidiumBlock;
//Ingots 
public static Item itemIridiumIngot;
public static Item itemOsmiumIngot;
public static Item itemOsidiumIngot;
public static Item itemPlatinumIngot;
public static Item itemTitanIngot;
//Armors
public static ArmorMaterial Osidiumarmor;
public static ArmorMaterial Osmiumarmor;
public static ArmorMaterial Iridiumarmor;
public static ArmorMaterial Platinumarmor;
public static ArmorMaterial Titanarmor;
public static Item itemArmorOsidiumHelmet;
public static Item itemArmorOsidiumchestplate;
public static Item itemArmorOsidiumleggings;
public static Item itemArmorOsidiumboots;
public static Item itemArmorOsmiumHelmet;
public static Item itemArmorOsmiumchestplate;
public static Item itemArmorOsmiumleggings;
public static Item itemArmorOsmiumboots;
public static Item itemArmorIridiumHelmet;
public static Item itemArmorIridiumchestplate;
public static Item itemArmorIridiumleggings;
public static Item itemArmorIridiumboots;
public static Item itemArmorPlatinumHelmet;
public static Item itemArmorPlatinumchestplate;
public static Item itemArmorPlatinumleggings;
public static Item itemArmorPlatinumboots;
public static Item itemArmorTitanHelmet;
public static Item itemArmorTitanchestplate;
public static Item itemArmorTitanleggings;
public static Item itemArmorTitanboots;
//Tools
public static ToolMaterial OsidiumMaterial;
public static ToolMaterial OsmiumMaterial;
public static ToolMaterial IridiumMaterial;
public static ToolMaterial PlatinumMaterial;
public static ToolMaterial TitanMaterial;
public static Item OsidiumSword;
public static Item OsidiumPickaxe;
public static Item OsidiumAxe;
public static Item OsidiumShovel;
public static Item OsmiumSword;
public static Item OsmiumPickaxe;
public static Item OsmiumAxe;
public static Item OsmiumShovel;
public static Item IridiumSword;
public static Item IridiumPickaxe;
public static Item IridiumAxe;
public static Item IridiumShovel;
public static Item PlatinumSword;
public static Item PlatinumPickaxe;
public static Item PlatinumAxe;
public static Item PlatinumShovel;
public static Item TitanSword;
public static Item TitanPickaxe;
public static Item TitanAxe;
public static Item TitanShovel;

//Staffs
public static Item itemTeleportstaff;
public static Item itemSunStaff;





@EventHandler
public void preinit(FMLInitializationEvent event)
{
	instance = this;
//		 = new ().setBlockName("").setBlockTextureName(MODID + ":" + "");
//		registerBlock(, "");
	//Blocks


	blockElementMixer = new BlockElementMixer().setBlockName("Element Mixer").setBlockTextureName(MODID + ":" + "blockElementMixer");
	registerBlock(blockElementMixer, "Element Mixer");
	//Ores

	blockIridiumOre = new BlockIridiumOre().setBlockName("Iridium Ore").setBlockTextureName(MODID + ":" + "blockIridiumOre");
	registerBlock(blockIridiumOre, "Iridium Ore");

	blockOsmiumOre = new BlockOsmiumOre().setBlockName("Osmium Ore").setBlockTextureName(MODID + ":" + "blockOsmiumOre");
	registerBlock(blockOsmiumOre, "Osmium Ore");

	blockPlatinumOre = new BlockPlatinumOre().setBlockName("Platinum Ore").setBlockTextureName(MODID + ":" + "blockPlatinumOre");
	registerBlock(blockPlatinumOre, "Platinum Ore");

	blockTitanOre = new BlockTitanOre().setBlockName("Titan Ore").setBlockTextureName(MODID + ":" + "blockTitanOre");
	registerBlock(blockTitanOre, "Titan Ore");

	blockIridiumBlock = new BlockIridiumBlock().setBlockName("Iridium Block").setBlockTextureName(MODID + ":" + "blockIridiumBlock");
	registerBlock(blockIridiumBlock, "Iridium Block");

	blockOsmiumBlock = new BlockOsmiumBlock().setBlockName("Osmium Block").setBlockTextureName(MODID + ":" + "blockOsmiumBlock");
	registerBlock(blockOsmiumBlock, "Osmium Block");

	blockPlatinumBlock = new BlockPlatinumBlock().setBlockName("Platinum Block").setBlockTextureName(MODID + ":" + "blockPlatinumBlock");
	registerBlock(blockPlatinumBlock, "Platinum Block");

	blockTitanBlock = new BlockTitanBlock().setBlockName("Titan Block").setBlockTextureName(MODID + ":" + "blockTitanBlock");
	registerBlock(blockTitanBlock, "Titan Block");

	blockOsidiumBlock = new BlockOsidiumBlock().setBlockName("Osidium Block").setBlockTextureName(MODID + ":" + "blockOsidiumBlock");
	registerBlock(blockOsidiumBlock, "Osidium Block");
	//Ingots
	// = new ().setTextureName(MODID + ":" + "").setUnlocalizedName("");
	//registerItem(, "");

	itemIridiumIngot = new ItemIridiumItem().setTextureName(MODID + ":" + "IridiumItem").setUnlocalizedName("Iridium Ingot");
	registerItem(itemIridiumIngot, "Iridium");

	itemOsmiumIngot = new ItemOsmiumItem().setTextureName(MODID + ":" + "OsmiumItem").setUnlocalizedName("Osmium Ingot");
	registerItem(itemOsmiumIngot, "Osmium");

	itemOsidiumIngot = new ItemOsidiumItem().setTextureName(MODID + ":" + "OsidiumItem").setUnlocalizedName("Osidium Ingot");
	registerItem(itemOsidiumIngot, "Osidium");

	itemPlatinumIngot = new ItemPlatinumIngot().setTextureName(MODID + ":" + "PlatinumItem").setUnlocalizedName("Platinum Ingot");
	registerItem(itemPlatinumIngot, "Platinum");

	itemTitanIngot = new ItemTitanIngot().setTextureName(MODID + ":" + "TitanItem").setUnlocalizedName("Titan Ingot");
	registerItem(itemTitanIngot, "Titan");

	//Armors
//		 = new  (701, , 0, 0, "").setUnlocalizedName("");
//    	registerItem(, "");
	Osidiumarmor = EnumHelper.addArmorMaterial("OsidiumArmor",33, new int[]{4, 9, 7, 4}, 25);
	Osmiumarmor = EnumHelper.addArmorMaterial("OsmiumArmor",33, new int[]{3, 8, 6, 3}, 25);
	Iridiumarmor = EnumHelper.addArmorMaterial("IridiumArmor",33, new int[]{3, 8, 6, 3}, 25);
	Platinumarmor = EnumHelper.addArmorMaterial("PlatinumArmor",33, new int[]{2, 7, 6, 3}, 25);
	Titanarmor = EnumHelper.addArmorMaterial("TitanArmor",33, new int[]{2, 7, 6, 3}, 25);

	itemArmorOsidiumHelmet = new itemAmorOsidiumArmor (7012, Osidiumarmor, 0, 0, "Odsidium Helmet").setUnlocalizedName("Osidium Helmet");
    	registerItem(itemArmorOsidiumHelmet, "Osidium Helmet");
    	
    	itemArmorOsidiumchestplate = new itemAmorOsidiumArmor (7013, Osidiumarmor, 0, 1, "Osidium Chestplate").setUnlocalizedName("Osidium Chestplate");
    	registerItem(itemArmorOsidiumchestplate, "Osidium Chestplate");
    	
    	itemArmorOsidiumleggings = new itemAmorOsidiumArmor (7014, Osidiumarmor, 0, 2, "Osidium Leggings").setUnlocalizedName("Osidium Leggings");
    	registerItem(itemArmorOsidiumleggings, "Osidium Leggings");
    	
    	itemArmorOsidiumboots = new itemAmorOsidiumArmor (7015, Osidiumarmor, 0, 3, "Osidium Boots").setUnlocalizedName("Osidium Boots");
    	registerItem(itemArmorOsidiumboots, "Osidium Boots");
    	
    	itemArmorOsmiumHelmet= new ItemArmorOsmiumArmor (7016, Osmiumarmor, 0, 0, "Osmium Helmet").setUnlocalizedName("Osmium Helmet");
    	registerItem(itemArmorOsmiumHelmet, "Osmium Helmet");

    	itemArmorOsmiumchestplate= new ItemArmorOsmiumArmor (7017, Osmiumarmor, 0, 1, "Osmium Chestplate").setUnlocalizedName("Osmium Chestplate");
    	registerItem(itemArmorOsmiumchestplate, "Osmium Chestplate");
    
    	itemArmorOsmiumboots= new ItemArmorOsmiumArmor (7018, Osmiumarmor, 0, 2, "Osmium Leggings").setUnlocalizedName("Osmium Leggings");
    	registerItem(itemArmorOsmiumboots, "Osmium Leggings");

    	itemArmorOsmiumboots= new ItemArmorOsmiumArmor (7019, Osmiumarmor, 0, 3, "Osmium Boots").setUnlocalizedName("Osmium Boots");
    	registerItem(itemArmorOsmiumboots, "Osmium Boots");
    	
    	itemArmorIridiumHelmet= new ItemArmorIridiumArmor (7020, Iridiumarmor, 0, 0, "Iridium Helmet").setUnlocalizedName("Iridium Helmet");
    	registerItem(itemArmorIridiumHelmet, "Iridium Helmet");

    	itemArmorIridiumchestplate= new ItemArmorIridiumArmor (7021, Iridiumarmor, 0, 1, "Irdidum Chestplate").setUnlocalizedName("Iridium Chestplate");
    	registerItem(itemArmorIridiumchestplate, "Iridium Chestplate");
    
    	itemArmorIridiumleggings= new ItemArmorIridiumArmor (7022, Iridiumarmor, 0, 2, "Iridium Leggings").setUnlocalizedName("Iridium Leggings");
    	registerItem(itemArmorIridiumleggings, "Iridium Leggings");

    	itemArmorIridiumboots= new ItemArmorIridiumArmor (7023, Iridiumarmor, 0, 3, "Iridium Boots").setUnlocalizedName("Iridium Boots");
    	registerItem(itemArmorIridiumboots, "Iridium Boots");
    	
    	itemArmorPlatinumHelmet = new ItemArmorPlatinumArmor (7024, Platinumarmor, 0, 0, "Platinum Helmet").setUnlocalizedName("Platinum Helmet");
    	registerItem(itemArmorPlatinumHelmet, "Platinum Helmet");

    	itemArmorPlatinumchestplate= new ItemArmorPlatinumArmor (7025, Platinumarmor, 0, 1, "Platinum Chestplate").setUnlocalizedName("Platinum Chestplate");
    	registerItem(itemArmorPlatinumchestplate, "Platinum Chestplate");
    
    	itemArmorPlatinumleggings= new ItemArmorPlatinumArmor (7026, Platinumarmor, 0, 2, "Platinum Leggings").setUnlocalizedName("PLatinum Leggings");
    	registerItem(itemArmorPlatinumleggings, "Platinum Leggings");

    	itemArmorPlatinumboots= new ItemArmorPlatinumArmor (7027, Platinumarmor, 0, 3, "Platinum Boots").setUnlocalizedName("Platinum Boots");
    	registerItem(itemArmorPlatinumboots, "Platinum Boots");
    	
    	itemArmorTitanHelmet = new ItemArmorTitanArmor (7024, Titanarmor, 0, 0, "Titan Helmet").setUnlocalizedName("Titan Helmet");
    	registerItem(itemArmorTitanHelmet, "Titan Helmet");

    	itemArmorTitanchestplate= new ItemArmorTitanArmor (7025, Titanarmor, 0, 1, "Titan Chestplate").setUnlocalizedName("Titan Chestplate");
    	registerItem(itemArmorTitanchestplate, "Titan Chestplate");
    
    	itemArmorTitanleggings= new ItemArmorTitanArmor (7026,Titanarmor, 0, 2, "Titan Leggings").setUnlocalizedName("Titan Leggings");
    	registerItem(itemArmorTitanleggings, "Titan Leggings");

    	itemArmorTitanboots= new ItemArmorTitanArmor (7027, Titanarmor, 0, 3, "Titan Boots").setUnlocalizedName("Titan Boots");
    	registerItem(itemArmorTitanboots, "Titan Boots");
    	
    	//Staffs
    	itemTeleportstaff = new ItemTeleportstaff().setTextureName(MODID + ":" + "TeleportItem").setUnlocalizedName("Teleport Staff").setCreativeTab(PeriodicsystemTools);
	registerItem(itemTeleportstaff, "Teleport Staff");
	itemSunStaff = new ItemSunstaff().setTextureName(MODID + ":" + "SunStaff").setUnlocalizedName("Sun Staff").setCreativeTab(PeriodicsystemTools);
	registerItem(itemSunStaff, "Sun Staff");

	//Tools
//    	 = new (700, ).setTextureName(MODID + ":" + "").setUnlocalizedName("").setCreativeTab(PeriodicsystemTools);
//		registerItem(, "");
    	OsidiumMaterial = EnumHelper.addToolMaterial("OsidiumMaterial", 3, 1601, 9.0F, 5.0F, 16);
    	OsmiumMaterial = EnumHelper.addToolMaterial("OsmaniumMaterial", 3, 1501, 9.0F, 5.0F, 16);
    	IridiumMaterial = EnumHelper.addToolMaterial("IridiumMaterial", 3, 1501, 9.0F, 4.0F, 16);
    	PlatinumMaterial = EnumHelper.addToolMaterial("PlatinumMaterial", 3, 1301, 9.0F, 2.5F, 16);
    	TitanMaterial = EnumHelper.addToolMaterial("TitanMaterial", 3, 2001, 7.0F, 2.5F, 16);

    	OsidiumSword = new OsidiumSword(7001, OsidiumMaterial).setTextureName(MODID + ":" + "Osidiumsword").setUnlocalizedName("Osidium Sword").setCreativeTab(Periodicsystem.PeriodicsystemTools);
	registerItem(OsidiumSword, "Osidium Sword");
	OsidiumPickaxe = new OsidiumPickaxe(7002, OsidiumMaterial).setTextureName(MODID + ":" + "Osidiumpickaxe").setUnlocalizedName("Osidium Pickaxe").setCreativeTab(PeriodicsystemTools);
	registerItem(OsidiumPickaxe, "Osidium Pickaxe");
	OsidiumAxe = new OsidiumAxe(7001, OsidiumMaterial).setTextureName(MODID + ":" + "Osidiumaxe").setUnlocalizedName("Osidium Axe").setCreativeTab(PeriodicsystemTools);
	registerItem(OsidiumAxe, "Osidium Axe");
	OsidiumShovel = new OsidiumShovel(7001, OsidiumMaterial).setTextureName(MODID + ":" + "Osidiumshovel").setUnlocalizedName("Osidium Shovel").setCreativeTab(PeriodicsystemTools);
	registerItem(OsidiumShovel, "Osidium Shovel");


	OsmiumSword = new OsmaniumSword (7003, OsmiumMaterial).setTextureName(MODID + ":" + "OsmiumSword").setUnlocalizedName("Osmium Sword").setCreativeTab(PeriodicsystemTools);
	registerItem(OsmiumSword, "Osmium Sword");
	OsmiumPickaxe = new OsmaniumPickaxe (7003, OsmiumMaterial).setTextureName(MODID + ":" + "OsmiumPickaxe").setUnlocalizedName("Osmium Pickaxe").setCreativeTab(PeriodicsystemTools);
	registerItem(OsmiumPickaxe, "Osmium Pickaxe");
	OsmiumAxe = new OsmaniumAxe (7003, OsmiumMaterial).setTextureName(MODID + ":" + "OsmiumAxe").setUnlocalizedName("Osmium Axe").setCreativeTab(PeriodicsystemTools);
	registerItem(OsmiumAxe, "Osmium Axe");
	OsmiumShovel = new OsmaniumShovel (7003, OsmiumMaterial).setTextureName(MODID + ":" + "OsmiumShovel").setUnlocalizedName("Osmium Shovel").setCreativeTab(PeriodicsystemTools);
	registerItem(OsmiumShovel, "Osmium Shovel");
	IridiumSword = new IridiumSword (7003, IridiumMaterial).setTextureName(MODID + ":" + "IridiumSword").setUnlocalizedName("Iridium Sword").setCreativeTab(PeriodicsystemTools);
	registerItem(IridiumSword, "Iridium Sword");
	IridiumPickaxe = new IridiumPickaxe (7003, IridiumMaterial).setTextureName(MODID + ":" + "IridiumPickaxe").setUnlocalizedName("Iridium Pickaxe").setCreativeTab(PeriodicsystemTools);
	registerItem(IridiumPickaxe, "Iridium Pickaxe");
	IridiumAxe = new IridiumAxe (7003, IridiumMaterial).setTextureName(MODID + ":" + "IridiumAxe").setUnlocalizedName("iridium Axe").setCreativeTab(PeriodicsystemTools);
	registerItem(IridiumAxe, "Iridium Axe");
	IridiumShovel = new IridiumShovel (7003, IridiumMaterial).setTextureName(MODID + ":" + "IridiumShovel").setUnlocalizedName("Iridium Shovel").setCreativeTab(PeriodicsystemTools);
	registerItem(IridiumShovel, "Iridium Shovel");
	PlatinumSword = new PlatinumSword (7003, PlatinumMaterial).setTextureName(MODID + ":" + "PlatinumSword").setUnlocalizedName("Platinum Sword").setCreativeTab(PeriodicsystemTools);
	registerItem(PlatinumSword, "Platinum Sword");
	PlatinumPickaxe = new PlatinumPickaxe (7003, PlatinumMaterial).setTextureName(MODID + ":" + "PlatinumPickaxe").setUnlocalizedName("Platinum Pickaxe").setCreativeTab(PeriodicsystemTools);
	registerItem(PlatinumPickaxe, "Platinum Pickaxe");
	PlatinumAxe = new PlatniumAxe (7003, PlatinumMaterial).setTextureName(MODID + ":" + "PlatinumAxe").setUnlocalizedName("Platnium Axe").setCreativeTab(PeriodicsystemTools);
	registerItem(PlatinumAxe, "Platinum Axe");
	PlatinumShovel = new PlatinumShovel (7003, PlatinumMaterial).setTextureName(MODID + ":" + "PlatinumShovel").setUnlocalizedName("Platinum Shovel").setCreativeTab(PeriodicsystemTools);
	registerItem(PlatinumShovel, "Platinum Shovel");
	TitanSword = new TitanSword (7003, TitanMaterial).setTextureName(MODID + ":" + "TitanSword").setUnlocalizedName("Titan Sword").setCreativeTab(PeriodicsystemTools);
	registerItem(TitanSword, "Titan Sword");
	TitanPickaxe = new TitanPickaxe (7003, TitanMaterial).setTextureName(MODID + ":" + "TitanPickaxe").setUnlocalizedName("Titan Pickaxe").setCreativeTab(PeriodicsystemTools);
	registerItem(TitanPickaxe, "Titan Pickaxe");
	TitanAxe = new TitanAxe (7003, TitanMaterial).setTextureName(MODID + ":" + "TitanAxe").setUnlocalizedName("Titan Axe").setCreativeTab(PeriodicsystemTools);
	registerItem(TitanAxe, "Titan Axe");
	TitanShovel = new TitanShovel (7003, TitanMaterial).setTextureName(MODID + ":" + "TitanShovel").setUnlocalizedName("Titan Shovel").setCreativeTab(PeriodicsystemTools);
	registerItem(TitanShovel, "Titan Shovel");
	//WorldGenerator
	GameRegistry.registerWorldGenerator(UtilityPlusGen, 1);




//		Smelting Recipies
	GameRegistry.addSmelting(blockIridiumOre, new ItemStack(Periodicsystem.itemIridiumIngot, 1), 2.50F);

	GameRegistry.addSmelting(blockPlatinumOre, new ItemStack(itemPlatinumIngot, 1), 2.50F);
	GameRegistry.addSmelting(blockOsmiumOre, new ItemStack(itemOsmiumIngot, 1), 2.50F);
	GameRegistry.addSmelting(blockTitanOre, new ItemStack(itemTitanIngot, 1), 2.50F);
//		Crafting Recepies
	GameRegistry.addShapelessRecipe(new ItemStack(Periodicsystem.itemOsidiumIngot), new ItemStack(Items.diamond),new ItemStack(Periodicsystem.itemOsmiumIngot), new ItemStack(Periodicsystem.itemIridiumIngot));
//		GameRegistry.addRecipe(new ItemStack(Periodicsystem.),new Object[]{"","","",'', Periodicsystem., '', Periodicsystem., '', Periodicsystem.]);
	//Blocks
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.blockOsidiumBlock),new Object[]{"OOO","OOO","OOO",'O', Periodicsystem.itemOsidiumIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.blockIridiumBlock),new Object[]{"III","III","III",'I', Periodicsystem.itemIridiumIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.blockTitanBlock),new Object[]{"TTT","TTT","TTT",'T', Periodicsystem.itemTitanIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.blockOsmiumBlock),new Object[]{"OOO","OOO","OOO",'O', Periodicsystem.itemOsmiumIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.blockPlatinumBlock),new Object[]{"PPP","PPP","PPP",'P', Periodicsystem.itemPlatinumIngot});
	//Armor
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorOsidiumHelmet),new Object[]{"OOO","ONO","NNN",'O', Periodicsystem.itemOsidiumIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorOsidiumchestplate),new Object[]{"ONO","OOO","OOO",'O', Periodicsystem.itemOsidiumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorOsidiumleggings),new Object[]{"OOO","ONO","ONO",'O', Periodicsystem.itemOsidiumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorOsidiumboots),new Object[]{"NNN","ONO","ONO",'O', Periodicsystem.itemOsmiumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorOsmiumHelmet),new Object[]{"OOO","ONO","NNN",'O', Periodicsystem.itemOsmiumIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorOsmiumchestplate),new Object[]{"ONO","OOO","OOO",'O', Periodicsystem.itemOsmiumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorOsmiumleggings),new Object[]{"OOO","ONO","ONO",'O', Periodicsystem.itemOsmiumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorOsmiumboots),new Object[]{"NNN","ONO","ONO",'O', Periodicsystem.itemOsmiumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorTitanHelmet),new Object[]{"OOO","ONO","NNN",'O', Periodicsystem.itemTitanIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorTitanchestplate),new Object[]{"ONO","OOO","OOO",'O', Periodicsystem.itemTitanIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorTitanleggings),new Object[]{"OOO","ONO","ONO",'O', Periodicsystem.itemTitanIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorPlatinumboots),new Object[]{"NNN","ONO","ONO",'O', Periodicsystem.itemTitanIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorPlatinumHelmet),new Object[]{"OOO","ONO","NNN",'O', Periodicsystem.itemPlatinumIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorPlatinumchestplate),new Object[]{"ONO","OOO","OOO",'O', Periodicsystem.itemPlatinumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorPlatinumleggings),new Object[]{"OOO","ONO","ONO",'O', Periodicsystem.itemPlatinumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorPlatinumboots),new Object[]{"NNN","ONO","ONO",'O', Periodicsystem.itemPlatinumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorIridiumHelmet),new Object[]{"OOO","ONO","NNN",'O', Periodicsystem.itemIridiumIngot});
	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorIridiumchestplate),new Object[]{"ONO","OOO","OOO",'O', Periodicsystem.itemIridiumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorIridiumleggings),new Object[]{"OOO","ONO","ONO",'O', Periodicsystem.itemIridiumIngot});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemArmorIridiumboots),new Object[]{"NNN","ONO","ONO",'O', Periodicsystem.itemIridiumIngot});
    	//Tools
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.IridiumSword),new Object[]{"NIN","OIO","OSO",'I', Periodicsystem.itemIridiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.OsidiumSword),new Object[]{"NIN","OIO","OSO",'I', Periodicsystem.itemOsidiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.PlatinumSword),new Object[]{"NIN","OIO","OSO",'I', Periodicsystem.itemPlatinumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.TitanSword),new Object[]{"NIN","OIO","OSO",'I', Periodicsystem.itemTitanIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.OsmiumSword),new Object[]{"NIN","OIO","OSO",'I', Periodicsystem.itemOsmiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.IridiumPickaxe),new Object[]{"III","OSO","OSO",'I', Periodicsystem.itemIridiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.OsidiumPickaxe),new Object[]{"III","OSO","OSO",'I', Periodicsystem.itemOsidiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.PlatinumPickaxe),new Object[]{"III","OSO","OSO",'I', Periodicsystem.itemPlatinumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.TitanPickaxe),new Object[]{"III","OSO","OSO",'I', Periodicsystem.itemTitanIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.OsmiumPickaxe),new Object[]{"III","OSO","OSO",'I', Periodicsystem.itemOsmiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.IridiumAxe),new Object[]{"IIO","ISO","OSO",'I', Periodicsystem.itemIridiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.OsidiumAxe),new Object[]{"IIO","ISO","OSO",'I', Periodicsystem.itemOsidiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.PlatinumAxe),new Object[]{"IIO","ISO","OSO",'I', Periodicsystem.itemPlatinumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.TitanAxe),new Object[]{"IIO","ISO","OSO",'I', Periodicsystem.itemTitanIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.OsmiumAxe),new Object[]{"IIO","ISO","OSO",'I', Periodicsystem.itemOsmiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.IridiumShovel),new Object[]{"OIO","OSO","OSO",'I', Periodicsystem.itemIridiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.OsidiumShovel),new Object[]{"OIO","OSO","OSO",'I', Periodicsystem.itemOsidiumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.PlatinumShovel),new Object[]{"OIO","OSO","OSO",'I', Periodicsystem.itemPlatinumIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.TitanShovel),new Object[]{"OIO","OSO","OSO",'I', Periodicsystem.itemTitanIngot, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.OsmiumShovel),new Object[]{"OIO","OSO","OSO",'I', Periodicsystem.itemOsmiumIngot, 'S', Items.stick});
    	//Staffs
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemTeleportstaff),new Object[]{"OOB","OSO","SOO",'B', Periodicsystem.blockOsidiumBlock, 'S', Items.stick});
    	GameRegistry.addRecipe(new ItemStack(Periodicsystem.itemSunStaff),new Object[]{"OFB","OSO","SOO",'B', Periodicsystem.blockOsidiumBlock, 'S', Items.stick, 'F', Items.clock});
    	NetworkRegistry.INSTANCE.registerGuiHandler(this, new PeriodicsystemGuiHandler());
}






@EventHandler
    public void registerItem(Item item, String name)
    { 
    	GameRegistry.registerItem(item, item.getUnlocalizedName());
    	LanguageRegistry.addName(item, name);
    }
public void registerBlock(Block block, String name)
    { 
    	GameRegistry.registerBlock(block, block.getUnlocalizedName());
    	LanguageRegistry.addName(block, name);
    }
public void init(FMLInitializationEvent event)
{

}



public static ItemStack getSmeltingResult(String i, String j, String k, String l, String m, String n) {

	 return getOutput(i, j, k, l, m, n);
}

private static ItemStack getOutput(String i, String j, String k, String l, String m, String n)
    {
    	if(i == Items.diamond.getUnlocalizedName() && j == Periodicsystem.itemIridiumIngot.getUnlocalizedName() && k == Periodicsystem.itemOsmiumIngot.getUnlocalizedName()){
           
    		return new ItemStack(Periodicsystem.itemOsidiumIngot);
        }
    	return null;
    }









}

 

TileEntityElementMixer

 

package com.kloon.periodicsystem;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Items;
import net.minecraft.inventory.ISidedInventory;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.tileentity.TileEntity;

public class TileEntityElementMixer extends TileEntity implements ISidedInventory {

private ItemStack[] slots = new ItemStack[6];

ItemStack itemstack = Periodicsystem.getSmeltingResult(slots[0].getUnlocalizedName(), slots[1].getUnlocalizedName(),slots[2].getUnlocalizedName(),slots[2].getUnlocalizedName(),slots[3].getUnlocalizedName(),slots[4].getUnlocalizedName());

public void readfromNBT(NBTTagCompound nbt)
{
	super.readFromNBT(nbt);

	NBTTagList list = nbt.getTagList("Slots", 6);
	this.slots = new ItemStack[getSizeInventory()];
	for(int i = 0; i < list.tagCount(); i ++){
		NBTTagCompound item = list.getCompoundTagAt(i);
		byte b = item.getByte("item");

		if(b >= 0 && b < this.slots.length){
			this.slots[b] = ItemStack.loadItemStackFromNBT(item);
		}

	}
}

public void writetoNBT(NBTTagCompound nbt)
{
	super.writeToNBT(nbt);

	NBTTagList list = new NBTTagList();

	for(int i = 0; i < this.slots.length; i++) {
		if(this.slots[i] != null) {
			NBTTagCompound item = new NBTTagCompound();
			item.setByte("Item", (byte)i);
			this.slots[i].writeToNBT(item);
			list.appendTag(item);
		}
	}

	nbt.setTag("Slots", list);
	if(this.hasCustomInventoryName()){
		nbt.setString("CustomName", this.getInventoryName());
	}
}
public int getSizeInventory() {

	return this.slots.length;
}

public ItemStack getStackInSlot(int i) {

	return this.slots[i];
}

public ItemStack decrStackSize(int i, int j) {
	if(this.slots[i] != null){
		ItemStack itemstack;

		if(this.slots[i].stackSize <= j){
			itemstack = this.slots[i];
			this.slots[i] = null;
		}else{
			itemstack = this.slots[i].splitStack(j);

			if(this.slots[i].stackSize == 0){
				this.slots[i] = null;


			}
		}

		return itemstack;
	}

	return null;
}


public ItemStack getStackInSlotOnClosing(int i) {
	if(this.slots[i] != null)
	{
		ItemStack itemstack = this.slots[i];
		this.slots[i] = null;
		return itemstack;
	}
	return null;
}

public void setInventorySlotContents(int i, ItemStack itemstack) {
	this.slots[i] = itemstack;

	if(itemstack != null && itemstack.stackSize > this.getInventoryStackLimit())
	{
	itemstack.stackSize = this.getInventoryStackLimit();
	}


}

public String getInventoryName() {

	return null;
}

public boolean hasCustomInventoryName() {

	return false;
}

public int getInventoryStackLimit() {

	return 1;
}

public boolean isUseableByPlayer(EntityPlayer var1) {

	return false;
}

public void openInventory() {


}

public void closeInventory() {


}

public boolean isItemValidForSlot(int var1, ItemStack var2) {

	return false;
}

public int[] getAccessibleSlotsFromSide(int var1) {

	return null;
}

public boolean canInsertItem(int var1, ItemStack var2, int var3) {

	return false;
}

public boolean canExtractItem(int var1, ItemStack var2, int var3) {

	return false;
}

public void markDirty() {
	return;

}


}

 

Crash log

 

[16:06:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[16:06:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[16:06:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

[16:06:51] [main/INFO] [FML]: Forge Mod Loader version 7.2.156.1060 for Minecraft 1.7.2 loading

[16:06:51] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre8

[16:06:51] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[16:06:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:06:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

[16:06:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:06:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:06:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[16:06:51] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[16:06:52] [main/ERROR] [FML]: The minecraft jar file:/C:/Users/Tim/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.1.1060/forgeSrc-1.7.2-10.12.1.1060.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again!

[16:06:52] [main/ERROR] [FML]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem!

[16:06:52] [main/ERROR] [FML]: Technical information: ClientBrandRetriever was at jar:file:/C:/Users/Tim/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.1.1060/forgeSrc-1.7.2-10.12.1.1060.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it

[16:06:52] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[16:06:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[16:06:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

[16:06:52] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[16:06:53] [main/INFO]: Setting user: Player546

[16:06:54] [Client thread/INFO]: LWJGL Version: 2.9.0

[16:06:55] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[16:06:55] [Client thread/INFO] [FML]: MinecraftForge v10.12.1.1060 Initialized

[16:06:55] [Client thread/INFO] [FML]: Replaced 141 ore recipies

[16:06:55] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[16:06:56] [Client thread/INFO] [FML]: Searching C:\Users\Tim\Desktop\forge\ForgeMods\eclipse\mods for mods

[16:06:56] [Client thread/INFO] [Periodicsystem]: Mod Periodicsystem is missing the required element 'name'. Substituting Periodicsystem

[16:06:56] [Client thread/ERROR] [FML]: FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.FMLRenderAccessLibrary. This is generally a severe programming error.  There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW!

[16:06:58] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load

[16:06:58] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Example Mod, FMLFileResourcePack:Periodicsystem

[16:06:59] [Client thread/ERROR] [Periodicsystem]: The mod Periodicsystem appears to have an invalid event annotation EventHandler. This annotation can only apply to methods with recognized event arguments - it will not be called

[16:06:59] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

 

Starting up SoundSystem...

Initializing LWJGL OpenAL

    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

OpenAL initialized.

 

[16:06:59] [sound Library Loader/INFO]: Sound engine started

[16:07:00] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas

[16:07:00] [Client thread/INFO]: Created: 256x256 textures/items-atlas

DIRT BLOCK >> tile.dirt

[16:07:00] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods

[16:07:00] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Example Mod, FMLFileResourcePack:Periodicsystem

[16:07:00] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas

[16:07:00] [Client thread/INFO]: Created: 512x256 textures/items-atlas

 

SoundSystem shutting down...

    Author: Paul Lamb, www.paulscode.com

 

 

Starting up SoundSystem...

Initializing LWJGL OpenAL

    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

OpenAL initialized.

 

[16:07:01] [sound Library Loader/INFO]: Sound engine started

[16:07:02] [MCO Availability Checker #1/ERROR]: Couldn't connect to Realms

[16:07:03] [server thread/INFO]: Starting integrated minecraft server version 1.7.2

[16:07:03] [server thread/INFO]: Generating keypair

[16:07:03] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[16:07:03] [server thread/INFO] [FML]: Loading dimension 0 (Periodicsytem) (net.minecraft.server.integrated.IntegratedServer@6aaabf)

[16:07:03] [server thread/INFO] [FML]: Loading dimension 1 (Periodicsytem) (net.minecraft.server.integrated.IntegratedServer@6aaabf)

[16:07:03] [server thread/INFO] [FML]: Loading dimension -1 (Periodicsytem) (net.minecraft.server.integrated.IntegratedServer@6aaabf)

[16:07:03] [server thread/INFO]: Preparing start region for level 0

[16:07:05] [Netty Client IO #0/INFO] [FML]: Server protocol version 1

[16:07:05] [Netty IO #1/INFO] [FML]: Client protocol version 1

[16:07:05] [Netty IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]

[16:07:05] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT

[16:07:05] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER

[16:07:05] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[16:07:05] [server thread/INFO]: Player546[local:E:0a9210ab] logged in with entity id 233 at (-55.12151469460948, 69.7801638636423, 1.4004126724857207)

[16:07:05] [server thread/INFO]: Player546 joined the game

[16:07:05] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established

[16:07:06] [server thread/INFO]: Stopping server

[16:07:06] [server thread/INFO]: Saving players

[16:07:06] [Client thread/FATAL]: Unreported exception thrown!

java.lang.NullPointerException

at com.kloon.periodicsystem.TileEntityElementMixer.<init>(TileEntityElementMixer.java:16) ~[TileEntityElementMixer.class:?]

at com.kloon.periodicsystem.BlockElementMixer.createNewTileEntity(BlockElementMixer.java:58) ~[blockElementMixer.class:?]

at net.minecraft.block.Block.createTileEntity(Block.java:1764) ~[block.class:?]

at net.minecraft.world.chunk.Chunk.func_150806_e(Chunk.java:938) ~[Chunk.class:?]

at net.minecraft.world.ChunkCache.getTileEntity(ChunkCache.java:103) ~[ChunkCache.class:?]

at net.minecraft.client.renderer.WorldRenderer.updateRenderer(WorldRenderer.java:188) ~[WorldRenderer.class:?]

at net.minecraft.client.renderer.RenderGlobal.updateRenderers(RenderGlobal.java:1616) ~[RenderGlobal.class:?]

at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1259) ~[EntityRenderer.class:?]

at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1098) ~[EntityRenderer.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1022) ~[Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:910) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:112) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

---- Minecraft Crash Report ----

// Oops.

 

Time: 31.05.14 16:07

Description: Unexpected error

 

java.lang.NullPointerException: Unexpected error

at com.kloon.periodicsystem.TileEntityElementMixer.<init>(TileEntityElementMixer.java:16)

at com.kloon.periodicsystem.BlockElementMixer.createNewTileEntity(BlockElementMixer.java:58)

at net.minecraft.block.Block.createTileEntity(Block.java:1764)

at net.minecraft.world.chunk.Chunk.func_150806_e(Chunk.java:938)

at net.minecraft.world.ChunkCache.getTileEntity(ChunkCache.java:103)

at net.minecraft.client.renderer.WorldRenderer.updateRenderer(WorldRenderer.java:188)

at net.minecraft.client.renderer.RenderGlobal.updateRenderers(RenderGlobal.java:1616)

at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1259)

at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1098)

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1022)

at net.minecraft.client.Minecraft.run(Minecraft.java:910)

at net.minecraft.client.main.Main.main(Main.java:112)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at com.kloon.periodicsystem.TileEntityElementMixer.<init>(TileEntityElementMixer.java:16)

at com.kloon.periodicsystem.BlockElementMixer.createNewTileEntity(BlockElementMixer.java:58)

at net.minecraft.block.Block.createTileEntity(Block.java:1764)

at net.minecraft.world.chunk.Chunk.func_150806_e(Chunk.java:938)

at net.minecraft.world.ChunkCache.getTileEntity(ChunkCache.java:103)

at net.minecraft.client.renderer.WorldRenderer.updateRenderer(WorldRenderer.java:188)

at net.minecraft.client.renderer.RenderGlobal.updateRenderers(RenderGlobal.java:1616)

at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1259)

 

-- Affected level --

Details:

Level name: MpServer

All players: 1 total; [EntityClientPlayerMP['Player546'/233, l='MpServer', x=-55,12, y=71,40, z=1,40]]

Chunk stats: MultiplayerChunkCache: 85, 85

Level seed: 0

Level generator: ID 00 - default, ver 1. Features enabled: false

Level generator options:

Level spawn location: World: (-13,64,-19), Chunk: (at 3,4,13 in -1,-2; contains blocks -16,0,-32 to -1,255,-17), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)

Level time: 284882 game time, 29210 day time

Level dimension: 0

Level storage version: 0x00000 - Unknown?

Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false

Forced entities: 150 total; [EntityPig['Pig'/48, l='MpServer', x=-112,66, y=76,00, z=-41,50], EntityPig['Pig'/49, l='MpServer', x=-122,94, y=73,00, z=-24,03], EntityPig['Pig'/50, l='MpServer', x=-117,47, y=73,00, z=-14,19], EntityPig['Pig'/51, l='MpServer', x=-121,19, y=80,00, z=-2,03], EntityChicken['Chicken'/52, l='MpServer', x=-127,41, y=82,00, z=43,47], EntityBat['Bat'/53, l='MpServer', x=-122,45, y=47,00, z=66,89], EntityPig['Pig'/59, l='MpServer', x=-105,09, y=70,00, z=-3,38], EntityPig['Pig'/60, l='MpServer', x=-106,34, y=64,00, z=51,10], EntityPig['Pig'/61, l='MpServer', x=-98,66, y=67,00, z=67,22], EntitySheep['Sheep'/62, l='MpServer', x=-104,25, y=69,00, z=79,31], EntityPig['Pig'/69, l='MpServer', x=-93,22, y=65,00, z=3,88], EntityPig['Pig'/70, l='MpServer', x=-90,81, y=63,00, z=33,56], EntityPig['Pig'/71, l='MpServer', x=-92,50, y=66,00, z=75,22], EntityBat['Bat'/74, l='MpServer', x=-65,75, y=21,00, z=-25,52], EntityBat['Bat'/79, l='MpServer', x=-61,25, y=62,10, z=-3,25], EntityBat['Bat'/80, l='MpServer', x=-51,31, y=62,10, z=-9,25], EntityBat['Bat'/81, l='MpServer', x=-49,31, y=62,10, z=-13,75], EntityItemFrame['entity.ItemFrame.name'/82, l='MpServer', x=-58,94, y=66,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/83, l='MpServer', x=-58,94, y=66,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/84, l='MpServer', x=-58,94, y=66,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/85, l='MpServer', x=-58,94, y=65,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/86, l='MpServer', x=-58,94, y=65,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/87, l='MpServer', x=-58,94, y=65,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/88, l='MpServer', x=-58,94, y=64,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/89, l='MpServer', x=-58,94, y=64,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/90, l='MpServer', x=-58,94, y=64,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/91, l='MpServer', x=-56,50, y=66,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/92, l='MpServer', x=-55,50, y=66,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/93, l='MpServer', x=-54,50, y=66,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/94, l='MpServer', x=-53,50, y=66,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/95, l='MpServer', x=-52,50, y=66,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/96, l='MpServer', x=-52,50, y=65,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/97, l='MpServer', x=-53,50, y=65,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/98, l='MpServer', x=-54,50, y=65,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/99, l='MpServer', x=-55,50, y=65,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/100, l='MpServer', x=-56,50, y=65,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/101, l='MpServer', x=-56,50, y=64,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/102, l='MpServer', x=-55,50, y=64,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/103, l='MpServer', x=-55,50, y=64,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/104, l='MpServer', x=-53,50, y=64,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/105, l='MpServer', x=-53,50, y=64,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/106, l='MpServer', x=-52,50, y=64,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/107, l='MpServer', x=-54,50, y=64,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/108, l='MpServer', x=-55,50, y=67,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/109, l='MpServer', x=-54,50, y=67,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/110, l='MpServer', x=-53,50, y=67,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/111, l='MpServer', x=-52,50, y=67,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/112, l='MpServer', x=-52,50, y=68,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/113, l='MpServer', x=-53,50, y=68,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/114, l='MpServer', x=-54,50, y=68,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/115, l='MpServer', x=-55,50, y=68,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/116, l='MpServer', x=-56,50, y=67,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/117, l='MpServer', x=-56,50, y=68,50, z=-4,94], EntityItemFrame['entity.ItemFrame.name'/118, l='MpServer', x=-58,94, y=67,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/119, l='MpServer', x=-58,94, y=68,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/120, l='MpServer', x=-58,94, y=67,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/121, l='MpServer', x=-58,94, y=68,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/122, l='MpServer', x=-58,94, y=67,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/123, l='MpServer', x=-58,94, y=68,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/124, l='MpServer', x=-50,06, y=64,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/125, l='MpServer', x=-50,06, y=68,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/126, l='MpServer', x=-50,06, y=67,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/127, l='MpServer', x=-50,06, y=65,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/128, l='MpServer', x=-50,06, y=66,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/129, l='MpServer', x=-50,06, y=68,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/130, l='MpServer', x=-50,06, y=67,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/131, l='MpServer', x=-50,06, y=66,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/132, l='MpServer', x=-50,06, y=65,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/133, l='MpServer', x=-50,06, y=64,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/134, l='MpServer', x=-50,06, y=64,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/135, l='MpServer', x=-50,06, y=65,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/136, l='MpServer', x=-50,06, y=68,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/137, l='MpServer', x=-50,06, y=67,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/138, l='MpServer', x=-50,06, y=66,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/139, l='MpServer', x=-50,06, y=69,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/140, l='MpServer', x=-50,06, y=69,50, z=-1,50], EntityItemFrame['entity.ItemFrame.name'/141, l='MpServer', x=-50,06, y=69,50, z=-0,50], EntityItemFrame['entity.ItemFrame.name'/142, l='MpServer', x=-58,94, y=66,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/143, l='MpServer', x=-58,94, y=66,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/144, l='MpServer', x=-58,94, y=65,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/145, l='MpServer', x=-58,94, y=65,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/146, l='MpServer', x=-58,94, y=64,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/147, l='MpServer', x=-58,94, y=64,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/148, l='MpServer', x=-58,94, y=67,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/149, l='MpServer', x=-58,94, y=68,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/150, l='MpServer', x=-58,94, y=67,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/151, l='MpServer', x=-58,94, y=68,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/152, l='MpServer', x=-50,06, y=68,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/153, l='MpServer', x=-50,06, y=67,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/154, l='MpServer', x=-50,06, y=66,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/155, l='MpServer', x=-50,06, y=65,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/156, l='MpServer', x=-50,06, y=64,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/157, l='MpServer', x=-50,06, y=64,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/158, l='MpServer', x=-50,06, y=65,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/159, l='MpServer', x=-50,06, y=66,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/160, l='MpServer', x=-50,06, y=68,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/161, l='MpServer', x=-50,06, y=67,50, z=1,50], EntityItemFrame['entity.ItemFrame.name'/162, l='MpServer', x=-52,50, y=68,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/163, l='MpServer', x=-53,50, y=68,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/164, l='MpServer', x=-56,50, y=67,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/165, l='MpServer', x=-55,50, y=67,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/166, l='MpServer', x=-54,50, y=67,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/167, l='MpServer', x=-54,50, y=67,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/168, l='MpServer', x=-52,50, y=67,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/169, l='MpServer', x=-52,50, y=67,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/170, l='MpServer', x=-53,50, y=67,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/171, l='MpServer', x=-52,50, y=66,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/172, l='MpServer', x=-53,50, y=66,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/173, l='MpServer', x=-54,50, y=66,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/174, l='MpServer', x=-55,50, y=66,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/175, l='MpServer', x=-56,50, y=66,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/176, l='MpServer', x=-56,50, y=65,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/177, l='MpServer', x=-55,50, y=65,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/178, l='MpServer', x=-54,50, y=65,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/179, l='MpServer', x=-53,50, y=65,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/180, l='MpServer', x=-52,50, y=65,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/181, l='MpServer', x=-52,50, y=64,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/182, l='MpServer', x=-53,50, y=64,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/183, l='MpServer', x=-54,50, y=64,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/184, l='MpServer', x=-55,50, y=64,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/185, l='MpServer', x=-56,50, y=64,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/186, l='MpServer', x=-56,50, y=68,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/187, l='MpServer', x=-55,50, y=68,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/188, l='MpServer', x=-54,50, y=68,50, z=3,94], EntityItemFrame['entity.ItemFrame.name'/189, l='MpServer', x=-50,06, y=69,50, z=0,50], EntityItemFrame['entity.ItemFrame.name'/190, l='MpServer', x=-50,06, y=69,50, z=1,50], EntityPig['Pig'/191, l='MpServer', x=-62,88, y=63,00, z=57,75], EntitySquid['Squid'/193, l='MpServer', x=-36,53, y=55,00, z=12,53], EntityItem['item.item.dyePowder.black'/194, l='MpServer', x=-35,56, y=55,13, z=12,13], EntitySquid['Squid'/195, l='MpServer', x=-35,53, y=55,00, z=11,50], EntitySquid['Squid'/196, l='MpServer', x=-33,31, y=55,00, z=11,50], EntityItem['item.item.dyePowder.black'/198, l='MpServer', x=-31,75, y=55,13, z=12,88], EntitySquid['Squid'/199, l='MpServer', x=-19,88, y=56,39, z=13,06], EntitySquid['Squid'/200, l='MpServer', x=-19,01, y=56,42, z=14,50], EntitySheep['Sheep'/201, l='MpServer', x=-19,38, y=68,00, z=38,81], EntityItemFrame['entity.ItemFrame.name'/204, l='MpServer', x=-2,50, y=63,50, z=-1,94], EntityItemFrame['entity.ItemFrame.name'/205, l='MpServer', x=-1,94, y=63,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/206, l='MpServer', x=-1,94, y=63,50, z=2,50], EntityItemFrame['entity.ItemFrame.name'/207, l='MpServer', x=-2,50, y=63,50, z=1,94], EntitySquid['Squid'/208, l='MpServer', x=-12,91, y=59,00, z=14,44], EntitySheep['Sheep'/209, l='MpServer', x=-6,09, y=66,00, z=27,94], EntityBat['Bat'/210, l='MpServer', x=-3,14, y=41,00, z=65,56], EntityPig['Pig'/211, l='MpServer', x=-15,31, y=69,00, z=64,50], EntityItemFrame['entity.ItemFrame.name'/213, l='MpServer', x=1,94, y=63,50, z=-2,50], EntityItemFrame['entity.ItemFrame.name'/214, l='MpServer', x=2,50, y=63,50, z=-1,94], EntityItemFrame['entity.ItemFrame.name'/215, l='MpServer', x=2,50, y=63,50, z=1,94], EntityItemFrame['entity.ItemFrame.name'/216, l='MpServer', x=1,94, y=63,50, z=2,50], EntityBat['Bat'/217, l='MpServer', x=14,52, y=26,59, z=33,46], EntityPig['Pig'/218, l='MpServer', x=14,06, y=64,00, z=43,13], EntityClientPlayerMP['Player546'/233, l='MpServer', x=-55,12, y=71,40, z=1,40]]

Retry entities: 0 total; []

Server brand: fml,forge

Server type: Integrated singleplayer server

Stacktrace:

at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:412)

at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2521)

at net.minecraft.client.Minecraft.run(Minecraft.java:939)

at net.minecraft.client.main.Main.main(Main.java:112)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

 

-- System Details --

Details:

Minecraft Version: 1.7.2

Operating System: Windows 7 (amd64) version 6.1

Java Version: 1.8.0, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 846435920 bytes (807 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)

JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

AABB Pool Size: 8044 (450464 bytes; 0 MB) allocated, 4828 (270368 bytes; 0 MB) used

IntCache: cache: 15, tcache: 0, allocated: 13, tallocated: 95

FML: MCP v9.01-pre FML v7.2.156.1060 Minecraft Forge 10.12.1.1060 5 mods loaded, 5 mods active

mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

FML{7.2.156.1060} [Forge Mod Loader] (forgeSrc-1.7.2-10.12.1.1060.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Forge{10.12.1.1060} [Minecraft Forge] (forgeSrc-1.7.2-10.12.1.1060.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

examplemod{1.0} [Example Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Periodicsystem{1.0} [Periodicsystem] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Launched Version: 1.6

LWJGL: 2.9.0

OpenGL: GeForce GTX 650/PCIe/SSE2 GL version 4.3.0, NVIDIA Corporation

Is Modded: Definitely; Client brand changed to 'fml,forge'

Type: Client (map_client.txt)

Resource Packs: []

Current Language: Deutsch (Deutschland)

Profiler Position: N/A (disabled)

Vec3 Pool Size: 4490 (251440 bytes; 0 MB) allocated, 4490 (251440 bytes; 0 MB) used

Anisotropic Filtering: Off (1)

#@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Tim\Desktop\forge\ForgeMods\eclipse\.\crash-reports\crash-2014-05-31_16.07.06-client.txt

[16:07:06] [server thread/INFO]: Saving worlds

[16:07:06] [server thread/INFO]: Saving chunks for level 'Periodicsytem'/Overworld

AL lib: (EE) alc_cleanup: 1 device not closed

Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

 

Creator of Extra Shoes

 

Watch out, I'm total jerk, and I'll troll anybody if it feels like its necessary. Pls report me then

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

    • when i enter my bf's server after it does all the loading, encrypting a message popps up: "Internal Exception: java.lang.IndexOutOfBoundaException: index: 4, length: 13996 (expected: range(0, 800))"  one time i saw myself in the server but then got kicked out with the same message. My boyfriend's POV is me joining and leaving the server. I play on 1.19.2 version.  i think i t may be an issue with a mod me and bf recently updated.
    • I am trying to install fear nightfall mod pack on curseforge but it keeps saying error forge modloader installation falied but I played it a week ago can someone please help.
    • Found the solution, will be closing this soon. The Minecraft mining overlay can be rendered using: "serverplayer.connection.send(new ClientboundBlockDestructionPacket(serverplayer.getId(), blockpos, i));" Everything else is completely unnecessary, and I was making this harder than it had to be.
    • [17:35:03] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\moraw\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [17:35:03] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.12 by Eclipse Adoptium; OS Windows 10 arch amd64 version 10.0 [17:35:03] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [17:35:03] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [17:35:03] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\moraw\Documents\Livestock\run [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\moraw\Documents\Livestock\run\mods [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\moraw\Documents\Livestock\run\config [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\moraw\Documents\Livestock\run\config\fml.toml [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [17:35:03] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [17:35:03] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [17:35:03] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [17:35:03] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 1.0 loading [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 5 [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [17:35:03] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@34b7ac2f [17:35:04] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/moraw/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23126!/ Service=ModLauncher Env=CLIENT [17:35:04] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [17:35:04] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\moraw\Documents\Livestock\run [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\moraw\Documents\Livestock\run\mods [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\moraw\Documents\Livestock\run\config [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\moraw\Documents\Livestock\run\config\fml.toml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using forgeclientuserdev as launch service [17:35:04] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: Intel(R) Iris(R) Xe Graphics GL version 4.6.0 - Build 31.0.101.5594, Intel [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [17:35:04] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' [17:35:04] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: [] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Got mod coordinates livestock%%C:/Users/moraw/Documents/Livestock\build\resources\main;livestock%%C:/Users/moraw/Documents/Livestock\build\classes\java\main from env [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{livestock=[C:\Users\moraw\Documents\Livestock\build\resources\main, C:\Users\moraw\Documents\Livestock\build\classes\java\main]}] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with {minecraft} mods - versions {1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\Documents\Livestock\build\resources\main [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {livestock} mods - versions {0.01-1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from , it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from main, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with {minecraft} mods - versions {1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\moraw\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/method_redirector.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\Documents\Livestock\build\resources\main [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {livestock} mods - versions {0.01-1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\moraw\Documents\Livestock\build\resources\main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 3 language providers [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Configured system mods: [minecraft, forge] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: minecraft [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: forge [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [17:35:05] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 34318 method mappings from methods.csv [17:35:05] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 31014 field mappings from fields.csv [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [17:35:05] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading coremod transformers [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@9b76b60 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@493ac8d3 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@13dbed9e to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@67531e3a to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2b38b1f to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1d50a7ca to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@51ab1ee3 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2e766822 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3003e580 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml Exception in thread "main" java.lang.module.ResolutionException: Modules classes and livestock export package net.s3alampr3y.livestockmod.entity.client to module minecraft at java.base/java.lang.module.Resolver.resolveFail(Resolver.java:901) at java.base/java.lang.module.Resolver.failTwoSuppliers(Resolver.java:815) at java.base/java.lang.module.Resolver.checkExportSuppliers(Resolver.java:736) at java.base/java.lang.module.Resolver.finish(Resolver.java:380) at java.base/java.lang.module.Configuration.<init>(Configuration.java:140) at java.base/java.lang.module.Configuration.resolveAndBind(Configuration.java:494) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ModuleLayerHandler.buildLayer(ModuleLayerHandler.java:75) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformationServicesHandler.buildTransformingClassLoader(TransformationServicesHandler.java:60) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:106) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) Process finished with exit code 1  
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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