Space Engineers

Space Engineers

Logic Block Card Reader
10개 중 1~10개 표시 중
업데이트: 2021년 1월 7일 오후 7시 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일 오후 5시 44분

업데이트: 2021년 1월 7일 오후 5시 28분

업데이트: 2020년 12월 26일 오전 7시 47분

업데이트: 2020년 12월 23일 오후 10시 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일 오후 8시 21분

업데이트: 2020년 12월 23일 오후 7시 14분

업데이트: 2020년 12월 23일 오후 6시 35분

업데이트: 2020년 12월 22일 오후 8시 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일 오후 3시 44분