BioSehnsucht
Members-
Posts
108 -
Joined
-
Last visited
Reputation
0 NeutralProfile Information
-
About me
Spacecraft Engineer
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
[1.2.2] Stock Part Revamp, Update 1.9.6. Released Source Files!
BioSehnsucht replied to Ven's topic in KSP1 Mod Development
This wasn't very clear to me - I misunderstood that if I was installing VSR for the first time ever, I didn't have to retract panels first. I installed with CKAN, loaded up, and my panels 1x6 were twisted sideways, and I could no longer retract the panels. I tried renaming the fix to cfg but that didn't work to let me retract them either, so I moved the cfg to the GameData (out of VSR dir), still didn't work. Removed VSR, tried again.. not only doesn't work, my craft are all messed up with weird spacing between parts. Solar panels are oriented right though, but I still can't open/close them. Is there something I could regex replace in the persistent.sfs to fix this? I don't really want to have to close all my RT satellite network panels and re-open them manually, anyways... -
I'm waiting for this to be available in CKAN - CKAN is too damn handy to install anything without it
- 888 replies
-
- texturereplacerreplaced
- visual
-
(and 2 more)
Tagged with:
-
TL;DR: I apparently didn't wait until leaving the atmosphere before giving up on it. The message about needing crew is irrelevant to my problem, just means the pod is useless for control. I've built this goofy contraption (haven't unlocked anything that seats more than one Kerbal yet) I have Jeb in the top most pod, and all the others have tourists. I can fly the thing, put it on a suborbital trajectory clear of the atmosphere, but still won't complete the contract. I assume that error is the reason. Can we not simply have the craft piloted by someone in a separate pod (or a probe, which was my first attempt) ? Do we have to wait until we can get multi-kerbal pods / cabins before we can perform these contracts?
-
[1.12.3+] RealChute Parachute Systems v1.4.9.5 | 20/10/24
BioSehnsucht replied to stupid_chris's topic in KSP1 Mod Releases
"Win64bit detecting changed to prevent it to be disabled" in latest version, does this mean it's enabled (at your own risk) in 64bit? -
[1.10.0] Final Frontier - kerbal individual merits 1.10.0-3485
BioSehnsucht replied to Nereid's topic in KSP1 Mod Releases
Any news on .25 compatibility? Works, doesn't work, ... ? -
[24.2] Karbonite Ongoing Dev and Discussion
BioSehnsucht replied to RoverDude's topic in KSP1 Mod Development
If you can store it as a sparse file, all the unscanned areas at least won't take up any (or much, due to block sizes etc) space, at least on reasonable filesystems. Though, I'm not sure you can do that from within Mono / .net / unity ? -
I've had that same crazy CoM thing without KAS. I want to say I saw it once or twice before I started adding mods back in, but I could be wrong. Also, I'm running 64bit windows build, so... who knows! Currently I have: Toolbar Connected Living Space Crew Xfer Deb Refund Editor Extensions Enhanced Nav Ball FAR KJR Klockheed Martian stuff Mod Statistics (cause mods...) Hot Rockets Cool Rockets Docking Port Alignment Final Frontier Procedural Fairings Real Chute Remote Tech 2 Smoke Screen Toadicus Tools Trigger Tech Tweakable Everything Tweak Scale Universal Storage (core) I don't currently have KAS installed...
-
Look at ResearchandDevelopement, ScienceSubject, ScienceData, etc... (i.e. things with research or science in the name). If you're using Visual Studio you can start typing and let the auto complete suggest things and look through the list. When you find something interesting, F12 on it to jump to it's definition in the assembly. If you're feeling more adventurous, google ILSpy and use that on the assembly... but while it gives you basically full source disassembly, a lot of the variable names are borked ... I think we can define new ScienceSubject objects via cfg (see http://forum.kerbalspaceprogram.com/threads/56137-Probe-Science-config-files , probe_science_definitions.cfg ), which we can then generate ScienceData objects referencing the ScienceSubject objects, just shove their config node onto the vessel somewhere (I don't think it matters where, I hacked up a few ScienceData nodes into my persistence file in several places in the vessel hierarchy and got debug log errors about the science subjects not existing when it tried to show the dialog - I haven't yet tried to create them via cfg and haven't figured out how to add them during runtime myself programmatically)...
-
After looking at KSP's code with ILSpy (which can get some variable names, others it fails and instead of giving a nice human readable name outputs numbers but not as text.. i.e. the text view interprets them with symbols like [sOH] and [bS] and so forth), I may have a clue what I have to do. It looks like if instead of doing SubmitScienceData myself, I get my science into ScienceData and slap it as a certain kind of config node on a vessel that is being recovered (creating a fake one from scratch to handle the case where it has been destroyed but I want to show some failure analysis gain from it, perhaps), the recovery screen will work right... probably. Just have to figure out HOW to do it
-
I've gotten part way there I think, science is increased but it doesn't show on the recovery screen as an individual entry (just in the total science at the bottom). ScienceSubject subj = new ScienceSubject("recovery@KerbinFlew", "Failure Analysis of flight components", 1.0f, (float)newScience, 10); ResearchAndDevelopment.Instance.SubmitScienceData((float)newScience,subj);
-
[1.12.3+] RealChute Parachute Systems v1.4.9.5 | 20/10/24
BioSehnsucht replied to stupid_chris's topic in KSP1 Mod Releases
Glad to hear what I'm experiencing isn't intended!