Jump to content

science rebalance


eberkain

Recommended Posts

Something like that is implemented in Kerbalism. Experiments that generate samples must be recovered or analysed in a Lab, they are useless without bringing them back. On the other side, if something is just a Temperature Reading, it can be transmitted for 100%.

Kerbalism builds on top of this idea and, while reimagining all the science system (in an incredibly interesting adventure imho), it provides even a time dimension, since experiments require time to complete. 

Link to comment
Share on other sites

You can do that with a MM patch, but there is no 100% guaranteed way to identify if an experiment is a sample or not.
In stock, "conceptually not transmittable" experiments are configured with "rerunnable = False" (meaning you need a scientist to "restore" it).
However, this assumption might not hold true in experiments from various mods.

This being said, here is a quick and dirty MM patch that should do the job :

@PART[*]:HAS[@MODULE[*ModuleScience*]:HAS[#rerunnable[True]]]:FINAL
{
	@MODULE[*ModuleScience*]
	{ 
		@xmitDataScalar = 1 
	}
}

@PART[*]:HAS[@MODULE[*ModuleScience*]:HAS[#rerunnable[False]]]:FINAL
{
	@MODULE[*ModuleScience*]
	{ 
		@xmitDataScalar = 0 
	}
}

@PART[*]:HAS[@MODULE[*ModuleScience*]:HAS[~rerunnable[]]]:FINAL
{
	@MODULE[*ModuleScience*]
	{ 
		@xmitDataScalar = 0 
	}
}

 

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