Я опять вернулся к моддингу, новый "проект начался". И вот проблема: "У меня ид не успевают заиниться, и получается вот такой лог:
2013-10-10 17:59:01 [INFO] [ForgeModLoader] Registering Forge Packet Handler
2013-10-10 17:59:01 [INFO] [ForgeModLoader] Succeeded registering Forge Packet Handler
2013-10-10 17:59:01 [INFO] [STDOUT] CONFLICT @ 0 item slot already occupied by net.minecraft.item.ItemSpade@1d98b84 while adding finch.wc.item.ItemDScepter@156b531
2013-10-10 17:59:01 [INFO] [fml.ItemTracker] The mod WitchCraft is overwriting existing item at 256 (net.minecraft.item.ItemSpade from Minecraft) with finch.wc.item.ItemDScepter
2013-10-10 17:59:01 [INFO] [STDOUT] CONFLICT @ 0 item slot already occupied by finch.wc.item.ItemDScepter@156b531 while adding finch.wc.item.ItemWitchingBall@187cd6a
2013-10-10 17:59:01 [INFO] [fml.ItemTracker] The mod WitchCraft is overwriting existing item at 256 (finch.wc.item.ItemDScepter from WitchCraft) with finch.wc.item.ItemWitchingBall
2013-10-10 17:59:01 [INFO] [STDOUT] CONFLICT @ 0 item slot already occupied by finch.wc.item.ItemWitchingBall@187cd6a while adding finch.wc.item.ItemAmethyst@1ce5a49
2013-10-10 17:59:01 [INFO] [fml.ItemTracker] The mod WitchCraft is overwriting existing item at 256 (finch.wc.item.ItemWitchingBall from WitchCraft) with finch.wc.item.ItemAmethyst
2013-10-10 17:59:01 [INFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
Это основа.
@EventHandler
public void preLoad(FMLPreInitializationEvent event)
{
Configuration config = new Configuration(event.getSuggestedConfigurationFile());
config.load();
ItemDScepterItemID = config.getItem("ItemDScepter", 6000).getInt();
ItemWitchingBallItemID = config.getItem("ItemWitchingBall", 6001).getInt();
OreBlockAmethystItemID = config.getBlock("OreBlockAmethyst", 500).getInt();
ItemAmethystItemID = config.getItem("ItemAmethyst", 6002).getInt();
config.save();
}
Слоты я так понял заняты. Пытался многое. Помогите :) Плюс обеспечен)
Ааапп!!!
Сообщение отредактировал 10 октября 2013 - 17:07