Space Engineers

Space Engineers

Thermal Mechanics (see desc)
McCloud Jr 28 Jun, 2018 @ 3:02pm
Programing script for getting the temps
As the title says
< >
Showing 1-15 of 15 comments
Kinesi  [developer] 28 Jun, 2018 @ 10:54pm 
Are you looking for a script that takes all the thermal values and outputs them to an LCD?
Lunatic  [developer] 30 Jun, 2018 @ 3:39am 
this should display the ship's temperature in kelvins in the terminal
var temperature = Me.GetValue<float>("GridTemperature"); Echo("Grid Temperature : " + temperature.ToString() + " K");
Last edited by Lunatic; 30 Jun, 2018 @ 3:40am
rednas141 30 Jun, 2018 @ 7:33am 
and that u put into the lcd or in the programmable block?
Kinesi  [developer] 30 Jun, 2018 @ 12:40pm 
in the PB inside Void Main();
ronon_dex 27 Sep, 2018 @ 4:24pm 
how do you collect data from a thruster (because of tempeture reasons actually)
ronon_dex 27 Sep, 2018 @ 4:24pm 
like the above script but for thruster
ronon_dex 28 Sep, 2018 @ 1:10pm 
Originally posted by Ensou:
this should display the ship's temperature in kelvins in the terminal
var temperature = Me.GetValue<float>("GridTemperature"); Echo("Grid Temperature : " + temperature.ToString() + " K");
how to make it so that the script takes the override of a thruster and Echos it?
scallas 21 Oct, 2018 @ 11:36am 
Is there a way to access the radiators from programmable block / via script.
I would like a program that will turn radiator on and off depending on the temp of the ship.
Cheers
scallas
Georgik  [developer] 6 Dec, 2018 @ 2:08pm 
As rono_dex said, is there a way to find out how much heat certain block generate? That is something really neccessary to be able to handle heat at grid by script.
ronon_dex 31 Dec, 2018 @ 6:42pm 
kinda,but close enough.
I am a scripter advanced enough to figure it out now,
but 0% modder so Ill have to ask you if the script works
ronon_dex 31 Dec, 2018 @ 6:47pm 
*realizes heat generated is not detailed info inside blocks*
...
well, crap.
ronon_dex 31 Dec, 2018 @ 6:49pm 
still need help
because no matter how good scripter,you gotta be a modder in order to answer that question
but what my REAL question was how to make a script that did exactly this:
ronon_dex 31 Dec, 2018 @ 7:00pm 
void Main() { var thrusterInfo = GridTerminalSystem.GetBlockWithName("Ion thruster").DetailedInfo; var splitInfo = thrusterInfo.Split('\n'); var output = splitInfo[1]; string str = "detailed info at specific line is: "; Echo("info:" + thrusterInfo); Echo("\n\n" + str + output); }

Last edited by ronon_dex; 31 Dec, 2018 @ 7:01pm
ronon_dex 31 Dec, 2018 @ 7:03pm 
Originally posted by Georgik:
As rono_dex said, is there a way to find out how much heat certain block generate? That is something really neccessary to be able to handle heat at grid by script.
but still, please help


Originally posted by ronon_dex:
kinda,but close enough.
I am a scripter advanced enough to figure it out now,
but 0% modder so Ill have to ask you if the script works


Originally posted by ronon_dex:
*realizes heat generated is not detailed info inside blocks*
...
well, crap.
please help
< >
Showing 1-15 of 15 comments
Per page: 1530 50