Jump to content

samamstar

Members
  • Posts

    23
  • Joined

  • Last visited

Reputation

18 Good

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. @JedTech Not that one specifically, but engine plates definitely will do what you want. Unfortunately it's at a 700 kilo cost...
  2. Made a satellite constellation around Kerbin before figuring out that the commnet system is broken. But hey, it's there for when that feature gets added
  3. @JedTech Here's the simplest example: One spark engine and a small decoupler If you're trying to get the butt of an engine to match its surface check out this thread I made on the topic
  4. Planets in the tracking station show gravity in G's but claim it's m/s^2 (i.e. Kerbin is at 1 m/s^2)
  5. It's a small detail: But the fairings on the engine parts actually slope properly to match what they connect to! Sloping a small engine to meet a medium tank etc.
  6. It's an open secret at this point that KSP2 is having a rocky launch to say the least. One problem that many of you have likely noticed is the lack of inter-stage fairing support, at least not as strong as in KSP1. But fret not! I have found a way to accomplish this that is (mostly) free from jank and wobbling nodes The secret lies in 1 part: the engine mount. This humble beast, despite his total lack of configuration options or multi-engine connections (srsly, what!?), still lets us attach parts in a manner that resembles the inter-stage fairings of yore A simple example. Note the decoupler below A slightly more complex example with multiple parts inside the inter-stage | A slightly more interesting example. Note that the interstage *widens* to the medium fuel tank! Cool!
  7. I found a fix for the orbital map. If you download an earlier version of the mod (like from the non-reborn thread) you can copy over the java script files in the ..\Telemachus\Plugins\PluginData\Telemachus\houston\assets folder. I don't know why the current version's are broken, but the originals seem ok
  8. I can confirm I am having this issue as well. I'm not super aware of how modding works, but it seems like whatever program drew that map has broken. I have this text showing up in chromes dev console: Uncaught ReferenceError: ResizeSensor is not defined at klass.buildSceneCameraAndRenderer (3dmap.js:11225) at klass.initialize (3dmap.js:11169) at new klass (3dmap.js:278) at HTMLDocument.<anonymous> (index.html:317) at HTMLDocument.<anonymous> (3dmap.js:7404) at fireEvent_DOM (3dmap.js:7264) at fire (3dmap.js:7253) at HTMLDocument._methodized [as fire] (3dmap.js:654) at HTMLDocument.fireContentLoadedEvent (3dmap.js:7439) Seems like a problem with whatever program is drawing the 3D map Edit: Should I submit an issue in github? what is the best way to accomplish this?
  9. I just named my save "Jeb's space adventure" And swore to send Jeb on every kerbaled mission. Just using the builtin flag for Jeb's junkyard
  10. A patch to add fueled versions of each structural adapter. I (hopefully) balanced it pretty well. //this adds new fuel filled adapters for ksp. should be decently balanced //new 1.25 to 0.625 fueled adapter +PART[adapterSmallMiniTall]:FINAL { @name = adapterSmallMiniTallFueled @TechRequired = advFuelSystems @entryCost = 3000 @cost = 200 @category = FuelTank @title = FL-A10 Fuel Tank @description = We had some engineers installing a FL-A10 adapter when they came to the sudden realization that we were packing all that extra empty space for no reason! @mass = 0.70 RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 } } //2.5 meter adapter fuel tank +PART[largeAdapter]:FINAL { @name = largeAdapterFueled @TechRequired = advFuelSystems @entryCost = 7000 @cost = 3500 @category = FuelTank @title = Rockomax Brand Adapter Fueled @manufacturer = Rockomax Conglomerate @description = When C7 designed an adapter for rockomax rocketry parts we immediately took legal action against them, but it is aparently perfectly legal to design periferals for someone else's product. So we beat them at their own game. @mass = 0.5 RESOURCE { name = LiquidFuel amount = 360 maxAmount = 360 } RESOURCE { name = Oxidizer amount = 440 maxAmount = 440 } } //3.75 meter adapter fuel tank +PART[Size3to2Adapter]:FINAL { @name = Size3to2AdapterFueled @TechRequired = highPerformanceFuelSystems @entryCost = 10000 @cost = 2750 @category = FuelTank @title = Kerbodyne ADTP-2-3 Fuel Tank @manufacturer = Kerbodyne @description = After Jeb's junkyard filled the FL-A10 adapter with fuel, some eggheads at kerbodyne came up with a great idea! Fill our adapter with fuel! @mass = 1.75 RESOURCE { name = LiquidFuel amount = 1296 maxAmount = 1296 } RESOURCE { name = Oxidizer amount = 1584 maxAmount = 1584 } }
  11. Came up with another patch, this one adds new adapters filled with fuel: //this adds new fuel filled adapters for ksp. should be decently balanced //new 1.25 to 0.625 fueled adapter +PART[adapterSmallMiniTall]:FINAL { @name = adapterSmallMiniTallFueled @TechRequired = advFuelSystems @entryCost = 3000 @cost = 200 @category = FuelTank @title = FL-A10 Fuel Tank @description = We had some engineers installing a FL-A10 adapter when they came to the sudden realization that we were packing all that extra empty space for no reason! @mass = 0.70 RESOURCE { name = LiquidFuel amount = 45 maxAmount = 45 } RESOURCE { name = Oxidizer amount = 55 maxAmount = 55 } } //2.5 meter adapter fuel tank +PART[largeAdapter]:FINAL { @name = largeAdapterFueled @TechRequired = advFuelSystems @entryCost = 7000 @cost = 3500 @category = FuelTank @title = Rockomax Brand Adapter @manufacturer = Rockomax Conglomerate @description = When C7 designed an adapter for rockomax rocketry parts we immediately took legal action against them, but it is aparently perfectly legal to design periferals for someone else's product. So we beat them at their own game. @mass = 0.5 RESOURCE { name = LiquidFuel amount = 360 maxAmount = 360 } RESOURCE { name = Oxidizer amount = 440 maxAmount = 440 } } //3.75 meter adapter fuel tank +PART[Size3to2Adapter]:FINAL { @name = Size3to2AdapterFueled @TechRequired = highPerformanceFuelSystems @entryCost = 10000 @cost = 2750 @category = FuelTank @title = Kerbodyne ADTP-2-3 Fuel Tank @manufacturer = Kerbodyne @description = After Jeb's junkyard filled the FL-A10 adapter with fuel, some eggheads at kerbodyne came up with a great idea! Fill our adapter with fuel! @mass = 1.75 RESOURCE { name = LiquidFuel amount = 1296 maxAmount = 1296 } RESOURCE { name = Oxidizer amount = 1584 maxAmount = 1584 } } the highlighting makes it look like there is a giant string, but module manager doesn't recognize that in it's syntax
  12. So if module manager didn't break in 1.2.1, then why doesn't this work?
×
×
  • Create New...