Space Engineers

Space Engineers

Ocen: 293
MoveIT Script [V 2.01, bugfix for non english versions]
   
Przyznaj nagrodę
Ulubione
Ulubione
Usuń z ulubionych
Rozmiar pliku
Zamieszczono
Zaktualizowano
5.529 KB
14 czerwca 2015 o 6:12
19 września 2015 o 3:57
Listy zmian: 4 ( zobacz )

Zasubskrybuj, aby pobrać
MoveIT Script [V 2.01, bugfix for non english versions]

Opis
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/
Popularne dyskusje Zobacz wszystkie (2)
8
23 kwietnia 2020 o 3:54
Temp Fix for Stable 1.144.
Bobisback
1
13 września 2019 o 16:06
Can you fix it for the current version? :-)
Master_Nick
Komentarzy: 248
Unruly 8 listopada 2021 o 15:01 
Mojo 15 czerwca 2021 o 14:54 
Glaixber 2 maja 2021 o 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 kwietnia 2021 o 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 grudnia 2020 o 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 kwietnia 2020 o 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 lutego 2020 o 5:56 
Adding the info below did not fix it for me. Anyway someone could post the full working script somewhere?
dogma 2 lutego 2020 o 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 października 2019 o 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 sierpnia 2019 o 12:06 
Hey getting the same Error, any Fix for that? :-)