Jump to content

alteenzo

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by alteenzo

  1. Ohh i see now! Thank you so much for telling me where it is , I have fixed the problem now # Configuration file #################### # armor ids #################### "armor ids" { I:"Lead Boots ID"=1018 I:"Lead Chest ID"=1016 I:"Lead Helmet ID"=1015 I:"Lead Leggings ID"=1017 I:"Quontonium Boots ID"=1006 I:"Quontonium Chest ID"=1004 I:"Quontonium Helmet ID"=1003 I:"Quontonium Leggings ID"=1005 I:"Rhodium Boots ID"=1030 I:"Rhodium Chest ID"=1028 I:"Rhodium Helmet ID"=1027 I:"Rhodium Leggings ID"=1029 I:"Ruby Boots ID"=1042 I:"Ruby Chest ID"=1040 I:"Ruby Helmet ID"=1039 I:"Ruby Leggings ID"=1041 I:"Sapphire Block ID"=1048 I:"Sapphire Boots ID"=1042 I:"Sapphire Chest ID"=1040 I:"Sapphire Helmet ID"=1039 I:"Sapphire Leggings ID"=1041 } #################### # block ids #################### "block ids" { I:"Lead Block ID"=1012 I:"Lead Ore ID"=1013 I:"Quontonium Block ID"=1000 I:"Quontonium Ore ID"=1001 I:"Rhodium Block ID"=1024 I:"Rhodium Ore ID"=1025 I:"Ruby Block ID"=1036 I:"Ruby Ore ID"=1037 I:"Sapphire Block ID"=1048 I:"Sapphire Ore ID"=1049 } #################### # material ids #################### "material ids" { I:"Lead Ingot ID"=1014 I:"Rhodium Ingot ID"=1026 I:"Ruby ID"=1038 I:"Sapphire ID"=1050 }
  2. What is a config file.. I don't know! 4th day of coding.
  3. My configs with all my IDs are on the main class i don't touch the config file. But if you really need it http://pastebin.com/E7wucn8w
  4. If you mean the whole config file then here it is. http://pastebin.com/E7wucn8w
  5. But i don't see sapphire with the same id as ruby? Could you please show me?
  6. I made Sapphire Armor and Ruby Armor and they are conflicted but I don't know why.. Here is the Main Class Code http://pastebin.com/BCvjvwnZ Here is the SapphireArmor Class Code http://pastebin.com/SJ4569Pj Here is the RubyArmor Class Code http://pastebin.com/ccRvsPNH Here is the Console Report of the Error http://pastebin.com/TcADWAnm
  7. Minecraft doesn't crash, it's just that the items are mismatched, it turns my ruby armor into sapphire armor, for some idk reason.
  8. Sorry, but i don't even know what i'm suppose to read in the config file, i am too new at this. It's only my 4th day lol
  9. Config File RubyHelmetID = config.get("Armor IDs", "Ruby Helmet ID", 1039).getInt(); RubyChestID = config.get("Armor IDs", "Ruby Chest ID", 1040).getInt(); RubyLeggingsID = config.get("Armor IDs", "Ruby Leggings ID", 1041).getInt(); RubyBootsID = config.get("Armor IDs", "Ruby Boots ID", 1042).getInt(); SapphireHelmetID = config.get("Armor IDs", "Sapphire Helmet ID", 1051).getInt(); SapphireChestID = config.get("Armor IDs", "Sapphire Chest ID", 1052).getInt(); SapphireLeggingsID = config.get("Armor IDs", "Sapphire Leggings ID", 1053).getInt(); SapphireBootsID = config.get("Armor IDs", "Sapphire Boots ID", 1054).getInt();
  10. Sorry about the spoiler thing, No buttons are working for me.. Also the IDs are different for the items, but yet i still get the error? Here is the RubyArmor Code package science.Ruby; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.Entity; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; public class RubyArmor extends ItemArmor{ private String texturePath = "random_mod:"; private String iconPath = "random_mod:"; public RubyArmor(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3, int par4, String type) { super(par1, par2EnumArmorMaterial, par3, par4); this.setMaxStackSize(1); this.setCreativeTab(CreativeTabs.tabCombat); this.SetArmorType(type.toLowerCase(), par4); } // 0 = Helmet // 1 = Chest // 2 = Leggings // 3 = Boots private void SetArmorType(String type, int par4) { switch(par4) { case 0: this.setUnlocalizedName(type + "helmet"); this.texturePath += type + "_layer_1.png"; this.iconPath +=type + "_helmet"; break; case 1: this.setUnlocalizedName(type + "chest"); this.texturePath += type + "_layer_1.png"; this.iconPath +=type + "_chest"; break; case 2: this.setUnlocalizedName(type + "leggings"); this.texturePath += type + "_layer_2.png"; this.iconPath +=type + "_leggings"; break; case 3: this.setUnlocalizedName(type + "boots"); this.texturePath += type + "_layer_2.png"; this.iconPath +=type + "_boots"; break; } } @SideOnly(Side.CLIENT) public void registerIcons(IconRegister reg) { this.itemIcon = reg.registerIcon(this.iconPath); } @SideOnly(Side.CLIENT) public String getArmorTexture(ItemStack stack, Entity entity, int slot, int layer) { return this.texturePath; } } Here is the SapphireArmor Code package science.Sapphire; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.Entity; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public class SapphireArmor extends ItemArmor{ private String texturePath = "random_mod:"; private String iconPath = "random_mod:"; public SapphireArmor(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3, int par4, String type) { super(par1, par2EnumArmorMaterial, par3, par4); this.setMaxStackSize(1); this.setCreativeTab(CreativeTabs.tabCombat); this.SetArmorType(type.toLowerCase(), par4); } // 0 = Helmet // 1 = Chest // 2 = Leggings // 3 = Boots private void SetArmorType(String type, int par4) { switch(par4) { case 0: this.setUnlocalizedName(type + "helmet"); this.texturePath += type + "_layer_1.png"; this.iconPath +=type + "_helmet"; break; case 1: this.setUnlocalizedName(type + "chest"); this.texturePath += type + "_layer_1.png"; this.iconPath +=type + "_chest"; break; case 2: this.setUnlocalizedName(type + "leggings"); this.texturePath += type + "_layer_2.png"; this.iconPath +=type + "_leggings"; break; case 3: this.setUnlocalizedName(type + "boots"); this.texturePath += type + "_layer_2.png"; this.iconPath +=type + "_boots"; break; } } @SideOnly(Side.CLIENT) public void registerIcons(IconRegister reg) { this.itemIcon = reg.registerIcon(this.iconPath); } @SideOnly(Side.CLIENT) public String getArmorTexture(ItemStack stack, Entity entity, int slot, int layer) { return this.texturePath; } } If you care aha
  11. Main Class (Random_Mod) Code
  12. I am making a mod and when i load a world, it comes up with "ID Mismatch Between World and Game". This is the report. The rubyArmor doesn't have anything to do with the sapphire armor but the report sais it does? If you need my code for the main class (Random_Mod) just ask
  13. My minecraft just stays on "Building Terrain" and doesn't do anything after that.. Here is my crash report. Nov 22, 2013 11:46:28 AM net.minecraft.launchwrapper.LogWrapper log INFO: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker Nov 22, 2013 11:46:28 AM net.minecraft.launchwrapper.LogWrapper log INFO: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker Nov 22, 2013 11:46:28 AM net.minecraft.launchwrapper.LogWrapper log INFO: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker 2013-11-22 11:46:28 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.4.20.916 for Minecraft 1.6.4 loading 2013-11-22 11:46:28 [iNFO] [ForgeModLoader] Java is Java HotSpot 64-Bit Server VM, version 1.6.0_65, running on Mac OS X:x86_64:10.7.3, installed at /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home 2013-11-22 11:46:28 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-11-22 11:46:28 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg 2013-11-22 11:46:28 [iNFO] [sTDOUT] Loaded 109 rules from AccessTransformer config file forge_at.cfg 2013-11-22 11:46:28 [sEVERE] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work! 2013-11-22 11:46:29 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker 2013-11-22 11:46:29 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker 2013-11-22 11:46:29 [iNFO] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main} 2013-11-22 11:46:30 [iNFO] [Minecraft-Client] Setting user: Player159 2013-11-22 11:46:30 [iNFO] [Minecraft-Client] (Session ID is null) 2013-11-22 11:46:31 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0 2013-11-22 11:46:31 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default 2013-11-22 11:46:32 [iNFO] [sTDOUT] 2013-11-22 11:46:32 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-11-22 11:46:32 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-11-22 11:46:32 [iNFO] [sTDOUT] MinecraftForge v9.11.1.916 Initialized 2013-11-22 11:46:32 [iNFO] [ForgeModLoader] MinecraftForge v9.11.1.916 Initialized 2013-11-22 11:46:32 [iNFO] [sTDOUT] Replaced 101 ore recipies 2013-11-22 11:46:32 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-11-22 11:46:32 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-11-22 11:46:32 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-11-22 11:46:32 [iNFO] [ForgeModLoader] Reading custom logging properties from /Users/tristanaltieri/Desktop/forge/mcp/jars/config/logging.properties 2013-11-22 11:46:32 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-11-22 11:46:32 [iNFO] [sTDOUT] OpenAL initialized. 2013-11-22 11:46:32 [iNFO] [ForgeModLoader] Searching /Users/tristanaltieri/Desktop/forge/mcp/jars/mods for mods 2013-11-22 11:46:32 [iNFO] [sTDOUT] 2013-11-22 11:46:33 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2013-11-22 11:46:33 [iNFO] [mcp] Activating mod mcp 2013-11-22 11:46:33 [iNFO] [FML] Activating mod FML 2013-11-22 11:46:33 [iNFO] [Forge] Activating mod Forge 2013-11-22 11:46:33 [iNFO] [Random_Mod] Activating mod Random_Mod 2013-11-22 11:46:33 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well 2013-11-22 11:46:33 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well 2013-11-22 11:46:33 [WARNING] [Random_Mod] Mod Random_Mod is missing a pack.mcmeta file, things may not work well 2013-11-22 11:46:33 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Random_Mod 2013-11-22 11:46:34 [iNFO] [sTDOUT] 2013-11-22 11:46:34 [iNFO] [sTDOUT] SoundSystem shutting down... 2013-11-22 11:46:34 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2013-11-22 11:46:34 [iNFO] [sTDOUT] 2013-11-22 11:46:34 [iNFO] [sTDOUT] 2013-11-22 11:46:34 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-11-22 11:46:34 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2013-11-22 11:46:34 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2013-11-22 11:46:34 [sEVERE] [Random_Mod] The mod Random_Mod appears to have an invalid event annotation EventHandler. This annotation can only apply to methods with recognized event arguments - it will not be called 2013-11-22 11:46:34 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2013-11-22 11:46:34 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-11-22 11:46:34 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-11-22 11:46:34 [iNFO] [sTDOUT] OpenAL initialized. 2013-11-22 11:46:34 [iNFO] [sTDOUT] 2013-11-22 11:46:35 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods 2013-11-22 11:46:35 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well 2013-11-22 11:46:35 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well 2013-11-22 11:46:35 [WARNING] [Random_Mod] Mod Random_Mod is missing a pack.mcmeta file, things may not work well 2013-11-22 11:46:35 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Random_Mod 2013-11-22 11:46:35 [iNFO] [sTDOUT] 2013-11-22 11:46:35 [iNFO] [sTDOUT] SoundSystem shutting down... 2013-11-22 11:46:36 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2013-11-22 11:46:36 [iNFO] [sTDOUT] 2013-11-22 11:46:36 [iNFO] [sTDOUT] 2013-11-22 11:46:36 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-11-22 11:46:36 [sEVERE] [Minecraft-Client] ########## GL ERROR ########## 2013-11-22 11:46:36 [sEVERE] [Minecraft-Client] @ Post startup 2013-11-22 11:46:36 [sEVERE] [Minecraft-Client] 1281: Invalid value 2013-11-22 11:46:36 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-11-22 11:46:36 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-11-22 11:46:36 [iNFO] [sTDOUT] OpenAL initialized. 2013-11-22 11:46:36 [iNFO] [sTDOUT] 2013-11-22 11:46:39 [sEVERE] [Minecraft-Client] Realms: Invalid session id 2013-11-22 11:47:25 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.6.4 2013-11-22 11:47:25 [iNFO] [Minecraft-Server] Generating keypair 2013-11-22 11:47:25 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@28ce2c57) 2013-11-22 11:47:25 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@28ce2c57) 2013-11-22 11:47:25 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@28ce2c57) 2013-11-22 11:47:25 [iNFO] [Minecraft-Server] Preparing start region for level 0 2013-11-22 11:47:25 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Loading NBT data 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTBase.func_130104_b(NBTBase.java:101) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTTagCompound.load(NBTTagCompound.java:61) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTBase.func_130104_b(NBTBase.java:92) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTTagCompound.load(NBTTagCompound.java:61) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTBase.func_130104_b(NBTBase.java:92) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTBase.readNamedTag(NBTBase.java:74) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.CompressedStreamTools.read(CompressedStreamTools.java:126) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.CompressedStreamTools.readCompressed(CompressedStreamTools.java:33) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.world.storage.MapStorage.loadData(MapStorage.java:72) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.world.gen.structure.MapGenStructure.func_143027_a(MapGenStructure.java:237) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.world.gen.structure.MapGenStructure.recursiveGenerate(MapGenStructure.java:36) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.world.gen.MapGenBase.generate(MapGenBase.java:33) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.world.gen.ChunkProviderGenerate.provideChunk(ChunkProviderGenerate.java:332) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:131) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:294) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:90) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:107) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:445) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-11-22 11:47:25 [iNFO] [sTDERR] Caused by: java.io.EOFException 2013-11-22 11:47:25 [iNFO] [sTDERR] at java.io.DataInputStream.readByte(DataInputStream.java:250) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTBase.func_130104_b(NBTBase.java:79) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTTagCompound.load(NBTTagCompound.java:61) 2013-11-22 11:47:25 [iNFO] [sTDERR] at net.minecraft.nbt.NBTBase.func_130104_b(NBTBase.java:92) 2013-11-22 11:47:25 [iNFO] [sTDERR] ... 18 more
×
×
  • Create New...

Important Information

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