Jump to content

odya-kun

Members
  • Posts

    8
  • Joined

  • Last visited

Reputation

0 Neutral

Profile Information

  • Location
    Ukraine

Recent Profile Visitors

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

  1. There is a problem with Communotron 8. It doesn't play well with stock antenna range mechanics but acts more like AntennaRange mod. In any case, it must spend mutch more electricity even at Mun distance.
  2. Very interesting. I'm working on my own editor based on module manager caches and node.js
  3. Is USI Survivability Pack really supported? I propose to create node between "survivability" and "Advanced Parachutes". 40 points. Also, @Probus, why are you not using GitHub repo?
  4. Here is the idea. If you have a group of GPS satellites on orbit and you are done with SCANSat mapping then you could do fast travel on your plane. This will give a reason to build GPS constellations and will make easier contracts sort of "take scientific data from 5 points on 9999km distance from each other". No more boring half-hour flights. Conditions: - SCANSat map, you can fast travel only in discovered area - at least 3 GPS satellites in line of sight (there is old GPS antenna part in SCANSat) - be on cruising altitude (10km, for example) You pick a point on a map, plugin calculates the route and fade out screen (maybe turn on more than 4x warp). Fuel spending is calculated too: if your fuel level became lower than 15% fast travel stops at a calculated point on the route and you can make an emergency landing.
  5. I found that my patch covers not all parts from UKS. Now I think about a script that will scan all parts and detect ones that are not included in the tree. Do you know any in-game tree editors working with 1.0.5 (like old TreeEdit)? Maybe it will be a better way to write such plugin and edit tree in the game.
  6. Guys, do you have any thoughts (configs?) about UKS integration? I made a very draft config (without Extraplanetary Launchpads yet). Mostly cloned from CTT one, but with some fixes. @PART[MKV_*]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = shortTermHabitation } @PART[MKS_Aeroponics]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = hydroponics } @PART[MKS_375_OCTO]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OctoLander]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[MK3_Refinery]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = colonization } @PART[MK3_FuelRefinery]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = colonization } @PART[MK3_Fabricator]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = orbitalAssembly } @PART[MKS_LogisticsHub]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = logistics } @PART[MKS_EL_LaunchPad]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = orbitalMegastructures } @PART[MKS_EL_OrbitalDock]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = orbitalMegastructures } @PART[OKS_Workspace]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OKS_Tube_Lg]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OKS_Tube]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[MKS_Storage_ILM]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = logistics } @PART[OKS_Storage_ILM]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = logistics } @PART[OKS_PDU]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = nuclearPower } @PART[MKS_PDU]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = nuclearPower } @PART[OKS_LgHub]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OKS_Hub]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OKS_Cap]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OKS_Kerbitat]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OKS_HabRing]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OKS_ColonyHub]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = simpleCommandModules } @PART[MKS_ColonyHub]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = simpleCommandModules } @PART[OKS_AgModule]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[OKS_Aeroponics]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = hydroponics } @PART[MKS_Kerbitat]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[MKS_Workspace]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[MKS_ModuleBase]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[MKS_MobileBase]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = longTermHabitation } @PART[MKS_RigidTube]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = shortTermHabitation } @PART[MKS_FlexOTube]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = shortTermHabitation } @PART[MKS_ExpandoTube_XL]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = shortTermHabitation } @PART[MKS_ExpandoTube4]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = shortTermHabitation } @PART[MKS_ExpandoTube_Mini]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = shortTermHabitation } @PART[MKS_Antenna]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = experimentalScience } @PART[MKS_DockingPort]:NEEDS[zETT&UmbraSpaceIndustries] { @TechRequired = shortTermHabitation }
  7. Hi. I made a quick adaptation for USI Life Support. Should i create a pull request on GutHub? Here is the code: //--- ETT patch for USI Life Support ---\\ //---Life Support MiniPak @PART[LifeSupportMiniPack]:NEEDS[zETT&UmbraSpaceIndustries]:FINAL { @TechRequired = spaceExploration } //---Life Support MiniPak (Fertilizer) @PART[FertilizerMiniPack]:NEEDS[zETT&UmbraSpaceIndustries]:FINAL { @TechRequired = advExploration } //---Life Support MiniPak (Mulch) @PART[MulchMiniPack]:NEEDS[zETT&UmbraSpaceIndustries]:FINAL { @TechRequired = shortTermHabitation } //---Life Support Tank (1.25) @PART[LS_Tank_125]:NEEDS[zETT&UmbraSpaceIndustries]:FINAL { @TechRequired = advExploration } //---Life Support Tank (2.5) @PART[LS_Tank_250]:NEEDS[zETT&UmbraSpaceIndustries]:FINAL { @TechRequired = shortTermHabitation } //---Life Support Tank (3.75) @PART[LS_Tank_375]:NEEDS[zETT&UmbraSpaceIndustries]:FINAL { @TechRequired = shortTermHabitation } //---Nom-O-Matic 5000 @PART[USILS_Greenhouse]:NEEDS[zETT&UmbraSpaceIndustries]:FINAL { @TechRequired = shortTermHabitation } //---Nom-O-Matic 25000 @PART[USILS_Greenhouse_LG]:NEEDS[zETT&UmbraSpaceIndustries]:FINAL { @TechRequired = longTermHabitation } Also i propose to move MRS Guidance Nose-Cone to "Probes 2" node. Because it has 100 elecricity & 3 torque. It is too much for "start" node. //-- Modular Rocket Systems (fixes to ETT) @PART[NBprobeCone1m]:NEEDS[zETT]:FINAL { @TechRequired = KETT_1779 }
×
×
  • Create New...