-
Posts
730 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by TranceaddicT
-
totm nov 2023 SpaceX Discussion Thread
TranceaddicT replied to Skylon's topic in Science & Spaceflight
This is all under maritime international convention (1910 and amended in 1989). In your case, the UK probably has something similar to the US. US passed the Abandoned Shipwrecked Act in 1987 which gives title to the United States of any finds within U.S. territorial waters (typically three miles from the coastline) and not the discoverer. With regards to nation ships, it codifies that no governments ever abandons the S&R efforts for their own vessels. -
What's that graphics mod that youtubers use?
TranceaddicT replied to Chel's topic in KSP1 Mods Discussions
You are probably looking for Scatterer -
totm nov 2023 SpaceX Discussion Thread
TranceaddicT replied to Skylon's topic in Science & Spaceflight
Nope. Under the "Law of Salvage," the "salvor" (either by contract or implied agreement) is required to return what is found to the original owner in return for a reward based on a mix of: the degree of risk, the difficulty of recovery and the value of goods. (This is not to say that he couldn't study during transit.) What you are likely reaching for is the "Law of Finds." This is what is commonly referred to as "Finders-Keepers". Unfortunately for Bezos, he would have to prove the property was abandoned. -
Bad science in fiction Hall of Shame
TranceaddicT replied to peadar1987's topic in Science & Spaceflight
Do the "Sharknados" count? -
[1.3.x] SETI, Unmanned before Manned [Patreon]
TranceaddicT replied to Yemo's topic in KSP1 Mod Releases
In case anyone is trying to track down the MM error for this, it's on ln246: @PART[*]:HAS[@MODULE[RWSaturatable]]:NEEDS[RWSaturatable]:AFTER[RWSaturatable]:BEFORE[SETIrebalance] Since SETIrebalance is after RWSaturatable alphabetically, it will naturally be processed after RWSaturatable. I think it's safe removed the :AFTER[RWSaturatable]- 2,515 replies
-
@eberkain I have an alternative to the previous configuration. If you haven't solved your situation try this: @PART[*]:HAS[@MODULE[ModuleEngines*]:HAS[!RESOURCE[LiquidFuel]]]:FINAL { !MODULE[TweakScale] {} } It's it different from my previous based on the 'Engine Type'. This one should remove TweakScale from any parts that have 'LiquidFuel' WITHIN 'ModuleEngines*'
-
@slaintemaith Your difficulty is a result of increased drag forces. It's like this, you can drive your truck 100km on a full tank of gas. But, tie a 1t rock to the back and you can only go 50km. In both cases, you are still driving until your tank is empty; it's the additional drag of the rock that's reducing your mileage.
-
True; good catch.
-
Before you do anything you should make sure the tanks are fully loaded. The configuration provided by FASA only has the tanks at 87.5% capacity. If that isn't enough for you here's a step-by-step MM config. Start with the Command Module (.. /GameData/FASA/Apollo/FASA_Apollo_CM.cfg) 1. Create a folder called /GameData/Mike089_MMConfigs 2. Open notepad and paste this in: @PART[FASAApollo_SM] { @RESOURCE[LiquidFuel] { amount = // 315 maxAmount = // 360 } @RESOURCE[Oxidizer] { amount = // 385 maxAmount = // 440 } } 3. fill in values for amount and maxAmount as you desire. 4. SaveAs "MikeO89_MM_FASA.cfg" (or whatever.cfg) Note: '//' denotes a comment; so the values afterward are provided as a reference for the actual values provided by FASA.
-
You can opt to use TextureReplacerReplaced. TRR is 1.3.1 ready.
-
@aquist I'd say the first one initially filters for anything with ModuleCommand and then of those any with CrewCapacity=2. The second filters for the reverse case CrewCapacity then ModuleCommand. If you want to target both try this: @PART[*]:HAS[@MODULE[ModuleCommand]&#CrewCapacity[2]]:NEEDS[USILifeSupport]:FINAL
- 69 replies
-
- module manager
- exampels
-
(and 1 more)
Tagged with:
-
First thing is that ModuleParachute is StockKSP. That module gets deleted by RealChute and replaced by it's own RealChuteModule. Next, you need to target the actual variables; these too are changed by the mod. For many mods you need to find the .cfg file that creates the part and dig deeper into the file to find the correct names for the modules and variables. The file you would need to view is: /../GameData/RealChute/ModuleManager/Stock_RealChute_MM.cfg That said, try this: // Change the default parachute settings for RealChute-Lite included with FAR @PART[parachuteSingle|parachuteRadial|parachuteLarge]:FINAL { @MODULE[RealChuteModule] { @minPressure = 0.5 @deploymentAlt = 800 } } @PART[radialDrogue|parachuteDrogue]:FINAL { @MODULE[RealChuteModule] { @minPressure = 0.25 @deploymentAlt = 2000 } }
-
TextureReplacer has been superseded by TextureReplacerReplaced. How does this factor into the dependencies? Can we do a straight-up replace? Or, are we locked into using TextureReplacer? After a bunch of testing, it seems as though replacing is perfectly acceptable. I've not had any errors in a STOCK setup.
-
parts [1.12.x] Sounding Rockets! Start small. Dream big!
TranceaddicT replied to RoverDude's topic in KSP1 Mod Releases
FYI, for those who don't follow the github page .. I noticed that SR parts have no entryCost; so, I created a MMConfig to add this . It also stays with KSP's standard of Entry cost being 3x part cost. @PART[SR_*] { @entryCost = #$cost$ @entryCost *= 3 } -
Yeppers. That will do it. I believe you can add preconfigured amounts by doing this: @PART[Size3TinyTank] { MODULE { name = ModuleFuelTanks volume = 1800 type = Default RESOURCE { name = LiquidFuel amount = 810 maxAmount = 810 } RESOURCE { name = Oxidizer amount = 990 maxAmount = 990 } } }
-
CKAN: 266 mods installed ModuleManager: 102042 patches loaded from cache
-
... you've gone off the deep-end with mods.
-
Installing mods is more than drag/drop. There can be dependencies that the mod needs to function properly, e.g. nearly EVERY mod requires ModuleManager as a dependency. Additionally, there are mods which conflict with one another; CommNetConstellation and RemoteTech come to mind. CKAN handle these. Create a Drakomis_LEGACY folder and move those parts to that folder. Then delete the offending mod.