FTB crashes on startup

Status
Not open for further replies.

Nerixel

New Member
Jul 29, 2019
1,239
0
0
What pack are you using, and is it up to date?
Have you added any mods or modified current mods in the pack?

Try redownloading the mod pack, it should help with any corrupted files that you may have gotten the first time you downloaded the pack.
 

Dazedndconfused

New Member
Jul 29, 2019
8
0
0
This is the first time I have installed ftb on this OS. Trying to install Mindcrack and no I have not added or installed any mods
 

legoarf

New Member
Jul 29, 2019
3
0
0
I had been having trouble with it as well. Things weren't working right in my world so I decided to re-install everything but now with new everything it still wont even let me into a new world.
 

Azgult

New Member
Jul 29, 2019
69
0
0
Alright, I've decided to look into this and reverse-engineered the relevant redpower parts (shh, don't tell Eloraam). What I think is happening is that redpower logic/wiring/whatever is loading before redpower base (not core. base. Not sure what the difference is, but hey). They then try to access something from redpower base, but fail because that hasn't been loaded yet.

I'm not fully sure how forge load order works, but I think the mcmod.info file sorts out the dependencies. In this case all mod parts (including base, but except core) have core listed as its parent mod. A quick fix which should work would be to set base as the parent mod, forcing it to load first.

To do this, go into the mods folder and in all of the following: redpowercompat.zip, redpowercore.zip, redpowerdigital.zip and redpowermechanical.zip edit the mcmod.info file to exactly the text below:

Code:
[
{
	"modid": "RedPowerCore",
	"name": "RedPower",
	"description": "Power your world, comrade!",
	"version": "2.0 Prerelease 6",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"dependencies": [
		"mod_MinecraftForge"
	]
},
{
	"modid": "RedPowerBase",
	"name": "RP Base",
	"description": "Power your world, comrade! (Core items)",
	"version": "",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"parent": "RedPowerCore",
	"dependencies": [
		"mod_MinecraftForge"
	]
},
{
	"modid": "RedPowerWiring",
	"name": "RP Wiring",
	"description": "Power your world, comrade! (Wires)",
	"version": "",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"parent": "RedPowerBase",
	"dependencies": [
		"mod_MinecraftForge"
	]
},
{
	"modid": "RedPowerLogic",
	"name": "RP Logic",
	"description": "Power your world, comrade! (Logic Gates)",
	"version": "",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"parent": "RedPowerBase",
	"dependencies": [
		"mod_MinecraftForge"
	]
},
{
	"modid": "RedPowerLighting",
	"name": "RP Lighting",
	"description": "Power your world, comrade! (Lighting)",
	"version": "",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"parent": "RedPowerBase",
	"dependencies": [
		"mod_MinecraftForge"
	]
},
{
	"modid": "RedPowerWorld",
	"name": "RP World",
	"description": "Power your world, comrade! (World Gen)",
	"version": "",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"parent": "RedPowerBase",
	"dependencies": [
		"mod_MinecraftForge"
	]
},
{
	"modid": "RedPowerMachine",
	"name": "RP Machine",
	"description": "Power your world, comrade! (Machines)",
	"version": "",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"parent": "RedPowerBase",
	"dependencies": [
		"mod_MinecraftForge"
	]
},
{
	"modid": "RedPowerControl",
	"name": "RP Control",
	"description": "Power your world, comrade! (Computers)",
	"version": "",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"parent": "RedPowerBase",
	"dependencies": [
		"mod_MinecraftForge"
	]
},
{
	"modid": "RedPowerCompat",
	"name": "RP Compat",
	"description": "Power your world, comrade! (Compatibility)",
	"version": "",
	"credits": "By Eloraam",
	"logoFile": "/eloraam/base/rpbanner.png",

	"url": "http://www.eloraam.com/",
	"authors": [ "Eloraam" ],
	"parent": "RedPowerBase",
	"dependencies": [
		"mod_MinecraftForge"
	]
}
]

I don't know if this will work, but I certainly hope so.

EDIT: You should also post a bug report to Eloraam. This is almost certainly a bug. If the solution works, post a link to this thread too, it may save her some time debugging.
 
Status
Not open for further replies.