Jump to content

Sacru

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Sacru

  1. I cannot see Interstellar Extended via CKAN. I can see the fuel switch and fuel switch core, but not the most up to date version of the full mod. Strangely, it downloaded the update at some point, but while working out what mod was causing a crash, on removing Interstellar Extended it is no longer visible in CKAN at all.
  2. Hi, just a small bug report. When the game is paused the 'bat current' level will count down as if it is still being drained. edit: so, apparently it DOES drain battery while paused. paused the game with full battery, came back and resumed to find a dead battery.
  3. There are only getters, not setters, for engines at the moment, see here: http://erendrake.github.io/KOS/structure/engine/ An example to get the current thrust for the first engine in the list. list engines in foo. print foo#0:thrust. I cannot work out what causes the order the engines are listed in, so I am not sure how to end up with the solid fuel rockets at a specific point in a list. Though you can call on the length of the list and make a loop looking at its values, such as the ISP, to determine certain things. The example below is messy as I just made it up now and the list# will not work with anything but an integer, as in you cannot set x to 1 then call on foo#x. list engines in foo. set x to foo:length. set y to 0. until y = x { when y = 0 {if foo#0:isp < 275 {set result to result + foo#0:thrust.}. set y to y + 1.}. when y = 1 {if foo#1:isp < 275 {set result to result + foo#1:thrust.}. set y to y + 1.}. when y = 2 {if foo#2:isp < 275 {set result to result + foo#2:thrust.}. set y to y + 1.}. //etc }
×
×
  • Create New...