Skip to content

Instantly share code, notes, and snippets.

[LOG 20:56:38.532] ******* Log Initiated for Kerbal Space Program - 1.12.3.3173 (WindowsPlayer x64) en-us *******
Kerbal Space Program - 1.12.3.3173 (WindowsPlayer x64) en-us
OS: Windows 10 (10.0.0) 64bit
CPU: AMD Ryzen 7 5800X 8-Core Processor (16)
RAM: 65461
GPU: NVIDIA GeForce RTX 3080 Ti (12100MB)
SM: 50 (Direct3D 11.0 [level 11.1])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, ARGB4444, ARGB1555, Default, ARGB2101010, DefaultHDR, ARGB64, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8, ARGBInt, RGInt, RInt, BGRA32, RGB111110Float, RG32, RGBAUShort, RG16, BGRA10101010_XR, BGR101010_XR, R16
[LOG 20:56:38.532] ******* Log Initiated for Kerbal Space Program - 1.12.3.3173 (WindowsPlayer x64) en-us *******
Kerbal Space Program - 1.12.3.3173 (WindowsPlayer x64) en-us
OS: Windows 10 (10.0.0) 64bit
CPU: AMD Ryzen 7 5800X 8-Core Processor (16)
RAM: 65461
GPU: NVIDIA GeForce RTX 3080 Ti (12100MB)
SM: 50 (Direct3D 11.0 [level 11.1])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, ARGB4444, ARGB1555, Default, ARGB2101010, DefaultHDR, ARGB64, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8, ARGBInt, RGInt, RInt, BGRA32, RGB111110Float, RG32, RGBAUShort, RG16, BGRA10101010_XR, BGR101010_XR, R16
[LOG 08:29:18.531] ******* Log Initiated for Kerbal Space Program - 1.12.5.3190 (WindowsPlayer x64) en-us *******
Kerbal Space Program - 1.12.5.3190 (WindowsPlayer x64) en-us
OS: Windows 10 (10.0.0) 64bit
CPU: AMD Ryzen 7 5800X 8-Core Processor (16)
RAM: 65461
GPU: NVIDIA GeForce RTX 3080 Ti (12100MB)
SM: 50 (Direct3D 11.0 [level 11.1])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, ARGB4444, ARGB1555, Default, ARGB2101010, DefaultHDR, ARGB64, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8, ARGBInt, RGInt, RInt, BGRA32, RGB111110Float, RG32, RGBAUShort, RG16, BGRA10101010_XR, BGR101010_XR, R16

How do I get help with a KSP problem?

The easiest way for someone to help you is to look at your log files. Anything else is just guessing and a waste of time. They will need the entire file. Not a screenshot. Not a copy/paste of an exception you found. The whole thing.

The main log file is named KSP.log and sits in the same directory as the KSP executable. For default installs on Windows, this is at C:\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program. You can also right-click KSP in Steam and select "Manage -> Browse local files." By default, Windows will hide file extensions so you may only see the filename as "KSP" and type "Text Document." That's the right one. It's not in the Logs folder.

image

The log file is regenerated each time you launch KSP. It is most helpful if you reproduce whatever problem you were experiencing and then grab the log file. Do not r

parameter desired_roll is 0.
parameter desired_heading is 90.
parameter target_apoapsis is body:atm:height + 10000.
parameter g_turn_target_altitude is target_apoapsis + 20000. // slightly higher than target AP
parameter throttle_down_altitude is target_apoapsis - 20000.
run once "logging.ks".
run once "util.ks".
log_message("=== ascent ===").
@JonnyOThan
JonnyOThan / boot_kerbin_moon_landing.ks
Created December 11, 2018 15:12
KOS mission phase manager
parameter ascent_roll is 0.
wait until ship:loaded and ship:unpacked.
if (ship:status = "PRELAUNCH") {
runpath("archive:/deploy", path(scriptpath()):name).
}
run once "logging"(1).
@JonnyOThan
JonnyOThan / mk1-2pod.cfg
Created August 29, 2018 14:24
Un-hides the mk1-2 pod from the KSP parts box
@PART[Mark1-2Pod]
{
@category = Pods
}