-
Posts
128 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by Luovahulluus
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
Create a file called boot.ks, type CORE:DOEVENT("Open Terminal"). in it and save it to [kerbal directory]\ships\script\boot\ In the editor, right click on the kOS computer part and in the appearing menu you can choose the boot.ks as a boot file. More info: https://ksp-kos.github.io/KOS/general/volumes.html#special-handling-of-files-in-the-boot-directory- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
It works for me. You need to save the boot file to the boot directory, and then set the file as the boot file in the editor.- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
Trajectories version 1.7.1 works with kOS.- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
That was cool! The next step is to lift off at the same time from the same runway, side by side, and land them to the other runway- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
How often does Trajectories update the predicted impact position? (I'm doing a kOS script and when my rover has a lot of horizontal speed, the impact position seems to move along with the rover and then jump back.)
- 980 replies
-
- atmosphere
- trajectories
-
(and 2 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
This is for a rover script. I can't imagine the burn being more than a hundred meters at most. At that distance the difference doesn't matter, especially as I have a PIDloop doing a lot of the work. I figured out what was wrong with the formula I used. I was missing a minus sign. This gives the correct value: lock sBurnDistance TO abs(verticalspeed)*sBurnTime + 0.5*-maxVertAcc*(sBurnTime^2).- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
A suicide burn: I'm trying to find the altitude where is should throttle up, but this code stops my rocket way too early (It should stop a little early as it doesn't take into account the lost mass, but I don't think the effect is this big). I can't figure out where my error is. clearscreen. set ship:control:mainthrottle to 0. SAS on. rcs off. LOCK LocalGee TO constant:G * BODY:Mass / (BODY:RADIUS+ship:altitude)^2. LOCK maxVertAcc TO SHIP:AVAILABLETHRUST / SHIP:MASS - LocalGee. //max acceleration in up direction the engines can create LOCK sBurnTime TO verticalspeed / maxVertAcc. lock sBurnDistance TO verticalspeed*sBurnTime + 0.5*maxVertAcc*(sBurnTime^2). until false { print "SHIP:AVAILABLETHRUST: " + round(SHIP:AVAILABLETHRUST, 5) + " " at(1,1). print "sBurnDistance: " + round(sBurnDistance, 5) + " " at(1,2). print "alt:radar: " + round(alt:radar, 5) + " " at(1,3). wait 0. If sBurnDistance > alt:radar and rcs = true { set ship:control:mainthrottle to 1. } } Edit: this line seems to work lock sBurnDistance to ship:verticalspeed^2 / (2 * maxVertAcc).- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
I know how to pass parameters to a program. I haven't found a way to RETURN from program.- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
A programming problem: I have a rover autopilot that has several driving modes: manual, go-to-coordinates, go-to-target, circumnavigate. It's all in one file, a loop that allows switching between different modes on the fly. It's designed to be always on the background, keeping the rover upright and safe even on manual mode. I found a pathfinding program on Reddit, that would be a great addition to my autopilot. I'm trying to combine the two scripts. The problem is, the path finding program is actually three programs: coordinate conversion, path finding, and execution. Those are designed to run one after the other, and then end. The path finding code would be great for me without any(?) modification, but how do I use it? Is there a way to pass parameters to it and have it return the solution to my main program? Or do I have to insert the code to my current file as a function?- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
I have no idea what that means. Care to share the dlls?- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Luovahulluus replied to Dunbaratu's topic in KSP1 Mod Releases
Which versions of kOS, KSP and Trajectories mod play nice together?- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
[KSP 1.12.1+] Galileo's Planet Pack [v1.6.6] [23 Sept 2021]
Luovahulluus replied to Galileo's topic in KSP1 Mod Releases
Thanks! Somehow I didn't find it on Google, or realize this mod adds missions I have like 120 items in the gamedata directory, so it's kind of difficult to figure out what does what. Installing mods on ckan is too easy- 7,371 replies
-
- gpp
- kopernicus
-
(and 1 more)
Tagged with:
-
[KSP 1.12.1+] Galileo's Planet Pack [v1.6.6] [23 Sept 2021]
Luovahulluus replied to Galileo's topic in KSP1 Mod Releases
Hello everyone! I'm back playing the game! And, of course, I'm playing GPP (there is no going back) . Just wanted to say hi, and ask a non-gpp question I don't know where to ask. This is the question: I have a mission that says tourists should take photos on the surface of Iota. Does anyone know how to do that or know what mod gave me the mission so I can ask on the correct thread? Thanks!- 7,371 replies
-
- 1
-
- gpp
- kopernicus
-
(and 1 more)
Tagged with:
-
I have a heavily modded (133 folders in Gamedata) game where I can't hire any Kerbals. I have one Kerbal, Galileo Gaelan (courtesy of Galileo's Planet Pack, I assume). I have the Ship Manifest mod installed, but can't create a Kerbal with it. Nothing happens when I hit the create button. My astronaut complex says 10/12 crews, but no-one is to be seen there, not even Galileo. The issue seems to be very similar to this: https://forum.kerbalspaceprogram.com/index.php?/topic/93318-090-cant-hire-any-new-kerbals/ EXCEPT the proposed solution is not applicaple, as I have no kerbals on any ships. Any ideas which mods could have this effect? Edit: The problem persisted even with a new game, even with all the mods removed. Ended up re-downloading the game. That fixed it.
-
That's strange. When I click the picture, all I have is Imgur saying "Oops! We couldn't find that page". I tried with my PC and Android device.
- 2,452 replies
-
- kopernicus
- gpo
-
(and 3 more)
Tagged with:
-
@Gameslinx, the screenshots link in the OP doesn't work.
- 2,452 replies
-
- kopernicus
- gpo
-
(and 3 more)
Tagged with:
-
[KSP 1.12.1+] Galileo's Planet Pack [v1.6.6] [23 Sept 2021]
Luovahulluus replied to Galileo's topic in KSP1 Mod Releases
I do have SpaceY extended, and I still had to scale them , only to 10m though. It's easier than using 20 of them . The three nuclear engines use liquid fuel, so the booster tanks separating in the fourth picture contain only oxidizer. The engines in those are Vectors, scaled to 5 meters.- 7,371 replies
-
- 1
-
- gpp
- kopernicus
-
(and 1 more)
Tagged with:
-
[KSP 1.12.1+] Galileo's Planet Pack [v1.6.6] [23 Sept 2021]
Luovahulluus replied to Galileo's topic in KSP1 Mod Releases
I'm going to post about another failed craft. This is my current version of the Nero craft. This is the problem with it. The explosions are caused by "structural failure on linkage between" two parts in multiple places. This also happens between parts where there should not be any stress, like between a nose cone and a fuel tank. Any ideas what's going on and how it could be avoided? (Other than building something sensible ) EDIT: I cut back the throttle on the solid boosters to get a launch pad TWR of 1.36 and got the craft pretty high up. At this point everything was still looking good... ...But then the ring went all wibbly wobbly and the craft disintegrated. I believe I would have gotten it into orbit. The apoapsis was already out of the atmosphere and the orbital velocity isn't that far away.- 7,371 replies
-
- 5
-
- gpp
- kopernicus
-
(and 1 more)
Tagged with:
-
[KSP 1.12.1+] Galileo's Planet Pack [v1.6.6] [23 Sept 2021]
Luovahulluus replied to Galileo's topic in KSP1 Mod Releases
I finally looked into Space Engine, but the detail of the galaxies is not nearly enough to be used as a skybox, IMO. The galaxies are just volumetric fog, compared to real photos where you can actually see the huge amounts of stars. In other news, I have discovered the limits of Kerbal Joint Reinforcement mod... This is the ship Nero Insanity. I actually got it to fly to about 5000 meters before it disintegrated. Somehow that landing pad looks inadequate... There is a silver lining to all this: when testing the craft I did see lots of spectacular explosions . The next version is going to be sturdier and a little lighter. It also has a separate ISRU lander, which can refuel most of the ring at one go. At the moment, the craft, the lander, atmospheric booster stage and a rover are totalling just over 400 parts.- 7,371 replies
-
- 5
-
- gpp
- kopernicus
-
(and 1 more)
Tagged with:
-
[KSP 1.12.1+] Galileo's Planet Pack [v1.6.6] [23 Sept 2021]
Luovahulluus replied to Galileo's topic in KSP1 Mod Releases
I certainly would love your tutorial. I have a couple of ideas for planets/moons, and I would love to have all the necessary information in one place to actually turn the ideas into something I can visit- 7,371 replies
-
- 2
-
- gpp
- kopernicus
-
(and 1 more)
Tagged with:
-
[KSP 1.12.1+] Galileo's Planet Pack [v1.6.6] [23 Sept 2021]
Luovahulluus replied to Galileo's topic in KSP1 Mod Releases
Icarus and thalia. Which other planets are considered deadly?- 7,371 replies
-
- gpp
- kopernicus
-
(and 1 more)
Tagged with:
-
[KSP 1.12.1+] Galileo's Planet Pack [v1.6.6] [23 Sept 2021]
Luovahulluus replied to Galileo's topic in KSP1 Mod Releases
I've been designing my Nero vehicles, but then I got distracted by another skybox project... Anyone interested in having that one? Just in case you are wondering, that craft is not going to come along to Nero. I just needed some extra cash so I used this shuttle to do six missions at one go: Got into Gael orbit, visited a station, landed on Iota, made a fuzzy scan, flyby of ceti, multi-moon flyby. Nearly got enough money to launch the big ship... Then I realized that my SRBs cost just over 3 million(!) spesos and decided to build a recoverable first stage instead...- 7,371 replies
-
- 2
-
- gpp
- kopernicus
-
(and 1 more)
Tagged with:
-
KSP Interstellar Extended Support Thread
Luovahulluus replied to FreeThinker's topic in KSP1 Mods Discussions
Thanks! I don't seem to have any tanks that can store uranium nitride pellets. Am I missing something or do I need another mod for that? -
KSP Interstellar Extended Support Thread
Luovahulluus replied to FreeThinker's topic in KSP1 Mods Discussions
I designed a ship with delta-V of 16 000 m/s. It is propelled with two 5m diameter Timberwinds with Liquid Fuel propellant. How long does the 400 units of Uranium Nitride Pellets last? I haven't been able to find any good documentation on those.