Jump to content

[Solved]Armour not using texture.


Koopamillion

Recommended Posts

EDIT: In mitems, I did jetpackt2 = new jetpack not new jetpack2. Lol

 

 

So, I have a piece of armour, with a texture resource location all correctly named. However, this piece of armour is the only piece of amour in my mod with a broken texture.

 

BUT - When I copy over a resource location of a working texture, it still dosen't work!!!

 

Can anyone help? Thanks!  :)

 

Classes:

 

Mitems:

 

package com.koopamillion.item;

 

import com.koopamillion.Main.MainRegistry;

import com.koopamillion.blocks.ItemBlockStandardMetadata;

import com.koopamillion.blocks.MBlocks;

import com.koopamillion.creativetabs.MCreativeTabs;

import com.koopamillion.lib.Names;

import com.koopamillion.lib.RefStrings;

 

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

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.init.Blocks;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.ItemAppleGold;

import net.minecraft.item.Item.ToolMaterial;

import net.minecraft.item.ItemArmor.ArmorMaterial;

import net.minecraft.potion.Potion;

import net.minecraft.potion.PotionEffect;

import net.minecraft.item.ItemFood;

import net.minecraft.item.ItemSeeds;

import net.minecraftforge.common.util.EnumHelper;

 

public class Mitems {

 

public static void mainRegistry(){

initializeItem();

registerItem();

}

 

public static Item sIngot;

public static Item sStick;

public static Item tIngot;                                      //name//minelevel//durability//efficiency//dmg//enchantibility

public static ToolMaterial  tShard = EnumHelper.addToolMaterial("Tungsten Shard", 2, 450, 7.0f, 2.5f, 15);

public static ToolMaterial  eMaterial = EnumHelper.addToolMaterial("Electronic Material", 2, 256, 7.0f, 2.75F, 0); //iron

public static ToolMaterial  eMaterial1 = EnumHelper.addToolMaterial("Electronic Material2", 2, 256, 7.0f, 4.5F, 0); //iron

public static Item tPick;

public static Item tAxe;

public static Item tSpade;

public static Item tHoe;

public static Item tSword;

public static Item rStick;

public static Item crySeed;

public static Item crystal;

public static Item crystalPart;

public static Item urFc;

public static Item Fc;

public static Item uranium;

public static Item nht;

public static ToolMaterial nth = EnumHelper.addToolMaterial("Nether Ingot", 3, 3500, 16.0f, 6.50f, 25);

public static ToolMaterial basicBatteryTool = EnumHelper.addToolMaterial("battery", 0, 12000, 0f, 0f, 0);

public static Item NSword;

public static Item hStick;

public static Item dIngot;

public static Item lFrez;                                      //name//durability//reductionAmounts//enchantibility

public static ArmorMaterial tArmor = EnumHelper.addArmorMaterial("Tungsten Armour", 22, new int[]{2,7,5,2}, 15);

public static ArmorMaterial jetpack1 = EnumHelper.addArmorMaterial("Jetpack Armour", 44, new int[]{2,4,5,2}, 0);

public static ArmorMaterial jetpack2 = EnumHelper.addArmorMaterial("Jetpack2 Armour", 77, new int[]{2,4,5,2}, 0);

public static ArmorMaterial jetpack1dead = EnumHelper.addArmorMaterial("JetpackDead Armour", 99999, new int[]{0,0,0,0}, 0);

public static Item tArmorChest;

public static Item tArmorHead;

public static Item tArmorLegs;

public static Item tArmorFeet;

public static Item jetpack;

public static Item jetpackDead;

public static Item diamondPoundHead;

public static Item steelIngot;

public static Item debuggerTool;

public static Item CuIngot;

public static Item dApple;

public static Item copperDust;

public static Item CuCableConnector;

public static Item basicBattery;

public static Item dynamite;

public static Item wrench;

public static Item CuHeatCoil;

public static Item uninsulatedCopperCable;

public static Item insulatedCopperCable;

public static Item wireCutter;

public static Item ironDust;

public static Item goldDust;

public static Item tungstenDust;

public static Item coalDust;

public static Item silverDust;

public static Item steelDust;

public static Item advancedBattery;

public static Item upgrades;

public static Item ePick;

public static Item ePickDead;

public static Item eAxe;

public static Item eAxeDead;

public static Item jetEngine;

public static Item jetEngine2;

public static Item jetpackt2;

public static Item jetpackDead2;

 

public static void initializeItem(){

sIngot = new Item().setUnlocalizedName("sIngot").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":SIngot");

sStick = new Item().setUnlocalizedName("sStick").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":sStick");

