Space Engineers

Space Engineers

Logic Block Card Reader
10件中 1-10 を表示
更新: 2021年1月7日 @ 19時04分

Added a new Small-Design card reader for both Small and Large Grids.

Card Readers can now be painted properly.

Added an additional command, MESSpawnPrefab, allowing you to spawn grids using MES and RivalAI

更新: 2021年1月7日 @ 17時44分

更新: 2021年1月7日 @ 17時28分

更新: 2020年12月26日 @ 7時47分

更新: 2020年12月23日 @ 22時46分

Fixed a couple of bugs.

Actions are no longer case sensitive:
Open, OPEN, OpEn,opeN are all equally valid.

Everything else, however, is case sensitive.

Fixed a bug with Timer Blocks.

更新: 2020年12月23日 @ 20時21分

更新: 2020年12月23日 @ 19時14分

更新: 2020年12月23日 @ 18時35分

更新: 2020年12月22日 @ 20時19分

Note: older blocks will have to be converted to the new logic block. The old subtype will remain in the mod for the time being so you can transfer over your scripts.

Big update to add an LCD screen to the block. Now you can display whatever you wish!

The Input for the block is marge larger now, and easier to use.

The block now only accepts 1 item at a time (though it'll still take a 'stack' of items, so be careful)

You can now tell the block to NOT consume an item. To do so, add a + at the end of the subtype ID. If a subtype has been registered as "Do not Consume" in this manner, you don't need to add the + any more (I'll give an example below).

New command: SpawnBlackSpider. Spawns...a black saberoid 10 meters behind the user. Use this...wisely?

Additional protections against crashing, hopefully less of an issue.


Example of new "Preserve Functionality"

To open a door that you want to require a Security Level 1 Keycard but NOT destroy on use:


KeycardT1+,open|Sliding Door;

Once an item has been flagged as "Preserve", it'll never be consumed by the logic block, so:

KeycardT1,open|Sliding Door;
KeycardT1,open|Gate1;
KeycardT1+,open|Gate2;

Will mark KeycardT1 to be preserved. It just has to have the + once.

更新: 2020年12月15日 @ 15時44分