Jump to content

Trann

Members
  • Posts

    345
  • Joined

  • Last visited

Everything posted by Trann

  1. Or "Preview Signature"?
  2. I'm thinking the fomer because, all summed, it would probably use the least delta-v: the further away you are, the cheaper it is to make adjustments; the closer you are, the more accurate you can be. I am not an expert.
  3. Things were KSP-close-enough last night so I set up my first trip to Duna. I launched with a design already in the books for many successful Mun explorations and returns. After plotting a Kerbin-escape trajectory, I set up a maneuvering node along it and dragged it around to find a close intercept; a bit more tweaking and I have (if I recall) a Ap of 250k waiting. ... Moments ago, I found myself sitting at work wondering how things were going with the ship enroute. The app isn't even running! Does anyone even do that?
  4. Very nice! It's always so relaxing to stare at these...
  5. Currently, none. Did have 3 stranded at one time.
  6. Absolutely correct: at the very first tech level ("Start") they were visible but not "researched". Select each and "research" them and they are now available. I expect this is how to make all newly installed mods available after the fact. Thanks.
  7. I installed this halfway through my career and it's still not available. On a lark, I started a new career and the engineering items were all available immediately. Any ideas?
  8. I can rendezvous and dock like nobody's business. Built some nice usable space stations and fuel depots. I have yet to make it out of Kerbin's gravity well. We need to trade places.
  9. Oh, I'm definitely using it but I'm only a month old player and I'm still 30+ K-days from my first window (that I noticed; I only found this calculator a week ago).
  10. Trann

    kerbal money?

    How about Kerbucks?
  11. I'm not worried about what might break, just curious about the experience. For me, restarting isn't really a bad thing at all. Each ship or station I set up is an infrastructure investment and they are kept in service even after I've fixed flakier designs or come up with something better. Each Kerbonaut stranded by poor planning or accident see billions in Kerbucks (is that a thing?) spent to rescue them. Heck, I've yet to hit a viable launch window for Eve or Duna yet so I'll be saving trillions on each failed rendezvous, crash landing, exhausted fuel supply, stranded crew... Bring it on. 8)
  12. Non-steam so I fully expect to download manually, migrate save files across, mods, etc. No prob. And I have backups galore
  13. So, the blog announced "Update 0.22 Enters Experimental Phase!" today and that means I'll be going through my first update Real Soon Now[TM]. What should I expect? I would guess that any changes to the basic components would mean my save files wouldn't load properly and thus my system of ships, space stations, and such would be empty.
  14. Not a pack. That's the stock two-stage lander atop a simple capsule/jumbo tank. After running the debloat script, things are rendered much simpler (still trying it all out since debloating). EDIT: I should add, this is without the texture reduction pack; I'm just tinkering.
  15. Heh. I might have to hunt down a few to put back: my nozzles are flickering...
  16. "This" being remove files without worrying about warnings? If so, it's a simple tweak: in the lines where 'del' is being changed to 'rm', you would make it 'rm -f', like so... -e 's/^del/rm/' \ becomes -e 's/^del/rm -f/' \
  17. For what it's worth, my run generated some noise for files that weren't there (it was a first run so not a remnant of any previous run). rm: Squad/Parts/Aero/noseConeAdapter/model002.*: No such file or directory rm: Squad/Parts/Command/probeCoreSphere/model000a.*: No such file or directory rm: Squad/Spaces/Common/*.mbm: No such file or directory rm: Squad/Spaces/mk1CockpitInternal/*.mbm: No such file or directory rm: Squad/Spaces/Common/*.png: No such file or directory rm: Squad/Spaces/crewCabinInternals/*.png: No such file or directory rm: Squad/Spaces/cupolaInternal/*.png: No such file or directory rm: Squad/Spaces/GenericSpace1/*.png: No such file or directory rm: Squad/Spaces/GenericSpace3/*.png: No such file or directory rm: Squad/Spaces/landerCabinInternals/*.png: No such file or directory rm: Squad/Spaces/landerCabinSmallInternal/*.png: No such file or directory rm: Squad/Spaces/mk1PodCockpit/*.png: No such file or directory rm: Squad/Spaces/PodCockpit/*.png: No such file or directory rm: Squad/Spaces/Common/*.tga: No such file or directory rm: Squad/Spaces/crewCabinInternals/*.tga: No such file or directory rm: Squad/Spaces/cupolaInternal/*.tga: No such file or directory rm: Squad/Spaces/GenericSpace1/*.tga: No such file or directory rm: Squad/Spaces/GenericSpace3/*.tga: No such file or directory rm: Squad/Spaces/landerCabinInternals/*.tga: No such file or directory rm: Squad/Spaces/landerCabinSmallInternal/*.tga: No such file or directory rm: Squad/Spaces/mk1PodCockpit/*.tga: No such file or directory rm: Squad/Spaces/PodCockpit/*.tga: No such file or directory My personal preference would be to use 'rm -f' so it would run quietly but there may be some merit to seeing these missed files. KSP loaded up fine (so far).
  18. I was going to try something similar but dos2unix isn't part of the base OSX. Rather than add another install for users, this should work against a vanilla OS. And I've bloated your script #!/usr/bin/env bash # License to keep the moderators happy: # This script is released into the public domain per United States copyright law. # If your country has no legal equivalent, then the license reverts to your choice of WTFPL or CC-BY # parameter test if [ $# -ne 2 ]; then echo 'Syntax: ./convert.sh <batfile> <newfile>' exit fi echo '#!/bin/sh' > "$2" # OSX test if [ `uname -s` = "Darwin" ]; then echo '# OSX version' >> $2 sed -e '/^[[:blank:]]*$/d' \ -e 's/[[:blank:]]+$//' \ -e 's/^del/rm/' \ -e 's/\\/\//g' $1 | col -b >> $2 # Linux test elif [ `uname -s` = "Linux" ]; then echo '# Linux version' >> $2 sed -Ee -e '/^[[:blank:]]*$/d' \ -e 's/[[:blank:]]+$//' \ 's/^del/rm/' \ -e 's/\\/\//g' < <( dos2unix < "$1" ) >> "$2" else echo 'Untested.' exit fi chmod +x "$2" My personal copy has a step to backup the Squad directory first: echo '# OSX version' >> $2 echo 'cp -Rp Squad ../Squad-`date "+%Y%m%d-%H%M"`' >> $2
  19. I've named my rescue ships Asteria after the titan goddess of the stars, or of "falling stars". It seemed appropriate that such a titan would save Kerbonauts.
×
×
  • Create New...