Gupyzer0 Posted April 5 Share Posted April 5 4 hours ago, Shadow Wolf TJC said: After taking a brief look, it seems like the tech tree doesn't have any new nodes, which is a bit disappointing, at least for me personally. Nonetheless, I have no real complaints (especially since I have yet to try out Kerbalism myself, since I'm still new to modding for KSP in general). I am curious as to if you have plans to publish your mod on CKAN. Indeed no new nodes in the tech tree. had some extra nodes in a previous version but decided to keep the SSS ones, just don't have enough time to make a full tech tree from scratch. Currently waiting for BDB upcoming 1.14 update featuring a revamp of the Atlas so I can finally add nodes for "balloon tanks". CKAN? not right now, I might make a dev post here sometime in the future. Right now I'm just testing/adding some stuff, it needs polishing and testing. For example, I made new patches for the Mercury, Gemini, Skylab & Apollo but only have tested Mercury and Gemini and a Skylab mission (including wetlab) with Apollo, haven't done a Mun mission with Apollo or used things like the Lunar Shelter or the S-IV wetlab for Venus (Eve) flyby. Also did some tests with the shuttle here and there . . . It needs lots of testing/balancing and I'm getting close to that point of posting in the dev section so I can get some help but I just feel this mod it's not competent enough yet. BTW I'm also working on a contract pack using RP-1's contracts as a base. -> https://github.com/Gupyzer0/Spacelines_Progression Quote Link to comment Share on other sites More sharing options...
Shadow Wolf TJC Posted April 5 Share Posted April 5 25 minutes ago, Gupyzer0 said: BTW I'm also working on a contract pack using RP-1's contracts as a base. -> https://github.com/Gupyzer0/Spacelines_Progression Looks interesting. That also reminds me of a project that I've worked on starting a month or two ago, and while it looks to be in a workable build, I haven't yet bothered to publish it on CKAN (partly due to inexperience with uploading mods, but also partly due to concerns about violating some kind of licensing agreements). The project in question? Trying to adapt the old Planes with Purposes mod for Real Solar System (and potentially other planet packs that replace the stock Kerbol system, and move the Kerbals' homeworld to another planet, such as the Galileo Planets Pack), though due to dissatisfaction with how the mod was structured, I ended up adding a bunch of text meant to help players in designing their aircraft/spacecraft to be, say, more controllable in flight under various conditions (such as at high altitude, or when travelling at high supersonic speeds), and making the contracts easier in some cases (such as allowing for more non-air-breathing engines for spaceplane design) and harder in others (such as requiring players to land back at KSC safely instead of anywhere on the homeworld). Quote Link to comment Share on other sites More sharing options...
Shadow Wolf TJC Posted April 16 Share Posted April 16 Small update: I've been taking a bit of a break in-between KSP playtesting sessions installing a bunch of mods, getting crashes to desktop, uninstalling said mods until the game could load again, and watching YouTube videos in the meantime, but I think I've figured out what was causing these kinds of errors to keep popping up within my .log files: [WRN 04:37:28.696] PartLoader Warning: Variable SSS_Tier not found in Part As it turns out, it stems from the Skyhawk Science System mod, and I suspect that it's due to a lack of a failsafe within ScienceTiers.cfg. To remedy this, I've opted to add such a failsafe of my own: @PART[*]:FIRST[zzzSkyhawkScienceSystem] { %SSS_Tier = 0 } Afterwards, I've opted to replace any instances of this below the failsafe: %SSS_Tier with this: @SSS_Tier so that SSS_Tier values could be overridden as needed. I hope to do more testing later on to see if these changes would work as intended. Quote Link to comment Share on other sites More sharing options...
Aelfhe1m Posted April 16 Share Posted April 16 6 hours ago, Shadow Wolf TJC said: Small update: I've been taking a bit of a break in-between KSP playtesting sessions installing a bunch of mods, getting crashes to desktop, uninstalling said mods until the game could load again, and watching YouTube videos in the meantime, but I think I've figured out what was causing these kinds of errors to keep popping up within my .log files: [WRN 04:37:28.696] PartLoader Warning: Variable SSS_Tier not found in Part As it turns out, it stems from the Skyhawk Science System mod, and I suspect that it's due to a lack of a failsafe within ScienceTiers.cfg. To remedy this, I've opted to add such a failsafe of my own: @PART[*]:FIRST[zzzSkyhawkScienceSystem] { %SSS_Tier = 0 } Afterwards, I've opted to replace any instances of this below the failsafe: %SSS_Tier with this: @SSS_Tier so that SSS_Tier values could be overridden as needed. I hope to do more testing later on to see if these changes would work as intended. What's missing is an after patching clean-up to remove the flag before part compilation (the warning in the logs is harmless) Add: @PART:HAS[#SSS_Tier[*]]:LAST[zzzSkyhawkScienceSystem] { !SSS_Tier = delete } Quote Link to comment Share on other sites More sharing options...
Shadow Wolf TJC Posted April 17 Share Posted April 17 @Aelfhe1m Oh? So there's no need to keep that variable around after KSP has been successfully loaded? Alrighty then. I'll also add in the cleanup code. Quote Link to comment Share on other sites More sharing options...
Shadow Wolf TJC Posted April 17 Share Posted April 17 Well, I finally took a look at the tech tree with Skyhawk Science System installed, along with multiple other mods, including the following: KSP Interstellar Extended Blueshift ESLD Jump Beacons Stockalike Station Parts Expansion Redux Far Future Technologies Flying Saucers Cryogenic Engines Cryo Tanks CryoEngines Extensions HabTech2 TAC Life Support Rusty Star Rockets Sandcastle Near Future Solar, Propulsion, and Electrical Nehemiah Engineering Orbital Science AtomicTech Inc. Junkyards Kerbal Atomics Pathfinder Kerbal Planetary Base Systems USI Kolonization Systems Airships Photon Sailor Silly Photon Drives Firespitter Keridian Dynamics SCANsat Procedural Parts Procedural Fairings Modular Rocket Systems Tweakscale Unlimited And many more... Most notably, Bluedog Design Bureau, the mod that was claimed to be a dependency of Skyhawk Science System, was not among any of the mods that were installed. Guess what happened? Although a handful of early tech tree nodes were empty (which could be automatically removed if using the Hide Empty Tech Tree Nodes mod), the Skyhawk tech tree seemed perfectly fine without Bluedog Design Bureau installed, as I had expected. Thanks to StockScienceSupport.cfg, Skyhawk Science System was already doing a good job at reassigning the stock KSP's parts' tech requirements, along with numerous other parts that likewise depended upon the stock tech tree, including the procedural parts mods, plus the Cryogenic Engines and Cryo Tanks mods, which Skyhawk Science System included specific mod support for. Nonetheless, there were some issues encountered regarding the tech tree, particularly when it comes to dealing with mods that are either dependent on the Community Tech Tree mod (such as KSP Interstellar Expanded) and/or make their own changes to the stock tech tree (such as Flying Saucers). For starters, I'm disappointed that Skyhawk Science System never bothered to include support for the Community Tech Tree mod, not even something basic like it had for the stock tech tree. That kind of basic support would've likely saved the developers a bunch of work needing to add support to certain mods, like KSP Interstellar Expanded (not to mention that it would've likely made a bunch of specific mod patches that Skyhawk Science System redundant). I'm currently working on a few fixes regarding compatability with the Community Tech Tree mod, and by extension, any mods that would require it as a dependency (especially KSP Interstellar Extended). Hopefully, they'll be ready for upload. Quote Link to comment Share on other sites More sharing options...
Shadow Wolf TJC Posted April 21 Share Posted April 21 While looking at StockScienceSupport.cfg to get a feel for how I'm going to tackle the Community Tech Tree's integration, I realized that the whole thing was, besides being organized based on tier and a top-to-bottom order on the stock tech tree, a largely disorganized mess. (I would've rather preferred to order everything based on category, such as construction, communications, or probes for example.) In addition to integrating the Community Tech Tree with Skyhawk Science System in a way that made as much sense as possible, I also ended up basically restructuring the Stock Tech Tree integration in a way so as to accomplish the following goals: So that the early half of the tech tree, up to around tier 8 or 9, would be almost guaranteed to contain at least 1 part from stock KSP + expansions, mostly by spacing out the techs better, while the latter half would've been better serviced by integrating the Community Tech Tree within it. So that the tech tree would be better capable of handling whichever new parts modders add, that would require either the Stock Tech Tree, or the more expanded Community Tech Tree, namely by rearranging it based on best guesses as to which tech nodes modders would most likely want to add their parts in order for them to be balanced in both Science and Career modes. So that the tech tree could be further refined in a later round of patching to better sort categories of parts into their designated tech tree branches (such as moving solar panels, radiators, communicators/relays, and probes from, say, the electrical tech tree branch, into their respective tech tree branches). So that Skyhawk Science System wouldn't need to be as dependent on Bluedog Design Bureau as it is claimed to be (according to CKAN), and could instead opt to mark BDB as a strong recommendation instead of as a dependency. Although this revised tech tree is just a rough draft for now (with oodles of comments thrown in), and although it's been designed to expect a later round of patching to better sort parts into their proper tech tree branches (which I'll need to figure out a way to accomplish said feat), I've decided to give everyone a sneak peek of it by letting them download it from here. Quote Link to comment Share on other sites More sharing options...
adriangm44 Posted April 30 Share Posted April 30 I’m having an ick about something and I can’t figure out the rules or the cfg where I may be able to solve it. Let’s say a random capsule crewed pod: The Apollo Crew Pod, normal 3 seated capacity. Playing with Skyhawk Kerbalism btw. It has automatically all the life support resources needed for kerbals to live inside: Food, Water, Oxygen. I don’t know if it contains anything else by default. There has to be a rule that makes it have all those resources, but I can’t find it. The reason why I want to find the rule, is so that I can also add the Crew Dragon pod from Tundra Exploration (called Rodan or so). This capsule doesn’t seem to be affected by the rule, as you have to select the resource pack with a b9tankswitch preconfigured option. If you go and try to pick the “best one” you will find yourself with a “Life support” one, it has Food, Waste, Water & Waste Water. But no Oxygen, why that call? It makes me mad cause Kerbals can’t survive without oxygen hahahaha. The only way is to add separate tanks, I’m sick of that. I want to add this part to the rules that apply other command crewed modules such as the Apollo Pod. Any help please? Quote Link to comment Share on other sites More sharing options...
Shadow Wolf TJC Posted May 1 Share Posted May 1 It's been a while since I last posted an update, but I think I'm currently going to be on hiatus for an indefinite period of time, until interest in KSP comes back to me again. However, I did already perform another test with the tech tree, and I have some results: 1: Even after updating Skyhawk's stock tech tree patch to account for items found within the Community Tech Tree in addition to the stock tech tree, I was still noticing that some items remained within Community Tech Tree nodes (which I'd assumed were supposed to be cleared out fully, and then deleted). Perhaps some other mods were still trying to add techs to stock and/or Community Tech Tree nodes late in patching? Possible solution: Perhaps it's not enough to change tech tree nodes before Module Manager loads the other files? Perhaps an additional round of tech-tree patching, this time around the end of patching, would also be needed? 2: I've also noticed that some mods, such as the Flying Saucers mod, were also adding their own tech nodes. Possible solution: These kinds of mods that add in their own tech nodes may need their own mod-specific patches which either move all those techs to one or more of Skyhawk's own tech tree nodes, or alternatively, said tech nodes may instead be kept around, with Skyhawk only changing some of their prerequisites. 3: I've noticed that some mods had scripting that would create duplicates of existing parts that had certain tweaks, such as engines that were burning a different type of fuel, or intakes that, instead of sucking in regular old oxygen (from planets such as Kerbin or Laythe), could only suck in air from certain planets (like Eve or Jool), and were not being moved to more proper tech nodes by Skyhawk, which seemed to rely extensively upon moving individual parts to their proper tech nodes. Possible solution: I was already thinking about adding in some further patching that, instead of manually moving individual parts to their proper tech nodes within the Skyhawk tech tree, would've auto-detected parts with specific functions (such as being an engine, a probe, a battery, a fuel tank, etc.), and like with the stock tech tree auto-adjustment patching, would've automatically sorted them to specific tech nodes. However, I also have reason to believe that such a feature would've also possibly worked on these auto-added parts? I don't know when I'll come back to KSP, so I hope that others would be able to try out these kinds of changes on my behalf. Quote Link to comment Share on other sites More sharing options...
bigyihsuan Posted May 28 Share Posted May 28 11 hours ago, theJesuit said: I'd ask on the Skyhawk Kerbalism page. I think it may have something to do with that as it hasn't been updated for nearly a couple of years. Hey @CessnaSkyhawk and any others working on the Kerbalism patches: I'm using Kopernicus release-1.12.1-202, Beyond Home 1.5.3 (the ballisticfox fork), Kerbalism 3.19 with Skyhawk Kerbalism v1.0.2, and a mix of BDB, Near Future, and stock/Restock panels; and I'm getting this problem where, even though the solar panels are tracking the sun(s) and staying in sunlight and having "perpetual" power generation, they inevitably run out of power when I leave to the Space Center or the Tracking Station. Is there a fix for this? Quote Link to comment Share on other sites More sharing options...
dave1904 Posted June 1 Share Posted June 1 (edited) On 5/28/2024 at 3:06 PM, bigyihsuan said: Hey @CessnaSkyhawk and any others working on the Kerbalism patches: I'm using Kopernicus release-1.12.1-202, Beyond Home 1.5.3 (the ballisticfox fork), Kerbalism 3.19 with Skyhawk Kerbalism v1.0.2, and a mix of BDB, Near Future, and stock/Restock panels; and I'm getting this problem where, even though the solar panels are tracking the sun(s) and staying in sunlight and having "perpetual" power generation, they inevitably run out of power when I leave to the Space Center or the Tracking Station. Is there a fix for this? My guess is that its weather driven solar panels. Incompatible with kerbalism · Issue #1 · Aebestach/WeatherDrivenSolarPanel · GitHub Edited June 1 by dave1904 Quote Link to comment Share on other sites More sharing options...
bigyihsuan Posted June 2 Share Posted June 2 20 hours ago, dave1904 said: My guess is that its weather driven solar panels. Incompatible with kerbalism · Issue #1 · Aebestach/WeatherDrivenSolarPanel · GitHub I don't have WeatherDrivenSolarPanels installed, nor Blackrack's volumetric clouds. For now, I've completely removed Kerbalism and associated mods because the mental overhead as a little too much lol. Quote Link to comment Share on other sites More sharing options...
Nikodga Posted June 3 Share Posted June 3 I've encountered a bug where the inline mystery goo and the mystery good pod dont have enough resources to run the goo experiment, however, the micro goo radiometer from BDB has goo to run the experiment. is there any way we can fix the inline and pod mystery good units?. Forgot to add, this is with kerbalism. it says depleted in the science menu Quote Link to comment Share on other sites More sharing options...
dave1904 Posted June 18 Share Posted June 18 On 6/3/2024 at 8:51 PM, Nikodga said: I've encountered a bug where the inline mystery goo and the mystery good pod dont have enough resources to run the goo experiment, however, the micro goo radiometer from BDB has goo to run the experiment. is there any way we can fix the inline and pod mystery good units?. Forgot to add, this is with kerbalism. it says depleted in the science menu You will need to edit the exploration science defs in the skyhawk kerbalism cfgs. I'm exhausted today but if you need help I can look at it. I've fixed 99% of the science issues here but have forgotten what I've done etc. I love skyhawk kerbalism but I can understand why its not maintained. It burns you out with all the compatability patches. Quote Link to comment Share on other sites More sharing options...
Nikodga Posted July 12 Share Posted July 12 On 6/18/2024 at 11:31 AM, dave1904 said: You will need to edit the exploration science defs in the skyhawk kerbalism cfgs. I'm exhausted today but if you need help I can look at it. I've fixed 99% of the science issues here but have forgotten what I've done etc. I love skyhawk kerbalism but I can understand why its not maintained. It burns you out with all the compatability patches. Hey, took a long break, sorry for the late reply I've oppened the ExplorationExperiments.cfg under SkyhawkKerbalism\System\ScienceRework\ScienceDefs but i cant make sense of it. Have you uploaded the patches you've made somewhere? have you been able to fix this bug? Quote Link to comment Share on other sites More sharing options...
dave1904 Posted July 12 Share Posted July 12 14 hours ago, Nikodga said: Hey, took a long break, sorry for the late reply I've oppened the ExplorationExperiments.cfg under SkyhawkKerbalism\System\ScienceRework\ScienceDefs but i cant make sense of it. Have you uploaded the patches you've made somewhere? have you been able to fix this bug? no, ive not uploaded my cofigs anywhere because they are end user patched and would probably cause conflicts with other installs. Ive also changed alot of things to it but if you want to you can have them. That being said I only changed 1 line in the exploration config. Forgot why. You can link me your modlist and I can try it out. Quote Link to comment Share on other sites More sharing options...
Cheesecake Posted July 13 Share Posted July 13 (edited) I have searched for a long time but where in the configs is RCS switched to Hydrazine? Edit: Think I found it. Edited July 13 by Cheesecake Quote Link to comment Share on other sites More sharing options...
LoadingTimeExpert Posted August 21 Share Posted August 21 I'm having an issue with Skyhawk and BDB where Skyhawk seems to break BDB parts. The Titan hypergolic engines (LR-87 and LR-91) for example are listed as running on kerelox but don't actually accept kerelox, but the hypergolic fuels(aerozine 50 and NTO) are also not accepted. When trying to use the engine in flight, it says the engine lacks aerozine 50 when the tank is in fact full of it. Without skyhawk, BDB works flawlessly Quote Link to comment Share on other sites More sharing options...
Cheesecake Posted August 22 Share Posted August 22 19 hours ago, LoadingTimeExpert said: I'm having an issue with Skyhawk and BDB where Skyhawk seems to break BDB parts. The Titan hypergolic engines (LR-87 and LR-91) for example are listed as running on kerelox but don't actually accept kerelox, but the hypergolic fuels(aerozine 50 and NTO) are also not accepted. When trying to use the engine in flight, it says the engine lacks aerozine 50 when the tank is in fact full of it. Without skyhawk, BDB works flawlessly This is because this mod is now old or is no longer being adapted. BDB now has new/revised parts and its own hypergolic patch. I recommend not using Sykhawk here. I had similar problems here. Quote Link to comment Share on other sites More sharing options...
UnanimousCoward Posted August 22 Share Posted August 22 @LoadingTimeExpert @Cheesecake This fork is more recently updated: https://github.com/KSPModStewards/SkyhawkScienceSystem Don't know if it will resolve your issue though. There's also the MM patch in this post by @610yesnolovely, which fixed some B9PartSwitch errors for me, though I don't know if they're the same problems you're encountering. Quote Link to comment Share on other sites More sharing options...
LoadingTimeExpert Posted August 22 Share Posted August 22 10 hours ago, Cheesecake said: This is because this mod is now old or is no longer being adapted. BDB now has new/revised parts and its own hypergolic patch. I recommend not using Sykhawk here. I had similar problems here. 1 hour ago, UnanimousCoward said: @LoadingTimeExpert @Cheesecake This fork is more recently updated: https://github.com/KSPModStewards/SkyhawkScienceSystem Don't know if it will resolve your issue though. There's also the MM patch in this post by @610yesnolovely, which fixed some B9PartSwitch errors for me, though I don't know if they're the same problems you're encountering. Thank you, I'll try it out Quote Link to comment Share on other sites More sharing options...
adriangm44 Posted August 31 Share Posted August 31 On 4/5/2024 at 6:36 PM, Gupyzer0 said: Sure. The Kerbalism config is here -> https://github.com/Gupyzer0/Spacelines-Kerbalism And the required tech tree here -> https://github.com/Gupyzer0/Spacelines_Tree Still in the work any bug/error you see (other than the SAS1 stuff that pops up in the loading screen) please tell me! Is this intended to be merged with Skyhawk Science System and Skyhawk Kerbalism? I've got some spare time this week, as I got the virus. Is there anything I can help with? Quote Link to comment Share on other sites More sharing options...
Noname117 Posted September 1 Share Posted September 1 So I set up a campaign a large portion of the way through the tech tree, and despite having heavy-lift hydrolox parts it seems that I can't switch tank fuels to hydrogen. Or anything for that matter. All the tanks with swappable fuels are stuck on Kerosene/Lox. Any idea as to why, or what tech tree node would need to be researched in order to fix this? Quote Link to comment Share on other sites More sharing options...
bigyihsuan Posted September 1 Share Posted September 1 3 hours ago, Noname117 said: So I set up a campaign a large portion of the way through the tech tree, and despite having heavy-lift hydrolox parts it seems that I can't switch tank fuels to hydrogen. Or anything for that matter. All the tanks with swappable fuels are stuck on Kerosene/Lox. Any idea as to why, or what tech tree node would need to be researched in order to fix this? There's a tech node fairly early on that unlocks the hydrolox switch. What mod are the tanks from? Some mods aren't affected by the hydrolox switch config. Quote Link to comment Share on other sites More sharing options...
Noname117 Posted September 1 Share Posted September 1 1 hour ago, bigyihsuan said: There's a tech node fairly early on that unlocks the hydrolox switch. What mod are the tanks from? Some mods aren't affected by the hydrolox switch config. Thanks that actually was what I was missing Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.