Jump to content

SpaceSkipper

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by SpaceSkipper

  1. First of all, thanks for the great mod. I adds a lot of fun stuff to do in KSP. Unfortunately I have some problems grabbing asteroids with FinePrint 0.59. Whenever I try to grab an asteroid I get a NullReferenceException (see below). I am trying to grab the asteroid using the mass extractor from Asteroid Recycling Technologies. [EXC 21:38:36.852] NullReferenceException: Object reference not set to an instance of an object FinePrint.Contracts.Parameters.AsteroidParameter.OnDock (FromToAction`2 action) EventData`1[GameEvents+FromToAction`2[Part,Part]].Fire (FromToAction`2 data) Part.Couple (.Part tgtPart) ModuleGrappleNode.Grapple (.Part other, .Part dockerSide) ModuleGrappleNode.<SetupFSM>m__F6 () KerbalFSM.RunEvent (.KFSMEvent evt) KerbalFSM.updateFSM (KFSMUpdateMode mode) KerbalFSM.FixedUpdateFSM () ModuleGrappleNode.FixedUpdate ()
  2. I had a similar problem once with a polar orbit. It turned out that I had the DN where the AN should be, i.e. the orbit of my satellite matched the target orbit exactly, but it was moving in the opposite direction as the small moving dots on the target orbit.
  3. Thanks for the quick fix. I tested it with the stock and NASA boosters, and everything looks good.
  4. I tried 1.35, but I still see negative recovery costs for SRBs (native recovery and recovery with debrefund mod). :-( From the numbers I get, it looks like the price for the fuel is subtracted twice. Anybody has any idea why this is happening?
  5. As I said before, the refund is -1200 even if the debris doesn't hit hard. Here is an example, where it landed safely. Yes this is the same issue. After reading your post, I removed the KD25K from the NASA tweakscale config and now DebRefund refunds me 299.9999.
  6. First, thank you for the mod. I really missed this functionality in stock KSP. Unfortunately, I see the same problem as AntiMatter001 with the S1 SRB-KD25k. The refund is -1200 (even if I they don't hit hard). Below are two screenshots, one for the debrefund message and the other from the VAB showing the prices for SRB and fuel. I hope this helps to track down the issue.
  7. Great mod. I have a lot of fun with it, building up my Mun base. To make it easier to move my Kerbals around in the base, I wrote a ModuleManager config file to add CLS support to the MKS part. I wanted to share it, as it might also be useful to other people. The only issue I had with it was that it wouldn't always work with pre-existing MKS docking ports. CLS adds a Hatch to the docking ports and for some docking ports in the save file I couldn't open the hatch after adding the config file. But for everything that is assembled after the config file is added, it seems to work fine. @PART[MKS_BioLab]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_ChemicalRefinery]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_ComputerFactory]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_ConstructionHub]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_ElectronicsFab]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_Greenhouse]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_Kerbitat]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_MachineShop]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_MetalRefinery]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_PDU]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_PlasticsFab]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_PolymerRefinery]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_Recycler]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_RobotFactory]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_01]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_02]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_03]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_04]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_05]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_06]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_07]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_08]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_StorageHut_09]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_Terraformer]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_WaterPlant]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_Workspace]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_AssemblyPlant]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_ColonyHub]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_DockingHub]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true } } @PART[MKS_TubeHub]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true } } @PART[MKS_DockingPort]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true passableWhenSurfaceAttached = true } } @PART[MKS_DockingTube]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_ExpandoTube]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_ExpandoTube_Mini]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_ExpandoTube_XL]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_FlexOTube]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } } @PART[MKS_RadialPort]:HAS[!MODULE[ModuleConnectedLivingSpace]] { MODULE { name = ModuleConnectedLivingSpace passable = true surfaceAttachmentsPassable = true } }
×
×
  • Create New...