tIngot = new Item().setUnlocalizedName("tIngot").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":tIngot");

tPick = new TPick(tShard).setUnlocalizedName("tPick").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tP");

tAxe = new TAxe(tShard).setUnlocalizedName("tAxe").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tA");

tSpade = new TSpade(tShard).setUnlocalizedName("tSpade").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tSp");

tHoe = new THoe(tShard).setUnlocalizedName("tHoe").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tH");

tSword = new TSword(tShard).setUnlocalizedName("tSword").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tS");

sIngot = new Item().setUnlocalizedName("sIngot").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":SIngot");

rStick = new Item().setUnlocalizedName("rStick").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":rStick");

crySeed = new ItemSeeds(MBlocks.cryP, Blocks.farmland).setCreativeTab(MCreativeTabs.tabPlants).setUnlocalizedName("crySeed").setTextureName(RefStrings.MODID + ":crySeed");

crystal = new Item().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("crystal").setTextureName(RefStrings.MODID + ":crystal");

crystalPart = new Item().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("crystalPart").setTextureName(RefStrings.MODID + ":crystalPart");

uranium = new Item().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("uranium").setTextureName(RefStrings.MODID + ":uranium");

urFc = new Item().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("urFc").setTextureName(RefStrings.MODID + ":urFc");

Fc = new Item().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("Fc").setTextureName(RefStrings.MODID + ":Fc");

nht = new Item().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("nht").setTextureName(RefStrings.MODID + ":nht");

NSword = new nSword(nth).setUnlocalizedName("nSword").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":nSword");

hStick = new Item().setUnlocalizedName("hStick").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":hStick");

dIngot = new Item().setUnlocalizedName("dIngot").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":dIngot");

lFrez = new lFrez().setUnlocalizedName("lFrez").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":lFrez");

tArmorChest = new tArmor(tArmor, MainRegistry.proxy.addArmor("tArmor"), 1).setUnlocalizedName("tArmorChest").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tArmorChest"); //0=helmet//1=chest//2=pants//3=boots//

tArmorHead = new tArmor(tArmor, MainRegistry.proxy.addArmor("tArmor"), 0).setUnlocalizedName("tArmorHead").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tArmorHead"); //0=helmet//1=chest//2=pants//3=boots//

tArmorLegs = new tArmor(tArmor, MainRegistry.proxy.addArmor("tArmor"), 2).setUnlocalizedName("tArmorLegs").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tArmorLegs"); //0=helmet//1=chest//2=pants//3=boots//

tArmorFeet = new tArmor(tArmor, MainRegistry.proxy.addArmor("tArmor"), 3).setUnlocalizedName("tArmorFeet").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":tArmorFeet"); //0=helmet//1=chest//2=pants//3=boots//

diamondPoundHead = new Item().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("dPH").setTextureName(RefStrings.MODID + ":dPH");

steelIngot = new Item().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("sI").setTextureName(RefStrings.MODID + ":sI");

debuggerTool = new ItemEnergyMeter().setCreativeTab(MCreativeTabs.tabTools).setMaxStackSize(1).setUnlocalizedName(Names.ENERGY_METER).setTextureName(RefStrings.MODID + ":ENERGY_METER");

CuIngot = new Item().setUnlocalizedName("CuIngot").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":CuIngot");

dApple = new ItemAppleDiamond(10, 5f, true).setPotionEffect(Potion.regeneration.id, 120, 5, 1.0F).setCreativeTab(MCreativeTabs.tabPlants).setUnlocalizedName("dApple").setTextureName(RefStrings.MODID + ":dApple");

CuCableConnector = new Item().setUnlocalizedName("CuCableConnector").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":CuCableConnector");

basicBattery = new BasicBatteryItem().setMaxStackSize(1).setUnlocalizedName("basicBattery").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":basicBattery");

dynamite = new dynamite().setUnlocalizedName("dynamite").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":dynamite");

wrench = new ItemWrench();

CuHeatCoil = new Item().setUnlocalizedName("CuHeatCoil").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":CuHeatCoil");

uninsulatedCopperCable = new ItemCopperCable().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("uCuCable").setTextureName(RefStrings.MODID + ":uCuItem");

