Jump to content

remove crew requirements


Recommended Posts

6 hours ago, tmccreight651 said:

i was wondering if there was a mod that removes crew requirements and allows you to launch crew modules without any kerbals onboard

The easy solution is to just include a probe core, as has been mentioned.

Or, if you meet all the following criteria:

  1. you have ModuleManager installed
  2. you're willing & able to use Notepad

...you can mod it yourself to make every crewed part act like a probe core!  :) 

Just make a file whose name ends in ".cfg" (call it whatever you like) and put it somewhere in GameData (doesn't matter where).  Then copy the following and paste it into that text file:

// Find every part that can command...
@PART[*]:HAS[@MODULE[ModuleCommand]]
{
    // ...go to the command module...
    @MODULE[ModuleCommand]
    {
        // ...and make it not require any crew.
        @minimumCrew = 0
    }
}

That oughta do it.  The changes will take effect the next time you start KSP.  If you get tired of it and want to change it back, just delete the .cfg file you made (or, at least, move it outside GameData).

Link to comment
Share on other sites

On 8/20/2016 at 4:43 AM, Snark said:

The easy solution is to just include a probe core, as has been mentioned.

Or, if you meet all the following criteria:

  1. you have ModuleManager installed
  2. you're willing & able to use Notepad

...you can mod it yourself to make every crewed part act like a probe core!  :) 

Just make a file whose name ends in ".cfg" (call it whatever you like) and put it somewhere in GameData (doesn't matter where).  Then copy the following and paste it into that text file:


// Find every part that can command...
@PART[*]:HAS[@MODULE[ModuleCommand]]
{
    // ...go to the command module...
    @MODULE[ModuleCommand]
    {
        // ...and make it not require any crew.
        @minimumCrew = 0
    }
}

That oughta do it.  The changes will take effect the next time you start KSP.  If you get tired of it and want to change it back, just delete the .cfg file you made (or, at least, move it outside GameData).

thanks!

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...