Space Engineers

Space Engineers

78 个评价
MArmOS 3.0 Example: Welding Crane
   
奖励
收藏
已收藏
取消收藏
Type: Blueprint
文件大小
发表于
更新日期
854.226 KB
2016 年 11 月 12 日 下午 11:03
2017 年 11 月 17 日 下午 6:11
12 项改动说明 ( 查看 )

订阅以下载
MArmOS 3.0 Example: Welding Crane

在 Timotei~ 的 1 个合集中
MArmOS V3.0 Examples
10 件物品
描述
This is a welding crane that I made to show the new potential that MArmOS 3.0 has to offer.

You can use it to reverse engineer the arm and make your own.

You can find the script here.

And you can find the script's steam guide here.



Arm Definition:
var Prefix = "WC: "; new Rotor( Name: Prefix+"Motor1", Axis: "Z" ); new SolidLG( 0, 0, 3 ); new Rotor( Name: Prefix+"Motor2", Axis: "-Y" ); new SolidLG( -7, 0, 1 ); new Rotor( Name: Prefix+"Motor3", Axis: "Y" ); new SolidLG( 9, 0, 0 ); new Rotor( Name: Prefix+"Motor4", Axis: "Y" ); new SolidLG( -6, 0, 1 ); new Piston( Name: Prefix+"Piston1", Axis: "-X" ); new Rotor( Name: Prefix+"Motor5", Axis: "-X", OriMode: true ); new SolidSG( 4, 5, 0 ); new Rotor( Name: Prefix+"Motor6", Offset: 180, Axis: "Y", OriMode: true ); new Rotor( Name: Prefix+"Motor7", Axis: "X", OriMode: true ); new SolidSG( 7, 0, 0 ); new UserControl( Speed: 10, UseArmAsReference: true );
20 条留言
Corki99 2024 年 12 月 30 日 下午 10:18 
Has the blueprint been corrupted? I can't get it to load into the game
Sokolovsito 2021 年 7 月 16 日 上午 8:33 
Does someone know how can I paste the crane in a station and get it to work?
Trik 2021 年 2 月 12 日 上午 5:35 
omg I just fried my brains with this script
JohnyRico 2020 年 11 月 7 日 下午 12:06 
Assemble 2 rotors An cockpit name = Arm Controlle, show error - no controller deifne O_О
Chuckles 2020 年 1 月 29 日 下午 9:33 
Does this arm definition work better for you? I believe your solids are off slightly, so the arm doesn't move exactly the way you'd expect it to.

var Prefix = "WC: ";
new Rotor( Name: Prefix+"Motor1", Axis: "Z" );
new SolidLG( 0, -1, 2 );
new Rotor( Name: Prefix+"Motor2", Axis: "-Y" );
new SolidLG( -8, 1, 1 );
new Rotor( Name: Prefix+"Motor3", Axis: "Y" );
new SolidLG (10, 1, 0);
new Rotor( Name: Prefix+"Motor4", Axis: "Y" );
new SolidLG( -5, 0, 0 );
new Piston( Name: Prefix+"Piston1", Axis: "-X" );
new Rotor( Name: Prefix+"Motor5", Axis: "-X", OriMode: 1 );
new SolidSG( -4, 5, 0 );
new Rotor( Name: Prefix+"Motor6", Offset: 180, Axis: "Y", OriMode: 1 );
new Rotor( Name: Prefix+"Motor7", Axis: "X", OriMode: 1 );
new SolidSG( 7, 0, 0 );
new UserControl( Speed: 10, UseArmAsReference: true );
A Very Stoned Frog 2019 年 10 月 25 日 下午 6:04 
can u pick heavy ♥♥♥♥ up wiith this script
im making a base layer
sneakyzebra1 2019 年 3 月 19 日 下午 7:33 
So im trying to reverse engineer this thing and i cant seem to get it to work. i even tried ripping it off your truck and pasting the arm onto a different grid as well as the timer block,control seat and PB. I can get the arm to go home but i cant control it like i can on the truck. What argument are you using in the timer block? Also, if i were to change up the length of some of the conveyors and paste the pistons and rotors from your blueprint back on, do you think would it still operate? or would it be a waste of time because i would have to change something in the PB
zeckmon3 2018 年 10 月 1 日 下午 9:38 
Wow this is AMAZING the worst part is seting it up but once its working wow
Timotei~  [作者] 2017 年 11 月 17 日 下午 6:12 
Updated for 1.185 :steamhappy:
Timotei~  [作者] 2017 年 6 月 16 日 上午 7:55 
@Ribena Good observation. But in this case, since the Rotor is rotating along the same axis, it doesn't make a big difference. The coordinate system is only shifted 2.5 m lower. The 0 would actually be inside the platform instead of on top of it. But I guess I should still fix that when I get free time to avoid confusion. Thanks for reporting.