-
Posts
3,435 -
Joined
-
Last visited
Everything posted by Gordon Dry
-
@Shizen For scaling stuff to fit to planet packs I use a template like this: scalefactor = 1 @scalefactor:NEEDS[SigDim] = #$@SigmaDimensions/Rescale$ @scalefactor:NEEDS[!SigDim,RealSolarSystem] = 10.10625 @scalefactor:NEEDS[!SigDim,JNSQ] = 2.7 @scalefactor:NEEDS[!SigDim,GPP_Rescale_10x] = 10 @scalefactor:NEEDS[!SigDim,JNSQ_Rescale_10x] = 10 scalesqrt = #$scalefactor$ @scalesqrt != 0.5 and then from within a patch node I refer to #$/scalesqrt$ to for example multiply with it. In some cases I even use #$/scalefactor$ if I need the bigger number. In a later patch I remove those temporary variables to unclutter the MM cache.
- 606 replies
-
- 1
-
-
- power manager
- plug-in
-
(and 1 more)
Tagged with:
-
[1.12.x] Malah's Quick Mods - ZEROMINIAVC in new thread
Gordon Dry replied to linuxgurugamer's topic in KSP1 Mod Releases
GameData\QuickMods\QuickSearch\QuickSearch.version { "NAME": "QuickSearch", "URL": "http://ksp.spacetux.net/avc/QuickSearch", "CHANGE_LOG_URL": "https://raw.githubusercontent.com/linuxgurugamer/QuickMods/master/QuickSearch/README.md", "DOWNLOAD": "http://spacedock.info/mod/101/QuickSearch", "GITHUB": { "USERNAME": "linuxgurugamer", "REPOSITORY": "QuickMods" }, "VERSION": { "MAJOR": 3, "MINOR": 3, "PATCH": 0, "BUILD": 9 }, "KSP_VERSION_MIN": { "MAJOR": 1, "MINOR": 8, "PATCH": 0 } } http://ksp.spacetux.net/avc/QuickSearch: { "NAME": "QuickSearch", "URL": "http://ksp.spacetux.net/avc/QuickSearch", "CHANGE_LOG_URL": "https://raw.githubusercontent.com/linuxgurugamer/QuickMods/master/QuickSearch/README.md", "DOWNLOAD": "http://spacedock.info/mod/101/QuickSearch", "GITHUB": { "USERNAME": "linuxgurugamer", "REPOSITORY": "QuickMods" }, "VERSION": { "MAJOR": 3, "MINOR": 3, "PATCH": 0, "BUILD": 11 }, "KSP_VERSION": { "MAJOR": 1, "MINOR": 12, "PATCH": 2 }, "KSP_VERSION_MIN": { "MAJOR": 1, "MINOR": 12, "PATCH": 0 } } 3.3.0.9 vs. 3.3.1.1 vs. 3.3.1 (as previous post says). Confuzizous! -
This is a personal zFinal patch that limits the minThrust to 25% and could be edited accordingly. It only looks for entries without minThrust or with a minThrust = 0, so any already existing custom value is not affected: @Kwebib DO NOT USE THAT PATCH This patch is not working in this way as it needs code (which would be Realism Overhaul). Just with this patch an engine never can throttle down. Sorry for the confusion.
- 470 replies
-
- 1
-
-
- totm jan 2022
- bluedog
-
(and 3 more)
Tagged with:
-
Universal Storage II [1.3.1 and 1.4.5 - 1.7.0]
Gordon Dry replied to Paul Kingtiger's topic in KSP1 Mod Releases
Those patch manager patches do FINAL and just overwrite any previous mod specific settings.- 1,561 replies
-
- 2
-
-
- kis
- universal storage
-
(and 3 more)
Tagged with:
-
I got a similar reaction wheel nerf in my personal zFinal folder: @PART[*]:HAS[@MODULE[ModuleReactionWheel]]:NEEDS[!RWSaturatable,!MandatoryRCS,!SETIrebalanceReactionWheels,!UnmannedTech]:FINAL { @MODULE[ModuleReactionWheel] { @PitchTorque *= 0.05 @YawTorque *= 0.05 @RollTorque *= 0.05 @RESOURCE[ElectricCharge] { @rate *= 0.5 } } } @PART[*]:HAS[@MODULE[ModuleReactionWheel],@MODULE[ModuleCommand]]:NEEDS[!RWSaturatable,!MandatoryRCS,!SETIrebalanceReactionWheels,!UnmannedTech]:FINAL { @MODULE[ModuleReactionWheel] { @PitchTorque *= 0.2 @YawTorque *= 0.2 @RollTorque *= 0.2 @RESOURCE[ElectricCharge] { @rate *= 0.5 } } } @PART[*]:HAS[@MODULE[ModuleReactionWheel]:HAS[@UPGRADES]]:NEEDS[!RWSaturatable,!MandatoryRCS,!SETIrebalanceReactionWheels,!UnmannedTech]:FINAL { @MODULE[ModuleReactionWheel] { @UPGRADES { @UPGRADE,*:HAS[#PitchTorque] { @PitchTorque *= 0.05 } @UPGRADE,*:HAS[#YawTorque] { @YawTorque *= 0.05 } @UPGRADE,*:HAS[#RollTorque] { @RollTorque *= 0.05 } } } } @PART[*]:HAS[@MODULE[ModuleReactionWheel]:HAS[@UPGRADES],@MODULE[ModuleCommand]]:NEEDS[!RWSaturatable,!MandatoryRCS,!SETIrebalanceReactionWheels,!UnmannedTech]:FINAL { @MODULE[ModuleReactionWheel] { @UPGRADES { @UPGRADE,*:HAS[#PitchTorque] { @PitchTorque *= 0.2 } @UPGRADE,*:HAS[#YawTorque] { @YawTorque *= 0.2 } @UPGRADE,*:HAS[#RollTorque] { @RollTorque *= 0.2 } } } } @PART[*]:HAS[@MODULE[ModuleReactionWheel],#mass[>1]]:NEEDS[!RWSaturatable,!MandatoryRCS,!SETIrebalanceReactionWheels,!UnmannedTech]:FINAL { @MODULE[ModuleReactionWheel] { @PitchTorque *= #$/mass$ @YawTorque *= #$/mass$ @RollTorque *= #$/mass$ @RESOURCE[ElectricCharge] { @rate *= #$/mass$ } } } @PART[*]:HAS[@MODULE[ModuleReactionWheel]:HAS[@UPGRADES],#mass[>1]]:NEEDS[!RWSaturatable,!MandatoryRCS,!SETIrebalanceReactionWheels,!UnmannedTech]:FINAL { @MODULE[ModuleReactionWheel] { @UPGRADES { @UPGRADE,*:HAS[#PitchTorque] { @PitchTorque *= #$/mass$ } @UPGRADE,*:HAS[#YawTorque] { @YawTorque *= #$/mass$ } @UPGRADE,*:HAS[#RollTorque] { @RollTorque *= #$/mass$ } } } } You even could make it subject of a tier upgrade in one or two more tiers for a slightly less EC/s in the first and a slightly more torque in the 2nd upgrade.
- 120 replies
-
- probes first
- skyhawk
-
(and 3 more)
Tagged with:
-
I remember there was something about MM not applying patches inside the GameData\KerbalismConfig\Settings.cfg so it has to be calculated manually and entered into the Settings.cfg. Just after the line DataRateDampingExponentRT = 6 // same as above, but for RemoteTech like this unfortunately does not work: scalefactor = 1 @scalefactor:NEEDS[SigDim] = #$@SigmaDimensions/Rescale$ @scalefactor:NEEDS[!SigDim,RealSolarSystem] = 10.10625 @scalefactor:NEEDS[!SigDim,JNSQ] = 2.7 @scalefactor:NEEDS[!SigDim,GPP_Rescale_10x] = 10 @scalefactor:NEEDS[!SigDim,JNSQ_Rescale_10x] = 10 scalesqrt = #$scalefactor$ @scalesqrt != 0.5 @DataRateDampingExponent /= scalesqrt @DataRateDampingExponentRT /= scalesqrt -scalesqrt = delete -scalefactor = delete RSS would be 1.887 JNSQ/GPP 10x would be 1.897 JNSQ default would be 3.652 But this is a rule of thumb, just take the sqrt of the scale, divide 6 by that factor.
-
Universal Storage II [1.3.1 and 1.4.5 - 1.7.0]
Gordon Dry replied to Paul Kingtiger's topic in KSP1 Mod Releases
A tankMass of 0 is allowed? And I suggest a different boiloff config for LqdMethane compared to LqdHydrogen, there are configs circulating with proper values.- 1,561 replies
-
- kis
- universal storage
-
(and 3 more)
Tagged with:
-
Or both, paired with MM cache and what not. Use 7z and go for it.
- 986 replies
-
- 1
-
-
- atmosphere
- trajectories
-
(and 2 more)
Tagged with:
-
Both is correct. On Windows there is C:\Users\<username>\AppData\LocalLow\Squad\Kerbal Space Program\Player.log and also KSP folder\KSP.log
- 986 replies
-
- 1
-
-
- atmosphere
- trajectories
-
(and 2 more)
Tagged with:
-
@mmamh2008 doing a little research you would find something, but your first find would lead to the need of more research, so I condensed it: https://www.dropbox.com/s/al9dnsf59xkuybg/MechJebForAll (with variants).zip?dl=1 There are 3 variants in - as you need to learn more about how KSP and mods / MM-patches work, see for yourself, I do NOT explain.
-
[1.3.0] Kerbal Engineer Redux 1.1.3.0 (2017-05-28)
Gordon Dry replied to cybutek's topic in KSP1 Mod Releases
Within the last 6 weeks: 4 issues by me https://github.com/jrbudda/KerbalEngineer/issues there are some newer (cosmetical) commits at https://github.com/lampeh/KerbalEngineer/tree/UImod but neither a PR nor a compiled version of it. -
[1.9.1-1.10.1] Kiwi Tech Tree Overhaul 1.3.0 (17 December 2020)
Gordon Dry replied to hemeac's topic in KSP1 Mod Releases
I dared to quickly adapt the patches for "RN_US_Rockets (only Aerobee)" that I already did for SkyhawkScienceSystem to KTT: https://github.com/hemeac/kiwiTechTree/pull/110/files I hope that it's good enough this way. -
Darn, the icon is gone mid-flight, there is one NRE in the log: [EXC 16:18:03.555] NullReferenceException: Object reference not set to an instance of an object AntennaHelper.AHShipList.ComputeRealSignal (Vessel v) (at <410b4d9350104f37b1e9f94804bc30cc>:0) AntennaHelper.AHShipListListenerTR+<ParseVesselsConnection>c__Iterator1.MoveNext () (at <410b4d9350104f37b1e9f94804bc30cc>:0) UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at <12e76cd50cc64cf19e759e981cb725af>:0) UnityEngine.DebugLogHandler:LogException(Exception, Object) ModuleManager.UnityLogHandle.InterceptLogHandler:LogException(Exception, Object) UnityEngine.Debug:CallOverridenDebugHandler(Exception, Object) Log: https://www.dropbox.com/s/nchx3zxybl5pojt/KSP logs 2021-12-20-01.7z?dl=1
-
How to properly use interstage nodes?
Gordon Dry replied to Arch3rAc3's topic in KSP1 Gameplay Questions and Tutorials
Necroing. I still don't get it why those interstage nodes cannot decouple themselves? An Apollo-like setup is nearly impossible, as trying to rotate and dock is impossible with either the truss structure in the way or a floating separator inbetween the docking ports. And having a face-down decoupler sticking at the engine of the CSM is a no-go. Why are there all these bad design decisions? To make the players brainz melt? -
[1.12.x] PEBKAC Industries: Launch Escape System
Gordon Dry replied to linuxgurugamer's topic in KSP1 Mod Releases
GameData\Pebkac\Parts\LaunchEscape\pebkac_mk1_LES.cfg got just MODULE { name = ModulePebkacLesController2 } and both GameData\Pebkac\Parts\LaunchEscape\pebkac_mk2_LES.cfg GameData\Pebkac\Parts\LaunchEscape\pebkac_mk2_LES_noBPC.cfg got MODULE { name = ModulePebkacLesController2 hasPitchControl = True stagingEnabled = True } I wonder it at least stagingEnabled = True should be in the first as well? -
I just also recognized this, and also it happens that when the (fuel switchable) RCS part is enabled (stageable RCS), then picked up in VAB and attached again at another position, it's disabled. Edit: yep, the source of the patching is GameData\RationalResourcesRCSFamily\
-
There is one thing that really makes me wonder. At one point the resource container parts from Tac-LS were adopted by Kerbalism, in those folders GameData\KerbalismConfig\Parts\TacLifeSupport\TacLifeSupportContainers\ GameData\KerbalismConfig\Parts\TacLifeSupport\TacLifeSupportHexCans\ but there are not balanced to Kerbalism measures... So somebody decided to put them in, but did not alter the resource amounts to make them fit?
-
[1.12.x] Click Through Blocker - NEW DEPENDENCY
Gordon Dry replied to linuxgurugamer's topic in KSP1 Mod Releases
Huh? You got more mods than I got subfolders in GameData? How come?