I'm trying to create a personal mod pack as of right now and I'm just using a few mods to start off. I think I know the two conflicting mods. They are Extra BiomesXL and ComputerCraft. I'm not sure if there is an item ID issue or what. From what I could understand, there is. I could be totally wrong though.
The Error Report
---- Minecraft Crash Report ----
// This doesn't make any sense!
Time: 11/24/12 6:54 PM
Description: Failed to start game
java.lang.IllegalArgumentException: Slot 207 is already occupied by [email protected] when adding [email protected]
at amj.(Block.java:292)
at aju.(BlockContainer.java:7)
at dan200.computer.shared.BlockComputerBase.(BlockComputerBase.java:18)
at dan200.computer.shared.BlockComputer.(BlockComputer.java:26)
at dan200.computer.shared.ComputerCraftProxyCommon.registerItems(ComputerCraftProxyCommon.java:200)
at dan200.computer.shared.ComputerCraftProxyCommon.load(ComputerCraftProxyCommon.java:31)
at dan200.computer.client.ComputerCraftProxyClient.load(ComputerCraftProxyClient.java:35)
at dan200.ComputerCraft.load(ComputerCraft.java:161)
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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:440)
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.initializeMods(Loader.java:651)
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:197)
at net.minecraft.client.Minecraft.a(Minecraft.java:469)
at net.minecraft.client.Minecraft.run(Minecraft.java:756)
at java.lang.Thread.run(Unknown Source)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- System Details --
Details:
Minecraft Version: 1.4.5
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.7.0_05, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 351379128 bytes (335 MB) / 514523136 bytes (490 MB) up to 954466304 bytes (910 MB)
JVM Flags: 2 total; -Xms512m -Xmx1024m
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v7.23 FML v4.5.2.459 Minecraft Forge 6.4.0.396 Optifine OptiFine_1.4.5_HD_U_D3 10 mods loaded, 10 mods active
mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
mod_CodeChickenCore [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
mod_NotEnoughItems [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
ComputerCraft [ComputerCraft] (ComputerCraft1.47.zip) Unloaded->Constructed->Pre-initialized->Errored
CCTurtle [ComputerCraft Turtles] (ComputerCraft1.47.zip) Unloaded->Constructed->Pre-initialized->Errored
ExtrabiomesXL [ExtrabiomesXL] (ExtrabiomesXL-universal-3.5.0b.jar) Unloaded->Constructed->Pre-initialized->Initialized
WR-CBE|Core [WR-CBE Core] (WR-CBE Core 1.3.1.1.jar) Unloaded->Constructed->Pre-initialized->Initialized
WR-CBE|Addons [WR-CBE Addons] (WR-CBE Addons 1.3.1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized
LWJGL: 2.4.2
OpenGL: GeForce GTX 550 Ti/PCIe/SSE2 GL version 4.2.0, NVIDIA Corporation
Is Modded: Definitely; Client brand changed to 'forge,fml'
Type: Client (map_client.txt)
Texture Pack: Default
Profiler Position: N/A (disabled)
Vec3 Pool Size: ~~ERROR~~ NullPointerException: null
Yep, it's an ID conflict. Those are simple to fix. You need to go into your config folder, and find the config file for one of those 2 mods.
Computer craft actually uses 2 different config files.
CCTurtle.cfg
and
ComputerCraft.cfg
Extrabiomes actually puts it's config in a folder in the config folder
config\extrabiomes\extrabiomes.cfg
But you need to open one of the configs, with notepad or any other text editor, and change the ID that is conflicting to a new number.
You need to find the 207 value and change it to something else. I normally start by adding a 1 in front, so make it 1207.
You can use anything up to 4096.
It's likely you will get other conflicts after fixing this one. (If I remember right all the CC ones conflict with extra biomes. Even the ones in CCturtle
Some people like to go into all their config files at the start and reassign everything.
All ExtraBiomes IDs get assigned into 200-300 range.
Industrial craft gets 300-400
Computer Craft gets 400-500
etc.
etc. etc.
That method is a bit overkill, imho, I'd rather just deal with the conflicts when they occur.
The Error Report
The Error Report (Snapshot)
The Mods
- Minecraft Forge 6.4.0.396
- OptiFine 1.4.5 HD U D3
- Code Chicken Core 0.6.10
- Not Enough Items 1.4.2.8
- Wireless Redstone ChickenBonesEdition Core 1.3.1.1
- Wireless Redstone ChickenBonesEdition Addons 1.3.1.2
- Computer Craft 1.47
- Extra BiomesXL 3.5.0b
I am running Window 7 Home Premium 64-bit with Java Version 7 update 5
My GPU is an Nvidia 550 Ti.
Thanks in advance. I would really like to fix this and get help from the authors eventually and make a huge compilation of mods.
Thanks Again,
Icyl
EDIT: I fixed it, I had to play around with item IDs in the .minecraft/config files.
-
View User Profile
-
View Posts
-
Send Message
Retired StaffComputer craft actually uses 2 different config files.
CCTurtle.cfg
and
ComputerCraft.cfg
Extrabiomes actually puts it's config in a folder in the config folder
config\extrabiomes\extrabiomes.cfg
But you need to open one of the configs, with notepad or any other text editor, and change the ID that is conflicting to a new number.
So from your error you can see this.
You need to find the 207 value and change it to something else. I normally start by adding a 1 in front, so make it 1207.
You can use anything up to 4096.
It's likely you will get other conflicts after fixing this one. (If I remember right all the CC ones conflict with extra biomes. Even the ones in CCturtle
Some people like to go into all their config files at the start and reassign everything.
All ExtraBiomes IDs get assigned into 200-300 range.
Industrial craft gets 300-400
Computer Craft gets 400-500
etc.
etc. etc.
That method is a bit overkill, imho, I'd rather just deal with the conflicts when they occur.
~Icyl