-
Posts
45 -
Joined
-
Last visited
Reputation
0 NeutralProfile Information
-
About me
Rocketeer
-
Thanks I think I will stick to stock way
-
Is there a way to transfer science between two crew capsules? I'm thinking about having specialized lander designed to dock to return ship, transfer science and undock. Then return ship would return to Kerbin leaving lander behind. And if it's not possible with stock, are there mods that make it possible? EDIT: Answered
-
I second that!
-
--ninja'd-- You mean that thread: http://forum.kerbalspaceprogram.com/threads/68089-0-23-kOS-Scriptable-Autopilot-System-v0-11-2-13 ?
-
[1.3] kOS Scriptable Autopilot System v1.1.3.0
unWinged replied to erendrake's topic in KSP1 Mod Releases
That works :-) thanks! -
[1.3] kOS Scriptable Autopilot System v1.1.3.0
unWinged replied to erendrake's topic in KSP1 Mod Releases
I have problem with setting node to apoapsis. I try to do it with code below: set Ncirc to node(time + eta:apoapsis, 0, 0, 400). add Ncirc. IIRC it worked in 0.10, but now it returns error saying that time + eta:apoapsis is not a number. I narrowed it down to time being not a number, although when I try to print it it shows a number... Can someone help me how to do this? -
[0.25] Engine Ignitor (Workaround for some bugs V3.4.1: Aug.31)
unWinged replied to HoneyFox's topic in KSP1 Mod Releases
How does this mod work with not-fuel-burning engines? Like termal rocket nozzles from KSP Interstellar for example. -
[1.3] kOS Scriptable Autopilot System v1.1.3.0
unWinged replied to erendrake's topic in KSP1 Mod Releases
That helped now program starts smoothly. Thank You! -
[1.3.0] Kerbal Engineer Redux 1.1.3.0 (2017-05-28)
unWinged replied to cybutek's topic in KSP1 Mod Releases
I have problem with every readings regarding vessel freezing. In VAB and in flight. After short while of using KER it just stop updating information. In VAB even deleting KER part or going out VAB does not help... Can it be mod incompatibility issue? I have FAR and few other mods installed. -
[1.3] kOS Scriptable Autopilot System v1.1.3.0
unWinged replied to erendrake's topic in KSP1 Mod Releases
I have problem with code below. It's simple code for launching suborbital rockets with liquid or hybrid engines. It have to parameters declared on start: heading and target apoapsis. It always returns error, something along lines "error in line 1: syntax error. I got three similar codes (for launching diffrent rockets) but only that ones gives error. I tried to run it with only one parameter, or without any parameter, but still not working... declare parameter thead. declare parameter tapo. clearscreen. set hdir to thead. print "launch parametrs:". print "target apoapsis: " + tapo. print "heading: " + hdir. print "----====----". print "Commencing launch sequence!". wait .5. print "3". wait .5. print "2". lock steering to heading 0 by 90. print " steering locked". wait .5. print "1". lock throttle to (mass*20)/maxthrust. print " throttle locked". wait .5. print "0 - LAUNCH!". stage. wait until alt:radar > 100. lock steering to heading hdir by 90. print " LIFT OFF!". wait until verticalspeed > 100. lock steering to heading hdir by 80. print " starting gravity turn". wait until altitude > 4000. lock sel to 80*(70000-altitude)/66000. lock steering to heading hdir by sel. print " gravity turn". wait until apoapsis >= tapo OR stage:oxidizer = 0. if stage:oxidizer = 0 { print "!!FUEL DEPLETED!!". break. }. lock throttle to 0. lock steering to prograde. print round(missiontime) + " coasting". wait until altitude >= 70000. print round(missiontime) + " atmosfere cleared". toggle ag1. print vesselname + " is in space!". print"MET: " + round(missiontime). unlock throttle. unlock steering. SAS off. print vesselname + " is free!". If somebode can look at it I will be grateful!