Jump to content

Help! My mod has a problem...


robot_rover

Recommended Posts

I have been working on this mod, it is still not complete so I know it is missing some animations and such, but I really can't figure out what is wrong. When I load KSP, it goes through the loading screen, but then when I open up the VAB every single part is gone. All of the tabs in the part sidebar are blank. I am absolutely sure my mod is the problem (this one) because when I remove it KSP works fine. If anyone can tell me what is wrong I would appreciate it. This is my first "real" mod and I can't for the life of me figure out what is wrong.

Screenshot:

Spoiler

09JbC6d.png

Config File:

Spoiler

PART
{
    name = PlasmaEngine
    module = Part
    author = robot_rover
    mesh = model.mu
    scale = 0.1
    node_stack_top = 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1
    node_stack_bottom = 0.0, -1, 0.0, 0.0, -1.0, 0.0, 1
    sound_vent_medium = engage
    sound_rocket_hard = running
    sound_vent_soft = disengage
    sound_explosion_low = flameout
    TechRequired = ionPropulsion
    entryCost = 50000
    cost = 20000
    category = Engine
    subcategory = 0
    title = RR-7426 "Dusk" Plasmatic Propulsion Engine
    manufacturer = RR Industries Corp.
    description = Mod Testing, meaningful description to come.
    attachRules = 1,0,1,0,0
    mass = 0.5
    dragModelType = default
    maximum_drag = 0.2
    minimum_drag = 0.2
    angularDrag = 2
    crashTolerance = 7
    maxTemp = 2000 // = 3600
    bulkheadProfiles = size1
    MODULE
    {
        name = ModuleEngines
        thrustVectorTransformName = thrustTransform
        exhaustDamage = True
        ignitionThreshold = 0.1
        minThrust = 0
        maxThrust = 60
        heatProduction = 0
        fxOffset = 0, 0, 0.21
        EngineType = Electric
        PROPELLANT
        {
            name = Electric Charge
            ratio = 1.5
            DrawGauge = True
        }
        PROPELLANT
        {
            name = Liquid Fuel
            ratio = 0.1
        }
        atmosphereCurve
        {
            key = 0 2000
            key = 1 100
            key = 3 0.1
        }
    }
    MODULE
    {
        name = ModuleGimbal
        gimbalTransformName = thrustTransform
        gimbalRange = 5
    }
    MODULE
    {
        name = ModuleTestSubject
        environments = 15
        useStaging = True
        useEvent = False
    }
}

 

 

Edited by robot_rover
Link to comment
Share on other sites

Not sure if it's all your problem but did you make your own Resources file for the fuel your using ? Or is it a booboo that you added a space in both of there names ? should be just

PART
{
    name = PlasmaEngine
    module = Part
    author = robot_rover
    mesh = model.mu
    scale = 0.1
    node_stack_top = 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1
    node_stack_bottom = 0.0, -1, 0.0, 0.0, -1.0, 0.0, 1
    sound_vent_medium = engage
    sound_rocket_hard = running
    sound_vent_soft = disengage
    sound_explosion_low = flameout
    TechRequired = ionPropulsion
    entryCost = 50000
    cost = 20000
    category = Engine
    subcategory = 0
    title = RR-7426 "Dusk" Plasmatic Propulsion Engine
    manufacturer = RR Industries Corp.
    description = Mod Testing, meaningful description to come.
    attachRules = 1,0,1,0,0
    mass = 0.5
    dragModelType = default
    maximum_drag = 0.2
    minimum_drag = 0.2
    angularDrag = 2
    crashTolerance = 7
    maxTemp = 2000 // = 3600
    bulkheadProfiles = size1
    MODULE
    {
        name = ModuleEngines
        thrustVectorTransformName = thrustTransform
        exhaustDamage = True
        ignitionThreshold = 0.1
        minThrust = 0
        maxThrust = 60
        heatProduction = 0
        fxOffset = 0, 0, 0.21
        EngineType = Electric
        PROPELLANT
        {
            name = ElectricCharge
            ratio = 1.5
            DrawGauge = True
        }
        PROPELLANT
        {
            name = LiquidFuel
            ratio = 0.1
        }
        atmosphereCurve
        {
            key = 0 2000
            key = 1 100
            key = 3 0.1
        }
    }
    MODULE
    {
        name = ModuleGimbal
        gimbalTransformName = thrustTransform
        gimbalRange = 5
    }
    MODULE
    {
        name = ModuleTestSubject
        environments = 15
        useStaging = True
        useEvent = False
    }
} 

 

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...