insulatedCopperCable = new IItemCopperCable().setCreativeTab(MCreativeTabs.tabItems).setUnlocalizedName("iCuCable").setTextureName(RefStrings.MODID + ":iCuItem");

wireCutter = new ItemCutter();

ironDust = new Item().setUnlocalizedName("ironDust").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":ironDust");

goldDust = new Item().setUnlocalizedName("goldDust").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":goldDust");

tungstenDust = new Item().setUnlocalizedName("tungstenDust").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":tungstenDust");

silverDust = new Item().setUnlocalizedName("silverDust").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":silverDust");

coalDust = new Item().setUnlocalizedName("coalDust").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":coalDust");

steelDust = new Item().setUnlocalizedName("steelDust").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":steelDust");

copperDust = new Item().setUnlocalizedName("copperDust").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":copperDust");

advancedBattery = new AdvancedBatteryItem().setMaxStackSize(1).setUnlocalizedName("advancedBattery").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":advancedBattery");

upgrades = new ItemUpgrades().setMaxStackSize(15).setUnlocalizedName("upgrades").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":upgrades");

ePick = new EPick(eMaterial).setUnlocalizedName("ePick").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":eP");

ePickDead = new Item().setMaxStackSize(1).setUnlocalizedName("ePickDead").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":ePDead");

eAxe = new eAxe(eMaterial1).setUnlocalizedName("eAxe").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":eAxe");

eAxeDead = new Item().setMaxStackSize(1).setUnlocalizedName("eAxeDead").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":eAxeDead");

jetpack = new jetpack(jetpack1, MainRegistry.proxy.addArmor("jetpack"), 1).setUnlocalizedName("jetpack").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":jetpack");

jetpackDead = new jetpackDead(jetpack1dead, MainRegistry.proxy.addArmor("jetpackDead"), 1).setCreativeTab(MCreativeTabs.tabTools).setUnlocalizedName("jetpackDead").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":jetpackDead");

jetEngine = new Item().setMaxStackSize(1).setUnlocalizedName("jetEngine").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":jetEngine");

jetEngine2 = new Item().setMaxStackSize(1).setUnlocalizedName("jetEngine2").setCreativeTab(MCreativeTabs.tabItems).setTextureName(RefStrings.MODID + ":jetEngine2");

jetpackt2 = new jetpack(jetpack2, MainRegistry.proxy.addArmor("jetpack2"), 1).setUnlocalizedName("jetpackt2").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":jetpack2");

jetpackDead2 = new jetpackDead2(jetpack1dead, MainRegistry.proxy.addArmor("jetpackDead2"), 1).setCreativeTab(MCreativeTabs.tabTools).setUnlocalizedName("jetpackDead2").setCreativeTab(MCreativeTabs.tabTools).setTextureName(RefStrings.MODID + ":jetpackDead2");

}

 

