Posted January 27, 201312 yr I'm working on a new modding project, and for some reason my mcmod file is non-functional. My encompassing class is CMI, so the zipfile for my mod contains the reobf'd CMI folder and the mcmod.info file described below. This is showing no information within the MultiMC tab, and the in-game mod list is telling me to provide a mcmod.info file. { "modinfoversion": 2, "modlist": [{ "modid": "AECMI", "name": "AEther's CMI", "description": "Integration between some of the biggest and coolest mods out there!", "version": "0.0.1", "mcversion": "1.4.6/7", "url": "http://www.minecraftforum.net/topic/1664069-wip-aethers-cmi-cross-mod-integration/", "authors": [ "AEtherchild", ], "requiredMods": [ "Forge" ], }] } The mcmod.info file was made in Notepad, ANSI encoded, if that makes a difference at all. I don't have an option to save-as in JSON so that was the next best choice. I've also set mod metadata within my CMI class itself, I have NO idea whether this is supposed to help or not. @PreInit public void load(FMLPreInitializationEvent event) { event.getModMetadata().modId = "AECMI"; event.getModMetadata().version = "0.0.1"; event.getModMetadata().name = "AEther's CMI"; event.getModMetadata().description = "Integration between some of the biggest mods out there!"; event.getModMetadata().authorList.add("AEtherchild"); event.getModMetadata().url = "http://www.minecraftforum.net/topic/1664069-wip-aethers-cmi-cross-mod-integration/"; } Question is. What am I doing wrong? Also while I'm here, I attempted to have the mcmod.info file within my CMI package in Eclipse, yet it got skipped over in obfuscation. Presumably I'm doing something wrong here too.
January 27, 201312 yr maybe because your putting your mod in the jar, overwriting the mcmod.info [shadow=black,right][glow=green,2,300]☟ ☞ uyjulian's website ☜ ☝[/glow][/shadow]
January 27, 201312 yr Author It's just going straight into the mods folder, through MultiMC's Edit Mods function.
February 3, 201312 yr Author May or may not have forgotten to surround the entire mcmod.info file's text in square brackets. Fixed.
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.