K3achas
Members-
Posts
102 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by K3achas
-
It eats TARDIS' for breakfast.
-
Jeb can drop into water and then get hit by a plane at mach 3.
-
Banned for insulting two people who fail to ssto spaceplane.
-
It was inevitable.
-
In VTOL mode.
-
Green is red's biggest opposer.
-
For smallish amounts of oxygen, we can use electrolysis on the water, which also gives us hydrogen. Also, I'd imagine that we would have access to gunpowder, which has saltpeter, which has oxygen. Good luck getting it out.
-
Gets g++ Inserts i++
- 1,334 replies
-
- vending machine
- game
-
(and 1 more)
Tagged with:
-
Goodnight moon. (antimatter sent in large quantities at moon)
-
Study on KSP armor and missiles
K3achas replied to Mad Rocket Scientist's topic in KSP1 Mission Reports
The armor clipping would probably allow better damage. -
Scale this up by 100 times:
-
Gets Buran. Inserts blizzard.
- 1,334 replies
-
- vending machine
- game
-
(and 1 more)
Tagged with:
-
Also takes out your car.
-
Fun fact: -infinity is more so.
-
You get diabeties and go into a shugar comma. I store one tonne of antimatter without any containment, what could go wrong?
-
kervsk foace orifeab eyes closed, one finger
-
Gets Kerbal death. Inserts Kerbal death.
- 1,334 replies
-
- vending machine
- game
-
(and 1 more)
Tagged with:
-
Whenever I launch a part with the following module, procedural parts module, and the procedural shapes module the above error is thrown. Any ideas on how to fix? using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using UnityEngine; using ProceduralParts; namespace ProceduralTech { public class ProceduralCabin : PartModule { [KSPField(guiActiveEditor=true)] float cabinVolume; [KSPField(guiActiveEditor=true)] int crewSize; PartModuleList modules; ProceduralPart rootStreach; ProceduralAbstractShape rootShape; public float CrewDensity; public float MassDensity; public override void OnStart(StartState state) { modules = part.Modules; for (int i = 0; i < modules.Count; i++) { //find the procedural part module if (modules [i].ClassName == "ProceduralPart") { rootStreach = (ProceduralPart)modules [i]; } } rootShape = rootStreach.CurrentShape; // print ("CD = " + CrewDensity.ToString ()); // print ("bla = " + bla.ToString()); } public void Update() { if (HighLogic.LoadedSceneIsEditor) { cabinVolume = rootShape.Volume; // print ((cabinVolume / CrewDensity).ToString()); crewSize = (int)(cabinVolume / CrewDensity); part.CrewCapacity = crewSize; part.mass = cabinVolume / MassDensity; } } public override void OnLoad(ConfigNode ownNode) { CrewDensity = float.Parse (ownNode.GetValue ("CrewDensity")); MassDensity = float.Parse (ownNode.GetValue ("MassDensity")); // print ("[Debug] CrewDensity = " + CrewDensity.ToString()); // print ("[Debug] MassDensity = " + MassDensity.ToString()); } } }
-
Gets toroidal tank. Insertss toroidal tank.
- 1,334 replies
-
- vending machine
- game
-
(and 1 more)
Tagged with:
-
-34, +
-
Kerval Space Program Eyes closed.
-
What is next platform, that KSP will be ported to?
K3achas replied to PatPL's topic in KSP1 Discussion
Most modern supercomputers run linux, so a port exists. That being said KSP only realy uses one tread, so the millions of cores won't help.