public static void registerItem(){

GameRegistry.registerItem(sIngot, sIngot.getUnlocalizedName());

GameRegistry.registerItem(sStick, sStick.getUnlocalizedName());

GameRegistry.registerItem(tIngot, tIngot.getUnlocalizedName());

GameRegistry.registerItem(tPick, tPick.getUnlocalizedName());

GameRegistry.registerItem(ePick, ePick.getUnlocalizedName());

GameRegistry.registerItem(ePickDead, ePickDead.getUnlocalizedName());

GameRegistry.registerItem(tAxe, tAxe.getUnlocalizedName());

GameRegistry.registerItem(tSpade, tSpade.getUnlocalizedName());

GameRegistry.registerItem(tHoe, tHoe.getUnlocalizedName());

GameRegistry.registerItem(tSword, tSword.getUnlocalizedName());

GameRegistry.registerItem(rStick, rStick.getUnlocalizedName());

GameRegistry.registerItem(crySeed, crySeed.getUnlocalizedName());

GameRegistry.registerItem(crystal, crystal.getUnlocalizedName());

GameRegistry.registerItem(crystalPart, crystalPart.getUnlocalizedName());

GameRegistry.registerItem(uranium, uranium.getUnlocalizedName());

GameRegistry.registerItem(urFc, urFc.getUnlocalizedName());

GameRegistry.registerItem(Fc, Fc.getUnlocalizedName());

GameRegistry.registerItem(nht, nht.getUnlocalizedName());

GameRegistry.registerItem(NSword, NSword.getUnlocalizedName());

GameRegistry.registerItem(hStick, hStick.getUnlocalizedName());

GameRegistry.registerItem(dIngot, dIngot.getUnlocalizedName());

GameRegistry.registerItem(lFrez, lFrez.getUnlocalizedName());

GameRegistry.registerItem(tArmorFeet, tArmorFeet.getUnlocalizedName());

GameRegistry.registerItem(tArmorHead, tArmorHead.getUnlocalizedName());

GameRegistry.registerItem(tArmorChest, tArmorChest.getUnlocalizedName());

GameRegistry.registerItem(tArmorLegs, tArmorLegs.getUnlocalizedName());

GameRegistry.registerItem(diamondPoundHead, diamondPoundHead.getUnlocalizedName());

GameRegistry.registerItem(steelIngot, steelIngot.getUnlocalizedName());

GameRegistry.registerItem(CuIngot, CuIngot.getUnlocalizedName());

GameRegistry.registerItem(debuggerTool, Names.ENERGY_METER);

GameRegistry.registerItem(dApple, dApple.getUnlocalizedName());

GameRegistry.registerItem(copperDust, copperDust.getUnlocalizedName());

GameRegistry.registerItem(CuCableConnector, CuCableConnector.getUnlocalizedName());

GameRegistry.registerItem(basicBattery, basicBattery.getUnlocalizedName());

GameRegistry.registerItem(dynamite, dynamite.getUnlocalizedName());

GameRegistry.registerItem(CuHeatCoil, CuHeatCoil.getUnlocalizedName());

GameRegistry.registerItem(wrench, Names.WRENCH);

GameRegistry.registerItem(uninsulatedCopperCable,  uninsulatedCopperCable.getUnlocalizedName());

GameRegistry.registerItem(insulatedCopperCable,  insulatedCopperCable.getUnlocalizedName());

GameRegistry.registerItem(wireCutter, wireCutter.getUnlocalizedName());

GameRegistry.registerItem(ironDust, ironDust.getUnlocalizedName());

GameRegistry.registerItem(goldDust, goldDust.getUnlocalizedName());

GameRegistry.registerItem(tungstenDust, tungstenDust.getUnlocalizedName());

GameRegistry.registerItem(silverDust, silverDust.getUnlocalizedName());

GameRegistry.registerItem(coalDust, coalDust.getUnlocalizedName());

GameRegistry.registerItem(steelDust, steelDust.getUnlocalizedName());

GameRegistry.registerItem(advancedBattery, advancedBattery.getUnlocalizedName());

GameRegistry.registerItem(upgrades, upgrades.getUnlocalizedName());

GameRegistry.registerItem(eAxeDead, eAxeDead.getUnlocalizedName());

GameRegistry.registerItem(jetpack, jetpack.getUnlocalizedName());

GameRegistry.registerItem(jetpackDead, jetpackDead.getUnlocalizedName());

GameRegistry.registerItem(jetpackt2, jetpackt2.getUnlocalizedName());

GameRegistry.registerItem(jetpackDead2, jetpackDead2.getUnlocalizedName());

GameRegistry.registerItem(eAxe, eAxe.getUnlocalizedName());

GameRegistry.registerItem(jetEngine, jetEngine.getUnlocalizedName());

GameRegistry.registerItem(jetEngine2, jetEngine2.getUnlocalizedName());

}

 

 

}

 

 

 

Jetpack2 (broken):

 

package com.koopamillion.item;

 

 

import com.koopamillion.Main.JetpackMessage;

import com.koopamillion.Main.MainRegistry;

import com.koopamillion.energy.IEnergy;

import com.koopamillion.lib.RefStrings;

 

import cpw.mods.fml.common.eventhandler.SubscribeEvent;

import cpw.mods.fml.common.gameevent.TickEvent;

import cpw.mods.fml.common.gameevent.TickEvent.ClientTickEvent;

import cpw.mods.fml.common.gameevent.TickEvent.Phase;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.client.Minecraft;

import net.minecraft.entity.Entity;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.ItemArmor;

import net.minecraft.item.ItemStack;

import net.minecraft.util.ChatComponentText;

import net.minecraft.world.World;

 

public class jetpack2 extends ItemArmor{

 

 

 

public jetpack2(ArmorMaterial p_i45325_1_, int p_i45325_2_, int p_i45325_3_) {

super(p_i45325_1_, p_i45325_2_, p_i45325_3_);

 

}

 

public String getArmorTexture(ItemStack stack, Entity entity, int slot, String type){

if(stack.getItem() == Mitems.jetpackt2) {

        return RefStrings.MODID + ":textures/model/armor/jetpack2.png";

        }else{

        return null;

        }

    }

 

 

 

 

}

 

 

 

 

 

