Skip to content

Releases: tivec/TechKonstraints

Public release

09 Jun 09:41
Compare
Choose a tag to compare

Please upgrade to 0.1.1 because of changes in the library.

This plugin adds part purchase requirements prior to purchasing parts in the R&D. Part purchase-ception!

For mod developers, add the following to your part configuration:

requiredParts = solidBooster,fuelTankSmallFlat

You could use ModuleManager to set the part requirements for other parts like this:

@PART[liquidEngine]
{
    // Make the LV-T30 require the RT-10 SRB and the FL-T100 before purchase can be completed.
    requiredParts = solidBooster,fuelTankSmallFlat
}

@PART[liquidEngine2]
{
    // Make the LV-T45 require the
    requiredParts = liquidEngine
}