Space Engineers

Space Engineers

293 arvostelua
MoveIT Script [V 2.01, bugfix for non english versions]
   
Palkinto
Lisää suosikkeihin
Lisätty suosikkeihin
Poista suosikeista
Tiedostokoko
Julkaistu
Päivitetty
5.529 KB
14.6.2015 klo 6.12
19.9.2015 klo 3.57
4 muutosilmoitusta ( näytä )

Tilaa ladataksesi
MoveIT Script [V 2.01, bugfix for non english versions]

Kuvaus
V 2.01: script now also works if you have set the game to run in other languages than english

Version 2.0 notes
Version 2.0 is here! The new version allows you to set pretty much every slider in the game, for example allowing you to change the color of lights, grav gen dimensions and loads of other stuff. Also setting text and exchanging images in text panels. See video #1 for some examples.
The V1.0 features - setting piston length, rotor angle, thruster override are of course still there.


Summary

This script aims to fix some weaknesses in SEs User Interface: it allows you to set a piston to a exact height, turn a rotor into a exact angle, set the acceleration of grav

gens and set the override of thrusters and gryoscope to an exact amount.
Hopefully Keen will at some day add this things directly to the User Interface, but until then this script will act as workaround.

You only need a single programmable block on your ship or station to handle *all* rotors and pistons etc.

See video #1 for some new examples showing off some of the new V 2.0 features.
See video #2 for some older example usages, based on script version 1.0. (Everything shown there is still supported in V2.0, command parameters are the same too)
Video #3 is by w4stedspace, showing a very cool hover / VTOL ship equipped with my script.

Full description

Seems like the Steam Workshop has a rather limited maxium length for this description field, not enough to describe all the new features. Great ...

See the full description on the Official Forum instead:
http://forums.keenswh.com/threads/moveit-script-v2-0-one-script-to-rule-them-all.7362111/
Suositut keskustelut Näytä kaikki (2)
8
23.4.2020 klo 3.54
Temp Fix for Stable 1.144.
Bobisback
1
13.9.2019 klo 16.06
Can you fix it for the current version? :-)
Master_Nick
248 kommenttia
Unruly 8.11.2021 klo 15.01 
Mojo 15.6.2021 klo 14.54 
Glaixber 2.5.2021 klo 9.14 
I still really miss this script, currently nothing on the workshop or vanilla can replace this, not even after 6 years... was so usefull.
Kaito 9.4.2021 klo 17.31 
It is not redundant at all. You would be able to use this to have hotbar buttons that set specific values on blocks.
DeltaWing 5.12.2020 klo 3.44 
Romulous75 this script is redundant, just ctrl click the sliders (don't ctrl click the ones in the settings menu as it'll crash your game)
Romulous 23.4.2020 klo 2.54 
Great idea, but: This script is completely borked. Compiles but with a lot of warnings even after GetGroupBlocks() fix then fails to run.
Restiphani 16.2.2020 klo 5.56 
Adding the info below did not fix it for me. Anyway someone could post the full working script somewhere?
dogma 2.2.2020 klo 11.07 
To remove errors you have to replace the GetGroupBlocks(..) method to:


List<IMyTerminalBlock> GetGroupBlocks(string name)
{
var group = GetGroup(name);
List<IMyTerminalBlock> blocks = new List<IMyTerminalBlock>();

if (group != null)
{
group.GetBlocks(blocks);
}

return blocks;
}
Bazil T Yat 11.10.2019 klo 8.21 
I can't figure out how to get this to work. It comes up with an error, and even if it didn't I don't know how to tell it to do anything...
Warmage 26.8.2019 klo 12.06 
Hey getting the same Error, any Fix for that? :-)