Jump to content

CoDiEx

Members
  • Posts

    8
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

CoDiEx's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Thats is not how it works for me, I use a server version of my mod(non-client files are used) and a client version (all types are used) yes it is hard to update. but how can I fix this error?
  2. I created some armor for my mod followed a lot of tutorials, and it finally worked. or no, it works fine in SP but when I try to connect to the modded server I have it gives me this: Mismatched items : {739=(Item 739, Type net.minecraft.src.RubyArmor, owned by mod_timed, ordinal 3, name null, claimedModId null, Item 739, Type net.minecraft.src.RubyBoots, owned by mod_timed, ordinal 0, name null, claimedModId null), 738=(Item 738, Type net.minecraft.src.RubyArmor, owned by mod_timed, ordinal 2, name null, claimedModId null, Item 738, Type net.minecraft.src.RubyLegs, owned by mod_timed, ordinal 0, name null, claimedModId null), 737=(Item 737, Type net.minecraft.src.RubyArmor, owned by mod_timed, ordinal 1, name null, claimedModId null, Item 737, Type net.minecraft.src.RubyPlate, owned by mod_timed, ordinal 0, name null, claimedModId null), 736=(Item 736, Type net.minecraft.src.RubyArmor, owned by mod_timed, ordinal 0, name null, claimedModId null, Item 736, Type net.minecraft.src.RubyHelmet, owned by mod_timed, ordinal 0, name null, claimedModId null), 743=(Item 743, Type net.minecraft.src.FlintArmor, owned by mod_timed, ordinal 3, name null, claimedModId null, Item 743, Type net.minecraft.src.FlintBoots, owned by mod_timed, ordinal 0, name null, claimedModId null), 742=(Item 742, Type net.minecraft.src.FlintArmor, owned by mod_timed, ordinal 2, name null, claimedModId null, Item 742, Type net.minecraft.src.FlintLegs, owned by mod_timed, ordinal 0, name null, claimedModId null), 741=(Item 741, Type net.minecraft.src.FlintArmor, owned by mod_timed, ordinal 1, name null, claimedModId null, Item 741, Type net.minecraft.src.FlintPlate, owned by mod_timed, ordinal 0, name null, claimedModId null), 740=(Item 740, Type net.minecraft.src.FlintArmor, owned by mod_timed, ordinal 0, name null, claimedModId null, Item 740, Type net.minecraft.src.FlintHelmet, owned by mod_timed, ordinal 0, name null, claimedModId null)} mod_timed(server version): package net.minecraft.src; import java.util.Map; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.client.entity.EntityClientPlayerMP; import net.minecraft.client.gui.inventory.GuiContainer; import net.minecraft.client.model.ModelBase; import net.minecraft.client.model.ModelPig; import net.minecraft.client.model.ModelRenderer; import net.minecraft.client.renderer.entity.RenderLiving; import net.minecraft.client.renderer.entity.RenderPig; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.Entity; import net.minecraftforge.common.EnumHelper; import net.minecraft.entity.EntityEggInfo; import net.minecraft.entity.EntityList; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.EnumCreatureType; import net.minecraft.entity.ai.EntityAIControlledByPlayer; import net.minecraft.entity.ai.EntityAIEatGrass; import net.minecraft.entity.ai.EntityAILookIdle; import net.minecraft.entity.ai.EntityAIMate; import net.minecraft.entity.ai.EntityAIPanic; import net.minecraft.entity.ai.EntityAITempt; import net.minecraft.entity.ai.EntityAIWander; import net.minecraft.entity.effect.EntityLightningBolt; import net.minecraft.entity.monster.EntityMob; import net.minecraft.entity.passive.EntityPig; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.Item; import net.minecraft.item.ItemFood; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.potion.Potion; import net.minecraft.stats.Achievement; import net.minecraft.stats.AchievementList; import net.minecraft.util.MathHelper; import net.minecraft.world.World; import net.minecraft.world.gen.feature.WorldGenMinable; import cpw.mods.fml.client.registry.RenderingRegistry; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.EntityRegistry; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.LanguageRegistry; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.network.NetworkMod.SidedPacketHandler; import cpw.mods.fml.common.network.NetworkRegistry; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.LanguageRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.inventory.IInventory; import net.minecraftforge.common.MinecraftForge; public class mod_timed extends BaseMod { static EnumArmorMaterial ArmorMaterialRuby = EnumHelper.addArmorMaterial("RubyArmor", 150, new int[]{5,6,2,3}, 15); static EnumArmorMaterial ArmorMaterialFlint = EnumHelper.addArmorMaterial("FlintArmor", 25, new int[]{2,4,3,2}, 15); public static final Item RubyHelmet = new RubyArmor(480, ArmorMaterialRuby, 3, 0) .setItemName("RubyPlate") .setIconCoord(2, ; public static final Item RubyChestplate = new RubyArmor(481, ArmorMaterialRuby, 3, 1).setItemName("RubyPlate").setIconCoord(2, 7); public static final Item RubyLeggins = new RubyArmor(482, ArmorMaterialRuby, 3, 2).setItemName("RubyLeg").setIconCoord(2, 6); public static final Item RubyBoots = new RubyArmor(483, ArmorMaterialRuby, 3, 3) .setItemName("RubyBoot").setIconCoord(2, 5); public static final Item FlintHelmet = new FlintArmor(484, ArmorMaterialFlint, 3, 0).setItemName("FlintHelm").setIconCoord(0, 6); public static final Item FlintChestplate = new FlintArmor(485, ArmorMaterialFlint, 3, 1).setItemName("FlintPlate").setIconCoord(0, 7); public static final Item FlintLeggins = new FlintArmor(486, ArmorMaterialFlint, 3, 2).setItemName("FlintLeg").setIconCoord(0, ; public static final Item FlintBoots = new FlintArmor(487, ArmorMaterialFlint, 3, 3) .setItemName("FlintBoot").setIconCoord(0, 9); public String getVersion() { return null; } @Init public void load() { LanguageRegistry.addName(RubyHelmet, "Ruby Helmet"); LanguageRegistry.addName(RubyChestplate, "Ruby Plate"); LanguageRegistry.addName(RubyLeggins, "Ruby Legs"); LanguageRegistry.addName(RubyBoots, "Ruby Boots"); LanguageRegistry.addName(FlintHelmet, "Flint Helmet"); LanguageRegistry.addName(FlintChestplate, "Flint Plate"); LanguageRegistry.addName(FlintLeggins, "Flint Legs"); LanguageRegistry.addName(FlintBoots, "Flint Boots"); RubyBoots.setCreativeTab(mod_timed.tabmod); RubyLeggins.setCreativeTab(mod_timed.tabmod); RubyChestplate.setCreativeTab(mod_timed.tabmod); RubyHelmet.setCreativeTab(mod_timed.tabmod); FlintHelmet.setCreativeTab(mod_timed.tabmod); FlintLeggins.setCreativeTab(mod_timed.tabmod); FlintChestplate.setCreativeTab(mod_timed.tabmod); FlintBoots.setCreativeTab(mod_timed.tabmod); FlintHoe.setCreativeTab(mod_timed.tabmod); } } RubyArmor: package net.minecraft.src; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; import net.minecraftforge.common.IArmorTextureProvider; public class RubyArmor extends ItemArmor implements IArmorTextureProvider { public RubyArmor(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3, int par4) { super(par1, par2EnumArmorMaterial, par3, par4); } @Override public String getTextureFile() { return "/New/Untitled-1.png"; } @Override public String getArmorTextureFile(ItemStack itemstack) { if (itemstack.itemID == mod_timed.RubyHelmet.itemID || itemstack.itemID == mod_timed.RubyChestplate.itemID || itemstack.itemID == mod_timed.RubyBoots.itemID) { return "/New/armor/blue_1.png"; } else if (itemstack.itemID == mod_timed.RubyLeggins.itemID) { return "/New/armor/blue_2.png"; } return null; } } FlintArmor package net.minecraft.src; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; import net.minecraftforge.common.IArmorTextureProvider; public class FlintArmor extends ItemArmor implements IArmorTextureProvider { public FlintArmor(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3, int par4) { super(par1, par2EnumArmorMaterial, par3, par4); } @Override public String getTextureFile() { return "/TimedItems.png"; } @Override public String getArmorTextureFile(ItemStack itemstack) { if (itemstack.itemID == mod_timed.FlintHelmet.itemID || itemstack.itemID == mod_timed.FlintChestplate.itemID || itemstack.itemID == mod_timed.FlintBoots.itemID) { return "/Flint01.png"; } else if (itemstack.itemID == mod_timed.FlintLeggins.itemID) { return "/Flint02.png"; } return null; } }
  3. so should it look like this inside the mod_*.java? public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { return ID; } public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { return ID; } I am a newbie to Java
  4. NVM got it fixed, thank you. EDIT: How can I get UI to work?
  5. I know, I just wanted to know if there were any code i could not use or had to use. 2013-01-25 17:10:01 [iNFO] [ForgeModLoader] Forge Mod Loader version 4.7.4.520 for Minecraft 1.4.7 loading 2013-01-25 17:10:03 [iNFO] [sTDOUT] 210 recipes 2013-01-25 17:10:03 [iNFO] [sTDOUT] 27 achievements 2013-01-25 17:10:04 [iNFO] [Minecraft] Starting minecraft server version 1.4.7 2013-01-25 17:10:04 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization 2013-01-25 17:10:04 [iNFO] [sTDOUT] MinecraftForge v6.6.0.497 Initialized 2013-01-25 17:10:04 [iNFO] [ForgeModLoader] MinecraftForge v6.6.0.497 Initialized 2013-01-25 17:10:04 [iNFO] [sTDOUT] Replaced 84 ore recipies 2013-01-25 17:10:04 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Found a minecraft related directory at D:\mcm\mcp - Kopi\eclipse\Minecraft\bin, examining for mod candidates 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\jars\bin\jinput.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\jars\bin\lwjgl_util.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\jars\bin\lwjgl.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Found a minecraft related file at D:\mcm\mcp - Kopi\jars\bin\minecraft.jar, examining for mod candidates 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\lib\argo-2.25.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\lib\bcprov-jdk15on-147.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\lib\asm-all-4.0.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\lib\guava-12.0.1.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\jars\lib\argo-2.25.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\jars\lib\guava-12.0.1.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\jars\lib\asm-all-4.0.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Skipping known library file D:\mcm\mcp - Kopi\jars\lib\bcprov-jdk15on-147.jar 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2013-01-25 17:10:04 [iNFO] [ForgeModLoader] Searching D:\mcm\mcp - Kopi\jars\mods for mods 2013-01-25 17:10:04 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2013-01-25 17:10:04 [FINE] [ForgeModLoader] No mcmod.info file found in directory bin 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package ibxm 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block.material 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.audio 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.entity 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.achievement 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.inventory 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.model 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.multiplayer 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.particle 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.culling 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.entity 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.texturefx 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.tileentity 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.settings 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.texturepacks 2013-01-25 17:10:04 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.command 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.crash 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.creativetab 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.dispenser 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.enchantment 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.ai 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.boss 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.effect 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.item 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.monster 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.passive 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.player 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.projectile 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.inventory 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item.crafting 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.nbt 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.packet 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.rcon 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.pathfinding 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.potion 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.profiler 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.dedicated 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.gui 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.integrated 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.management 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Identified a BaseMod type mod net.minecraft.src.mod_timed 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.stats 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.tileentity 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.util 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.village 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.biome 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk.storage 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.demo 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.feature 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.layer 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.structure 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.storage 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.item 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.terraingen 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.liquids 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package paulscode 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound 2013-01-25 17:10:05 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods 2013-01-25 17:10:05 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file 2013-01-25 17:10:05 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Received a system property request '' 2013-01-25 17:10:05 [FINE] [ForgeModLoader] System property request managing the state of 0 mods 2013-01-25 17:10:05 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Activating mod mcp 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Activating mod FML 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Activating mod Forge 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Enabling mod mod_timed 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Activating mod mod_timed 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied 2013-01-25 17:10:05 [FINE] [ForgeModLoader] All mod requirements are satisfied 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Sorting mods into an ordered list 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Mod sorting completed successfully 2013-01-25 17:10:05 [FINE] [ForgeModLoader] Mod sorting data: 2013-01-25 17:10:05 [FINE] [ForgeModLoader] mod_timed(mod_timed:Not available): bin () 2013-01-25 17:10:05 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mcp 2013-01-25 17:10:05 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mcp 2013-01-25 17:10:05 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod FML 2013-01-25 17:10:05 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod FML 2013-01-25 17:10:05 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Forge 2013-01-25 17:10:05 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Forge 2013-01-25 17:10:05 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_timed 2013-01-25 17:10:05 [iNFO] [sTDERR] java.lang.NoClassDefFoundError: net/minecraft/client/renderer/entity/Render 2013-01-25 17:10:05 [iNFO] [sTDERR] at java.lang.Class.forName0(Native Method) 2013-01-25 17:10:05 [iNFO] [sTDERR] at java.lang.Class.forName(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.common.ModClassLoader.loadBaseModClass(ModClassLoader.java:87) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.common.modloader.ModLoaderModContainer.constructMod(ModLoaderModContainer.java:489) 2013-01-25 17:10:05 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-01-25 17:10:05 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140) 2013-01-25 17:10:05 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-01-25 17:10:05 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2013-01-25 17:10:05 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:479) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:86) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:345) 2013-01-25 17:10:05 [iNFO] [sTDERR] at net.minecraft.server.dedicated.DedicatedServer.startServer(DedicatedServer.java:64) 2013-01-25 17:10:05 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:458) 2013-01-25 17:10:05 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-01-25 17:10:05 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: net.minecraft.client.renderer.entity.Render 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:185) 2013-01-25 17:10:05 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2013-01-25 17:10:05 [iNFO] [sTDERR] ... 30 more 2013-01-25 17:10:05 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/entity/Render for invalid side SERVER 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:38) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:228) 2013-01-25 17:10:05 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:173) 2013-01-25 17:10:05 [iNFO] [sTDERR] ... 32 more 2013-01-25 17:10:05 [sEVERE] [Minecraft] Encountered an unexpected exception NoClassDefFoundError java.lang.NoClassDefFoundError: net/minecraft/client/renderer/entity/Render at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at cpw.mods.fml.common.ModClassLoader.loadBaseModClass(ModClassLoader.java:87) at cpw.mods.fml.common.modloader.ModLoaderModContainer.constructMod(ModLoaderModContainer.java:489) 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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) at com.google.common.eventbus.EventBus.post(EventBus.java:268) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140) 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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) at com.google.common.eventbus.EventBus.post(EventBus.java:268) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83) at cpw.mods.fml.common.Loader.loadMods(Loader.java:479) at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:86) at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:345) at net.minecraft.server.dedicated.DedicatedServer.startServer(DedicatedServer.java:64) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:458) at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) Caused by: java.lang.ClassNotFoundException: net.minecraft.client.renderer.entity.Render at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:185) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 30 more Caused by: java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/entity/Render for invalid side SERVER at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:38) at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:228) at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:173) ... 32 more 2013-01-25 17:10:05 [sEVERE] [Minecraft] This crash report has been saved to: D:\mcm\mcp - Kopi\jars\.\crash-reports\crash-2013-01-25_17.10.05-server.txt 2013-01-25 17:10:44 [iNFO] [Minecraft] An unknown error occurred while attempting to perform this command 2013-01-25 17:10:44 [iNFO] [sTDERR] java.lang.NullPointerException 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.command.ServerCommandManager.notifyAdmins(ServerCommandManager.java:73) 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.command.CommandBase.notifyAdmins(CommandBase.java:280) 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.command.CommandBase.notifyAdmins(CommandBase.java:273) 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.command.CommandServerStop.processCommand(CommandServerStop.java:22) 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.command.CommandHandler.executeCommand(CommandHandler.java:82) 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.server.dedicated.DedicatedServer.executePendingCommands(DedicatedServer.java:309) 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.server.dedicated.DedicatedServer.finalTick(DedicatedServer.java:236) 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) 2013-01-25 17:10:44 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-01-25 17:10:47 [iNFO] [Minecraft] Stopping server 2013-01-25 17:10:47 [iNFO] [Minecraft] Saving worlds 2013-01-25 17:10:47 [iNFO] [sTDERR] java.lang.NullPointerException 2013-01-25 17:10:47 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.saveAllWorlds(MinecraftServer.java:358) 2013-01-25 17:10:47 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:406) 2013-01-25 17:10:47 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:550) 2013-01-25 17:10:47 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-01-25 17:10:47 [FINER] [ForgeModLoader] Sending event FMLServerStoppedEvent to mod mcp 2013-01-25 17:10:47 [FINER] [ForgeModLoader] Sent event FMLServerStoppedEvent to mod mcp 2013-01-25 17:10:47 [FINER] [ForgeModLoader] Sending event FMLServerStoppedEvent to mod FML 2013-01-25 17:10:47 [FINER] [ForgeModLoader] Sent event FMLServerStoppedEvent to mod FML 2013-01-25 17:10:47 [FINER] [ForgeModLoader] Sending event FMLServerStoppedEvent to mod Forge 2013-01-25 17:10:47 [FINER] [ForgeModLoader] Sent event FMLServerStoppedEvent to mod Forge 2013-01-25 17:10:47 [FINER] [ForgeModLoader] Sending event FMLServerStoppedEvent to mod mod_timed 2013-01-25 17:10:47 [FINER] [ForgeModLoader] Sent event FMLServerStoppedEvent to mod mod_timed 2013-01-25 17:10:47 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from CONSTRUCTING to SERVER_STOPPED. Loading cannot continue 2013-01-25 17:10:47 [sEVERE] [ForgeModLoader] mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Available FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Available Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Available mod_timed [mod_timed] (bin) Unloaded->Available 2013-01-25 17:10:47 [sEVERE] [ForgeModLoader] The following problems were captured during this phase 2013-01-25 17:10:47 [iNFO] [sTDERR] Exception in thread "Server thread" cpw.mods.fml.common.LoaderException 2013-01-25 17:10:47 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:117) 2013-01-25 17:10:47 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.serverStopped(Loader.java:752) 2013-01-25 17:10:47 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLCommonHandler.handleServerStopped(FMLCommonHandler.java:459) 2013-01-25 17:10:47 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:559) 2013-01-25 17:10:47 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) Am I able to paste this into a spoiler? if so how?
  6. Hi there So I have created my mod, but how can I make it so I can play it on a server? I keep getting an error. and I don't know how to fix it. are there any special code to use? I know I cant use client files. I already deleted them.
×
×
  • Create New...

Important Information

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