├── airplanesteer.ks ├── ascent.ks ├── bodyinfo.ks ├── boot ├── deploy_by_tag.ks ├── execute_all_nodes.ks ├── execute_next_node.ks ├── mission_kerbin_moon_landing.ks ├── open_terminal.ks └── tpksp.ks ├── cat.ks ├── deorbit.ks ├── deploy.ks ├── doge.ks ├── execute_node.ks ├── execute_node_old.ks ├── finish_orbit.ks ├── landing2.ks ├── landing_final.ks ├── launch.ks ├── launch_to_orbit.ks ├── mission.ks ├── plan_circularize.ks ├── plan_match_inclination.ks ├── plan_moon_escape.ks ├── plan_moon_intercept.ks ├── plan_periapsis_adjustment.ks ├── plan_reentry.ks ├── plan_rsvp.ks ├── play.ks ├── reenter.ks ├── remove_all_nodes.ks ├── test_stage_info.ks ├── util ├── closeapproach.ks ├── logging.ks ├── optimize_node.ks ├── orbit_util.ks ├── pause.ks ├── stage_utils.ks └── util.ks └── wait_for_transfer.ks /airplanesteer.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/airplanesteer.ks -------------------------------------------------------------------------------- /ascent.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/ascent.ks -------------------------------------------------------------------------------- /bodyinfo.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/bodyinfo.ks -------------------------------------------------------------------------------- /boot/deploy_by_tag.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/boot/deploy_by_tag.ks -------------------------------------------------------------------------------- /boot/execute_all_nodes.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/boot/execute_all_nodes.ks -------------------------------------------------------------------------------- /boot/execute_next_node.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/boot/execute_next_node.ks -------------------------------------------------------------------------------- /boot/mission_kerbin_moon_landing.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/boot/mission_kerbin_moon_landing.ks -------------------------------------------------------------------------------- /boot/open_terminal.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/boot/open_terminal.ks -------------------------------------------------------------------------------- /boot/tpksp.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/boot/tpksp.ks -------------------------------------------------------------------------------- /cat.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/cat.ks -------------------------------------------------------------------------------- /deorbit.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/deorbit.ks -------------------------------------------------------------------------------- /deploy.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/deploy.ks -------------------------------------------------------------------------------- /doge.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/doge.ks -------------------------------------------------------------------------------- /execute_node.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/execute_node.ks -------------------------------------------------------------------------------- /execute_node_old.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/execute_node_old.ks -------------------------------------------------------------------------------- /finish_orbit.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/finish_orbit.ks -------------------------------------------------------------------------------- /landing2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/landing2.ks -------------------------------------------------------------------------------- /landing_final.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/landing_final.ks -------------------------------------------------------------------------------- /launch.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/launch.ks -------------------------------------------------------------------------------- /launch_to_orbit.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/launch_to_orbit.ks -------------------------------------------------------------------------------- /mission.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/mission.ks -------------------------------------------------------------------------------- /plan_circularize.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/plan_circularize.ks -------------------------------------------------------------------------------- /plan_match_inclination.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/plan_match_inclination.ks -------------------------------------------------------------------------------- /plan_moon_escape.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/plan_moon_escape.ks -------------------------------------------------------------------------------- /plan_moon_intercept.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/plan_moon_intercept.ks -------------------------------------------------------------------------------- /plan_periapsis_adjustment.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/plan_periapsis_adjustment.ks -------------------------------------------------------------------------------- /plan_reentry.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/plan_reentry.ks -------------------------------------------------------------------------------- /plan_rsvp.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/plan_rsvp.ks -------------------------------------------------------------------------------- /play.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/play.ks -------------------------------------------------------------------------------- /reenter.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/reenter.ks -------------------------------------------------------------------------------- /remove_all_nodes.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/remove_all_nodes.ks -------------------------------------------------------------------------------- /test_stage_info.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/test_stage_info.ks -------------------------------------------------------------------------------- /util/closeapproach.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/util/closeapproach.ks -------------------------------------------------------------------------------- /util/logging.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/util/logging.ks -------------------------------------------------------------------------------- /util/optimize_node.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/util/optimize_node.ks -------------------------------------------------------------------------------- /util/orbit_util.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/util/orbit_util.ks -------------------------------------------------------------------------------- /util/pause.ks: -------------------------------------------------------------------------------- 1 | print "Press any key...". 2 | terminal:input:getchar(). -------------------------------------------------------------------------------- /util/stage_utils.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/util/stage_utils.ks -------------------------------------------------------------------------------- /util/util.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/util/util.ks -------------------------------------------------------------------------------- /wait_for_transfer.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonnyOThan/tpksp-scripts/HEAD/wait_for_transfer.ks --------------------------------------------------------------------------------