Kerbal Space Program [1.2.2] – Ep 89 – Minmus Ground Resource Base (Part 4) – Let’s Play
Conquering Kerbal Space Program EPISODE 89: In this episode, we’re continuing where we left off with our base launch, and finally getting things down on the surface and hooked up! ————– Conquering KSP Playlist: www.youtube.com/playlist?list=PLsBoF66x4ZmAMbs-BAIYv6rjs5txolj6m KSP Brainstorming Streams: www.youtube.com/playlist?list=PLsBoF66x4ZmBHZ0wUXYtMgt-cEF6_kMSZ Brainstorming stream for opening module launch: www.youtube.com/watch?v=pe1b6T6TZPk&index=4&list=PLsBoF66x4ZmBHZ0wUXYtMgt-cEF6_kMSZ&t=25s Mod list is located at hottipsmedia.com/ksp-mods/ SUPPORT Charlie ——————————– […]
What is the suit pack for the kerbals because i cant find it in the mods list and, how did you get the visor semi transparent. Please answer (P.S Loving this series and i have been watching this from the very begining keep it up)
What mod is responsible for those incredibly sexy Minmus textures?
Thanks for pointing out my help!
This truly means a lot to me 🙂
I like the post commentary episodes more
Your low profile engines are dragging I think with the dampening of the wheels from the heavy modules? May have happened when you were editing the crafts in the bay to get the wheels to not clip. Could try increasing traction see what you get.
hi i seen you on mr beast live stream and your a pretty cool youtuber im going to subscribe!
It's back!?
It's been so long!
I appreciate your dedication, I knew if I waited long enough it'd pay off. 🙂
hello
in the chapter you sowed the new PISS i was thinking wat a waist of action groups
kos can do this .
finally i wrot a kos script that can do it
it will turn on and off recyclers to get the bet % you can get and no extra
i supuse your not interested in adding another mod just for something thes small but as the inspiration in from hear i wanted to post in this place 🙂
set recdatalist to list(
lexicon("name","Tundra.Kerbitat375","title","MKS 'Tundra' Kerbitat (3.75m)","CrewCapacity",4,"RecyclePercent",0.865,"pur",true,"purcrewcap",4,"purrexper",0.9325),
lexicon("name","Tundra.Kerbitat250","title","MKS 'Tundra' Kerbitat (2.5m)","CrewCapacity",4,"RecyclePercent",0.81,"pur",true,"purcrewcap",4,"purrexper",0.905),
lexicon("name","USILS.LgRecycler","title","RT-5000 Recycling Module","CrewCapacity",3,"RecyclePercent",0.79,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","Duna.Kerbitat","title","MKS 'Duna' Kerbitat","CrewCapacity",4,"RecyclePercent",0.77,"pur",true,"purcrewcap",4,"purrexper",0.885),
lexicon("name","Tundra.PioneerLC","title","MKS 'Tundra' Pioneer – Logistics Module","CrewCapacity",4,"RecyclePercent",0.70,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","Tundra.Pioneer","title","MKS 'Tundra' Pioneer","CrewCapacity",4,"RecyclePercent",0.70,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","dsak.proc.b","title","Mk2 Inline Recycler","CrewCapacity",4,"RecyclePercent",0.65,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","USILS.Recycler","title","RT-500 Recycling Module","CrewCapacity",1,"RecyclePercent",0.6,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","inlineCmdPod","title","PPD-1 Heavy Command Module","CrewCapacity",6,"RecyclePercent",0.5,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","inlineCmdPod","title","Mk4-1 Heavy Command Module","CrewCapacity",7,"RecyclePercent",0.5,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","Large.Crewed.Lab","title","Mobile Processing Lab MPL-LG-2","CrewCapacity",4,"RecyclePercent",0.5,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","ScienceModule","title","Science Laboratory","CrewCapacity",4,"RecyclePercent",0.5,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","mk3-9pod","title","Mk3-9 Orbital Command Pod","CrewCapacity",3,"RecyclePercent",0.25,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","Malemute.RoverScienceLab","title","Malemute Geology Lab","CrewCapacity",2,"RecyclePercent",0.25,"pur",false,"purcrewcap",0,"purrexper",0),
lexicon("name","SalamanderPod","title","'Salamander' Command Pod","CrewCapacity",2,"RecyclePercent",0.25,"pur",false,"purcrewcap",0,"purrexper",0)
).
set oldcrewnum to 0.
set lhubst to SHIP:MODULESNAMED("ModuleLifeSupportRecycler").
//on ship:CREW:LENGTH<>oldcrewnum
function setrec
{
CLEARSCREEN.
set lhubst to SHIP:MODULESNAMED("ModuleLifeSupportRecycler").
local I to ship:CREW:LENGTH.
from {local X to 0. local maxrec to 0. local curentrec to 0.} until (maxrec<curentrec and I<1) or X>=recdatalist:LENGTH step {set X to X+1.} do
{
set reclist to SHIP:PARTSNAMED(recdatalist[X]["name"]).
// print reclist:LENGTH+" name: "+recdatalist[X]["name"]+" " at (0,23). wait 0.1.
if reclist:LENGTH>0
from {local Y to 0. } until (maxrec<curentrec and I<1) or Y>=reclist:LENGTH step {set Y to Y+1.} do
{
set maxrec to max(maxrec,recdatalist[X]["RecyclePercent"]).
set wreclist to reclist[Y]:GETMODULE("ModuleLifeSupportRecycler").
if maxrec>curentrec
{if wreclist:hasevent("Start Life Support") wreclist:doevent("Start Life Support"). set curentrec to (curentrec*ship:CREW:LENGTH+recdatalist[X]["CrewCapacity"]*recdatalist[X]["RecyclePercent"])/ship:CREW:LENGTH. set I to I-recdatalist[X]["CrewCapacity"].}
else {if wreclist:hasevent("Stop Life Support") wreclist:doevent("Stop Life Support").}
print " effective Recycler: "+min(maxrec,curentrec) at (0,6).
// print " effective Recycler: "+curentrec +" maxrec: "+maxrec at (0,20). print " X: "+X +" Y: "+Y+" I: "+I at (0,22). wait 0.1.
}
}
}
until false {
if ship:CREW:LENGTH<>oldcrewnum {
setrec().
wait 0.
set oldcrewnum to ship:CREW:LENGTH.
local I to 7.
local j to 1.
print "num of crew:"+ship:CREW:LENGTH at (0,5).
for hubst in lhubst {print j+": "+hubst:GETFIELD("life support")+" part name: "+hubst:part:name+" " at (0,I). set j to j+1. set I to I+1.}
}
wait 0.
}.
Hi 🙂 Really great series! I love it, but i have little problem with your ckan mod list. When I install all mods with the ckan and run game it always freez on loanding screen. Can you help me please?
Don't know if you solved your wheel problem, but my guess is that the wheels you inverted the steering on also need the motor direction inverted.