delta wee
Members-
Posts
106 -
Joined
-
Last visited
Reputation
5 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
[1.8.0-1.12.5] AtmosphereAutopilot 1.6.1
delta wee replied to Boris-Barboris's topic in KSP1 Mod Releases
When I use the AA code in my script the flight controls don't move. Are we supposed to open the AA control panel in order for the scripted AA to work? edit: I figured out the problem, Atmosphere Autopilot does not engage when the plane is on the ground, so I had to just give it a slight increase in pitch for 2 seconds to get it in the air, then the AA took over and went to the altitude I wanted. -
[1.8.0-1.12.5] AtmosphereAutopilot 1.6.1
delta wee replied to Boris-Barboris's topic in KSP1 Mod Releases
Can you provide a sample script that cruises the plane to a specific altitude? I tried adding this to my script: set addons:aa:altitude to startingAltitude. set addons:aa:cruise to true. but it doesn't work for me. What am I missing? -
CKAN (The Comprehensive Kerbal Archive Network); v1.28.0 - Dyson
delta wee replied to politas's topic in KSP1 Mod Releases
lol, and right when I decide to get back into KSP -
CKAN (The Comprehensive Kerbal Archive Network); v1.28.0 - Dyson
delta wee replied to politas's topic in KSP1 Mod Releases
I downloaded ckan.exe v1.28.0 and put it on my Desktop, but when I try to run it I get this error: What could be the problem? -
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
delta wee replied to Dunbaratu's topic in KSP1 Mod Releases
Yep, it was a problem in my script, I was resetting "goalPitch" to .7 every time in the loop .- 1,361 replies
-
- 1
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
delta wee replied to Dunbaratu's topic in KSP1 Mod Releases
I'm trying to control the pitch of my plane with kOS, and am running into trouble when trying to change the pitch via user input to the terminal while the script is running. First I lock the steering to the "goalPitch" variable: SET goalPitch TO 0.7. LOCK STEERING TO HEADING(90, goalPitch). Later on in the script I'm trying to change the "goalPitch" by pressing keyboard buttons into the terminal. Here is what I tried to achieve this: SET tuneRatio TO 1.1. IF TERMINAL:INPUT:HASCHAR() { set inputChar to TERMINAL:INPUT:GETCHAR(). IF inputChar = "7" { SET goalPitch TO goalPitch / tuneRatio. print "goalPitch = " + goalPitch. } IF inputChar = "8" { SET goalPitch TO goalPitch * tuneRatio. print "goalPitch = " + goalPitch. } } When I press "7" or "8" the "goalPitch" is printed to the terminal, but it only seems to change once, for example if I press "8" repeatedly the "goalPitch" seems to only go to 0.77 and stay there. Is there something I'm not understanding about locking steering to a variable?- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[1.8.0-1.12.5] AtmosphereAutopilot 1.6.1
delta wee replied to Boris-Barboris's topic in KSP1 Mod Releases
Is there a way to use Atmosphere AutoPilot with kOS to script flying at different altitudes? -
I've attached fuel tanks around a central core on my ship in hexagonal, radial symmetry mode. Now I want to attach two wings to the sides of the ship in mirrored symmetry mode. What I tried was switching to mirrored mode by pressing R, and then trying to attach the wings to the sides of the fuel tanks, but the symmetry mode automatically switches to hexagonal and radial. How can I prevent the symmetry mode from automatically switching to hexagonal and radial in this case?
-
If we have a plane that is cruising around the world at a specific altitude, at max thrust, and with infinite propellant turned on, would it be normal for its cruise speed to change depending on where it is? I'm observing that the cruise speed does change, so maybe something like the Coriolis force, or maybe the air temperature, is affecting it somehow?