Hey all,
I've written a Module Manager patch that adds ModuleScienceContainer (i.e the Science Box) to KOS Processor parts.
@PART[*]:HAS[@MODULE[kOSProcessor],!MODULE[KerbalEVA]]:final
{
%MODULE[ModuleScienceContainer]
{
//name = ModuleScienceContainer
reviewActionName = #autoLOC_502201 //#autoLOC_502201 = Review Stored Data
storeActionName = #autoLOC_502202 //#autoLOC_502202 = Store Experiments
evaOnlyStorage = False // i.e. can nearby regular vessels also do this, or EVA only
capacity = 500
storageRange = 1.3
canBeTransferredToInVessel = True
canTransferInVessel = True
showStatus = True
+description ^= :^.*$: Adds a Science Container.
}
}
however the line capacity = 500 means that it can hold 500 experiment results. i would like it to hold a percentage of the KOS diskspace (eg. if the KOS diskspace is 5000, the experiment space is 500Mits)
also how can i make it so this information shows up in the VAB/SPH right click part info panel