Hi guys, So I'm trying to make myself a purely electrical engine, and I'm as far as making the model, getting it through Unity, making the part.cfg and actually hooking it up to a ship. The model's really just a placeholder to play with how to make things, and the .cfg is just the stock ion engine's one with the requirement for xenon removed and the thrust upped really, really far. However, when I load up the ship (which consists of a cockpit and an arseload of batteries), the engine activates just fine but tells me it's deprived of electric charge. Nothing happens. I'm almost certain I've done something wrong somewhere down the line (my last attempt at making a mod ended with it crashing KSP every time I tried to load it up - at least I passed that point this time), but I have no idea what. I will, of course, provide any information needed, but I'm not sure what you'd need. The .cfg is as follows: PART { name = IonEngine2 module = Part author = CSquared mesh = IonEngine2.mu scale = 1 rescaleFactor = 1 node_stack_top = 0.0, 0.2135562, 0.0, 0.0, 1.0, 0.0, 1 node_stack_bottom = 0.0, -0.1872844, 0.0, 0.0, 1.0, 0.0, 1 cost = 5700 category = Propulsion subcategory = 0 title = Dual State Electrical Propulsion System manufacturer = K. Lee description = Electricity in one end, thrust out the other. Simple. attachRules = 1,0,1,1,0 // --- standard part parameters --- mass = 15.00 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 7 maxTemp = 3600 MODULE { name = ModuleEngines thrustVectorTransformName = thrustTransform exhaustDamage = False ignitionThreshold = 0.1 minThrust = 0 maxThrust = 1500 heatProduction = 0 PROPELLANT { name = ElectricCharge ratio = 12.0 DrawGauge = True } atmosphereCurve { key = 0 4200 } } MODULE { name = FXModuleAnimateThrottle animationName = colorAnimation dependOnEngineState = True responseSpeed = 0.5 } } It shows up properly in the game, and I can attach it fine (although it attaches with empty space between it and the batteries since I haven't moved the node attachment point yet), it just doesn't actually function. Help?