Jetpack (working):

 

package com.koopamillion.item;

 

 

import com.koopamillion.Main.JetpackMessage;

import com.koopamillion.Main.MainRegistry;

import com.koopamillion.energy.IEnergy;

import com.koopamillion.lib.RefStrings;

 

import cpw.mods.fml.common.eventhandler.SubscribeEvent;

import cpw.mods.fml.common.gameevent.TickEvent;

import cpw.mods.fml.common.gameevent.TickEvent.ClientTickEvent;

import cpw.mods.fml.common.gameevent.TickEvent.Phase;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.client.Minecraft;

import net.minecraft.entity.Entity;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.ItemArmor;

import net.minecraft.item.ItemStack;

import net.minecraft.util.ChatComponentText;

import net.minecraft.world.World;

 

public class jetpack extends ItemArmor{

 

 

 

public jetpack(ArmorMaterial p_i45325_1_, int p_i45325_2_, int p_i45325_3_) {

super(p_i45325_1_, p_i45325_2_, p_i45325_3_);

 

}

 

public String getArmorTexture(ItemStack stack, Entity entity, int slot, String type){

if(stack.getItem() == Mitems.jetpack) {

        return RefStrings.MODID + ":textures/model/armor/jetpack.png";

        }else{

        return null;

        }

    }

 

 

 

 

}

 

 

 

 

 

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
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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I just resolved deleting the serverconfig folder thank you a lot, but where do i find the debug.log in the settings?  
    • One of your configuration files is invalid/corrupted. You can find it in the world/serverconfig folder. If you don't have a backup of the file, you can delete it and the file will be recreated with default values.
    • Hello, i am encountering a problem with my minecraft modpack, when i try to load a saved world (already made in that modpack) the game crash on the loading screen with the following specs:  ModLoader: Forge - 43.2.0 GameVersion: 1.19.2 MODS:   Just Enough Items (JEI) (by mezz) Waystones (by BlayTheNinth) ESSENTIAL Mod (by SparkUniverse_) Enchantment Descriptions (by DarkhaxDev) YUNG's Better Strongholds (Forge) (by YUNGNICKYOUNG) Xaero's World Map (by xaero96) Bookshelf (by DarkhaxDev) Curios API (Forge) (by TheIllusiveC4) GeckoLib (by Gecko) AppleSkin (by squeek502) ProjectE (by SinKillerJ) Deeper and Darker (by KyaniteMods) Just Enough Resources (JER) (by way2muchnoise) Balm (Forge Edition) (by BlayTheNinth) Create Stuff & Additions (by Furti_Two) Storage Drawers (by Texelsaur) Croptopia (by thethonk) Create Deco (by talrey) YUNG's Better Dungeons (Forge) (by YUNGNICKYOUNG) Inventory HUD+ (by dmitrylovin) OpenBlocks Elevator (by vsngarcia) Tree Harvester (by Serilum) Mouse Tweaks (by YaLTeR) Elytra Slot (Fabric/Forge/Quilt) (by TheIllusiveC4) Iron Furnaces [FORGE] (by XenoMustache) Controlling (by Jaredlll08) The Twilight Forest (by Benimatic) Just Enough Professions (JEP) (by Mrbysco) YUNG's Better Desert Temples (Forge) (by YUNGNICKYOUNG) Collective (by Serilum) YUNG's Better Mineshafts (Forge) (by YUNGNICKYOUNG) Create (by simibubi) Caelus API (Forge) (by TheIllusiveC4) Clumps (by Jaredlll08) YUNG's Better Ocean Monuments (Forge) (by YUNGNICKYOUNG) Fast Leaf Decay (by olafskiii) YUNG's API (Forge) (by YUNGNICKYOUNG) The crash report i am getting is the following   ---- Minecraft Crash Report ---- // My bad. Time: 2023-03-25 11:27:34 Description: Exception in server tick loop net.minecraftforge.fml.config.ConfigFileTypeHandler$ConfigLoadingException: Failed loading config file curios-server.toml of type SERVER for modid curios     at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:47) ~[fmlcore-1.19.2-43.2.0.jar%23224!/:?] {}     at net.minecraftforge.fml.config.ConfigTracker.openConfig(ConfigTracker.java:60) ~[fmlcore-1.19.2-43.2.0.jar%23224!/:?] {}     at net.minecraftforge.fml.config.ConfigTracker.lambda$loadConfigs$1(ConfigTracker.java:50) ~[fmlcore-1.19.2-43.2.0.jar%23224!/:?] {}     at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:computing_frames,re:mixin}     at java.util.Collections$SynchronizedCollection.forEach(Collections.java:2131) ~[?:?] {}     at net.minecraftforge.fml.config.ConfigTracker.loadConfigs(ConfigTracker.java:50) ~[fmlcore-1.19.2-43.2.0.jar%23224!/:?] {}     at net.minecraftforge.server.ServerLifecycleHooks.handleServerAboutToStart(ServerLifecycleHooks.java:90) ~[forge-1.19.2-43.2.0-universal.jar%23228!/:?] {re:classloading}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.optifine.reflect.Reflector.callBoolean(Reflector.java:707) ~[OptiFine_1.19.2_HD_U_I1%20(1).jar%23241!/:?] {re:classloading}     at net.minecraft.client.server.IntegratedServer.m_7038_(IntegratedServer.java:79) ~[client-1.19.2-20220805.130853-srg.jar%23223!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:mixins.essential.json:server.integrated.MixinIntegratedServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:625) ~[client-1.19.2-20220805.130853-srg.jar%23223!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:mixins.essential.json:feature.sps.Mixin_IntegratedServerResourcePack,pl:mixin:APP:mixins.essential.json:server.MinecraftServerMixin_PvPGameRule,pl:mixin:APP:mixins.essential.json:server.Mixin_PublishServerStatusResponse,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:244) ~[client-1.19.2-20220805.130853-srg.jar%23223!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:mixins.essential.json:feature.sps.Mixin_IntegratedServerResourcePack,pl:mixin:APP:mixins.essential.json:server.MinecraftServerMixin_PvPGameRule,pl:mixin:APP:mixins.essential.json:server.Mixin_PublishServerStatusResponse,pl:mixin:A}     at java.lang.Thread.run(Thread.java:833) [?:?] {re:mixin} Caused by: com.electronwill.nightconfig.core.io.ParsingException: Not enough data available     at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) ~[core-3.6.4.jar%2384!/:?] {}     at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) ~[core-3.6.4.jar%2384!/:?] {}     at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) ~[core-3.6.4.jar%2384!/:?] {}     at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) ~[core-3.6.4.jar%2384!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) ~[toml-3.6.4.jar%2385!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) ~[toml-3.6.4.jar%2385!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) ~[toml-3.6.4.jar%2385!/:?] {}     at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) ~[toml-3.6.4.jar%2385!/:?] {}     at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) ~[toml-3.6.4.jar%2385!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) ~[core-3.6.4.jar%2384!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) ~[core-3.6.4.jar%2384!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) ~[core-3.6.4.jar%2384!/:?] {}     at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) ~[core-3.6.4.jar%2384!/:?] {}     at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) ~[core-3.6.4.jar%2384!/:?] {}     at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:43) ~[fmlcore-1.19.2-43.2.0.jar%23224!/:?] {}     ... 15 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.19.2     Minecraft Version ID: 1.19.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.3, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1015485096 bytes (968 MiB) / 2977955840 bytes (2840 MiB) up to 12884901888 bytes (12288 MiB)     CPUs: 12     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 5 3600 6-Core Processor                   Identifier: AuthenticAMD Family 23 Model 113 Stepping 0     Microarchitecture: Zen 2     Frequency (GHz): 3.60     Number of physical packages: 1     Number of physical CPUs: 6     Number of logical CPUs: 12     Graphics card #0 name: Radeon RX 570 Series     Graphics card #0 vendor: Advanced Micro Devices, Inc. (0x1002)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x67df     Graphics card #0 versionInfo: DriverVersion=31.0.12027.9000     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 3.00     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 3.00     Memory slot #1 type: DDR4     Virtual memory max (MB): 28113.59     Virtual memory used (MB): 15054.18     Swap memory total (MB): 11776.00     Swap memory used (MB): 61.59     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx12288m -Xms256m     Server Running: true     Player Count: 0 / 8; []     Data Packs: vanilla, mod:betterdungeons, mod:mousetweaks, mod:jei (incompatible), mod:paragon, mod:betteroceanmonuments, mod:flywheel (incompatible), mod:create, mod:createdeco (incompatible), mod:waystones (incompatible), mod:create_sa, mod:storagedrawers (incompatible), mod:yungsapi, mod:elevatorid (incompatible), mod:betterstrongholds, mod:betterdeserttemples, mod:deeperdarker, mod:balm (incompatible), mod:jeresources, mod:forge, mod:appleskin, mod:fastleafdecay, mod:bettermineshafts, mod:twilightforest (incompatible), mod:geckolib3 (incompatible), mod:essential (incompatible), mod:enchdesc (incompatible), mod:ironfurnaces (incompatible), mod:treeharvester, mod:projecte, mod:croptopia (incompatible), mod:collective, mod:controlling (incompatible), mod:justenoughprofessions, mod:inventoryhud, mod:bookshelf (incompatible), mod:xaeroworldmap, mod:elytraslot, mod:caelus (incompatible), mod:curios, mod:clumps (incompatible)     World Generation: Experimental     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     Launched Version: forge-43.2.0     OptiFine Version: OptiFine_1.19.2_HD_U_I1     OptiFine Build: 20221213-150857     Render Distance Chunks: 2     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     Shaders: null     OpenGlVersion: 3.2.0 Core Profile Context 22.20.27.09.230321     OpenGlRenderer: Radeon RX 570 Series     OpenGlVendor: ATI Technologies Inc.     CpuCount: 12     ModLauncher: 10.0.8+10.0.8+main.0ef7e830     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.3.jar eventbus PLUGINSERVICE          fmlloader-1.19.2-43.2.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.19.2-43.2.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.19.2-43.2.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.19.2-43.2.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.19.2-43.2.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.8.jar OptiFine TRANSFORMATIONSERVICE          modlauncher-10.0.8.jar essential-loader TRANSFORMATIONSERVICE          modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          minecraft@1.0         lowcodefml@null         kotlinforforge@3.6.0         javafml@null     Mod List:          client-1.19.2-20220805.130853-srg.jar             |Minecraft                     |minecraft                     |1.19.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         elytraslot-forge-6.1.0+1.19.2.jar                 |Elytra Slot                   |elytraslot                    |6.1.0+1.19.2        |DONE      |Manifest: NOSIGNATURE         YungsBetterDungeons-1.19.2-Forge-3.2.2.jar        |YUNG's Better Dungeons        |betterdungeons                |1.19.2-Forge-3.2.2  |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.19.2-13.0.14.jar  |EnchantmentDescriptions       |enchdesc                      |13.0.14             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         MouseTweaks-forge-mc1.19-2.23.jar                 |Mouse Tweaks                  |mousetweaks                   |2.23                |DONE      |Manifest: NOSIGNATURE         ironfurnaces-1.19.2-3.6.5.jar                     |Iron Furnaces                 |ironfurnaces                  |3.6.5               |DONE      |Manifest: NOSIGNATURE         treeharvester-1.19.2-8.0.jar                      |Tree Harvester                |treeharvester                 |8.0                 |DONE      |Manifest: NOSIGNATURE         jei-1.19.2-forge-11.6.0.1013.jar                  |Just Enough Items             |jei                           |11.6.0.1013         |DONE      |Manifest: NOSIGNATURE         paragon-forge-3.0.2-1.19x.jar                     |Paragon                       |paragon                       |3.0.2               |DONE      |Manifest: NOSIGNATURE         YungsBetterOceanMonuments-1.19.2-Forge-2.1.0.jar  |YUNG's Better Ocean Monuments |betteroceanmonuments          |1.19.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         ProjectE-1.19.2-PE1.0.1B.jar                      |ProjectE                      |projecte                      |1.0.1B              |DONE      |Manifest: NOSIGNATURE         caelus-forge-1.19.2-3.0.0.6.jar                   |Caelus API                    |caelus                        |1.19.2-3.0.0.6      |DONE      |Manifest: NOSIGNATURE         curios-forge-1.19.2-5.1.3.0.jar                   |Curios API                    |curios                        |1.19.2-5.1.3.0      |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.19.2-0.6.8.a-14.jar              |Flywheel                      |flywheel                      |0.6.8.a-14          |DONE      |Manifest: NOSIGNATURE         create-1.19.2-0.5.0.i.jar                         |Create                        |create                        |0.5.0.i             |DONE      |Manifest: NOSIGNATURE         createdeco-1.2.12-1.19.2.jar                      |Create Deco                   |createdeco                    |1.2.12-1.19.2       |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.19.2-11.3.1.jar                 |Waystones                     |waystones                     |11.3.1              |DONE      |Manifest: NOSIGNATURE         Croptopia-1.19.2-FORGE-2.2.2.jar                  |Croptopia                     |croptopia                     |2.2.2               |DONE      |Manifest: NOSIGNATURE         create-stuff-additions1.19.2_v2.0.2b.jar          |Create Stuff & Additions      |create_sa                     |2.0.2               |DONE      |Manifest: NOSIGNATURE         collective-1.19.2-6.53.jar                        |Collective                    |collective                    |6.53                |DONE      |Manifest: NOSIGNATURE         Clumps-forge-1.19.2-9.0.0+14.jar                  |Clumps                        |clumps                        |9.0.0+14            |DONE      |Manifest: NOSIGNATURE         XaerosWorldMap_1.29.2_Forge_1.19.1.jar            |Xaero's World Map             |xaeroworldmap                 |1.29.2              |DONE      |Manifest: NOSIGNATURE         Controlling-forge-1.19.2-10.0+7.jar               |Controlling                   |controlling                   |10.0+7              |DONE      |Manifest: NOSIGNATURE         JustEnoughProfessions-forge-1.19.2-2.0.2.jar      |Just Enough Professions (JEP) |justenoughprofessions         |2.0.2               |DONE      |Manifest: NOSIGNATURE         StorageDrawers-1.19-11.1.2.jar                    |Storage Drawers               |storagedrawers                |11.1.2              |DONE      |Manifest: NOSIGNATURE         YungsApi-1.19.2-Forge-3.8.9.jar                   |YUNG's API                    |yungsapi                      |1.19.2-Forge-3.8.9  |DONE      |Manifest: NOSIGNATURE         elevatorid-1.19.2-1.8.9.jar                       |Elevator Mod                  |elevatorid                    |1.19.2-1.8.9        |DONE      |Manifest: NOSIGNATURE         invhud.forge.1.19-3.4.7.jar                       |Inventory HUD+(Forge edition) |inventoryhud                  |3.4.7               |DONE      |Manifest: NOSIGNATURE         YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar     |YUNG's Better Strongholds     |betterstrongholds             |1.19.2-Forge-3.2.0  |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.19.2-16.2.18.jar                |Bookshelf                     |bookshelf                     |16.2.18             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         YungsBetterDesertTemples-1.19.2-Forge-2.2.2.jar   |YUNG's Better Desert Temples  |betterdeserttemples           |1.19.2-Forge-2.2.2  |DONE      |Manifest: NOSIGNATURE         deeperdarker-forge-1.1.6-forge.jar                |Deeper and Darker             |deeperdarker                  |1.1.6               |DONE      |Manifest: NOSIGNATURE         balm-forge-1.19.2-4.5.7.jar                       |Balm                          |balm                          |4.5.7               |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.19.2-1.2.2.200.jar          |Just Enough Resources         |jeresources                   |1.2.2.200           |DONE      |Manifest: NOSIGNATURE         forge-1.19.2-43.2.0-universal.jar                 |Forge                         |forge                         |43.2.0              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         appleskin-forge-mc1.19-2.4.2.jar                  |AppleSkin                     |appleskin                     |2.4.2+mc1.19        |DONE      |Manifest: NOSIGNATURE         FastLeafDecay-30.jar                              |FastLeafDecay                 |fastleafdecay                 |30                  |DONE      |Manifest: NOSIGNATURE         YungsBetterMineshafts-1.19.2-Forge-3.2.0.jar      |YUNG's Better Mineshafts      |bettermineshafts              |1.19.2-Forge-3.2.0  |DONE      |Manifest: NOSIGNATURE         twilightforest-1.19.2-4.2.1518-universal.jar      |The Twilight Forest           |twilightforest                |4.2.1518            |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.19-3.1.40.jar                    |GeckoLib                      |geckolib3                     |3.1.40              |DONE      |Manifest: NOSIGNATURE         Essential (forge_1.19.2).jar                      |Essential                     |essential                     |12135+deploy-staging|DONE      |Manifest: NOSIGNATURE     Flywheel Backend: GL33 Instanced Arrays     Crash Report UUID: 3ae29fd2-576c-4551-8170-18f8e716e3fd     FML: 43.2     Forge: net.minecraftforge:43.2.0 Does anyone know hot to solve this problem?  
    • Issue with the player skills mod. Looks like it needs the KubeJS mod installed?
  • Topics

×
×
  • Create New...

Important Information

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