Space Engineers

Space Engineers

Isy's Block Renaming Script
Showing 1-10 of 18 entries
< 1  2 >
Update: 28 Aug, 2023 @ 1:30pm

Version 1.6.4:

- Added: Implemented a new mode: defaultname. This sets all blocknames to their default, localized name.
- Fixed: Helptext formatting was fixed and yellow tint removed.

Update: 20 Feb, 2022 @ 12:26pm

- reupload

Update: 20 Feb, 2022 @ 12:24pm

Version 1.6.3:

- Fixed: The deletedata no longer requires 3 parameters. This was an oversight and was pointed out by BoompaBlubbah ( https://steamhost.cn/steamcommunity_com/profiles/76561198168517424 ) - thanks buddy!

Update: 26 Jan, 2021 @ 3:36pm

Version 1.6.2:

- Added/Changed: The gridfilter was added to all available commands and also the existing syntax was unified. (this was suggested by voidpointer)
- Changed: The addfront and addback commands won't add another string if the string already exists. (this was also suggested by voidpointer)
- Fixed: Autosort, regular sort and remove numbers sometimes replaced the wrong number of the block name. This is now fixed. (thx to Tubular for reporting this issue)
- Removed: The addfrontgrid and addbackgrid commands were removed because they were redundand due to the recent changes.
- The steam workshop guide was updated to the newest changes.

Update: 27 Apr, 2020 @ 5:20am

Version 1.6.1:

- Fixed: The rename command now leaves the numbers intact again as it should.
- Fixed: The removenumbers command does its job again - I derped, sorry ;)

Update: 19 Apr, 2020 @ 8:15am

Version 1.6.0:

- Added: Custom number length is back! You can now set whether or not automatic number length should be used and how long your numbers should be in the script config (default: false).
- Added: Execution time and instruction count of an operation are now shown at the end.
- Added: A new toggle was introduced to set, whether 'addfront' and 'addback' should add an additional space (default: true).
- Added: You can now copy the custom data from one block to another. This is especially useful for 'Special' containers of my Inventory Manager. The syntax is: 'copydata,BLOCKNAME,FILTER[,GRIDNAME]'. To avoid confusion, BLOCKNAME has to be as close as possible to the actual blockname of the block, you want to copy from. FILTER filters the blocks to copy to. As always, filter has support for substring matches, groups by using G:GROUPNAME and blocktypes by using T:TYPENAME (see description). GRIDNAME is optional specifies the grid you want to search for the blocks. All connected grids are used by default.
- Added: You can now delete the custom data of a block. The syntax is: 'deletedata,FILTER[,GRIDNAME]. The parameter FILTER filters the used blocks! This, again, has group and type support as well as substring matching.
- Changed: The tag for the LCD Output was changed to [IBR-main]. It is now also possible to show the script output on any block LCD, just like in my other script. Since this script doesn't run itself, the contents are only shown/updated, if you run a command.
- Fixed: The autosort crashed occasionally when the base was too big. It should now support much bigger bases!
- Fixed: The 'undo' command after using the 'rename' command didn't work as intended.

Update: 25 Apr, 2019 @ 12:35am

Version 1.5.1b:

- Quick little hotfix for rename command.

Update: 8 Apr, 2019 @ 4:08pm

Version 1.5.1:

- Changed: Adjusted the LCD screens to the newest API changes.

Update: 1 Apr, 2019 @ 12:48am

Version 1.5.0:

- Added: Undo function. You can now undo your last renaming operation by running the script with the argument 'undo'.
- Added: Group support. For every FILTER you can now use a group. To do that, you need to start the FILTER with 'G:', e.g.: 'G:Solar Rotors'
- Added: Type support. For every FILTER you can now use a blocktype/subtype. To do that, you need to start the FILTER with 'T:', e.g.: 'T:Assembler'
- Added: Added the FILTER option the 'rename', 'replace' and 'addfrongrid' commands.
- Added: Rudimentary LCD support. Every action of the script can now be shown on a LCD. Just append the keyword '!BRS' to the LCD's name.
- Internal: Added new helpfiles and instructions for the new commands inside the script.

Update: 15 Aug, 2018 @ 4:21pm

Version 1.4.3:

- Added: 'removenumbers' command. It is now possible to remove any block numbers with this command. Additionally you can specify a block filter for this command. For example: 'removenumbers,Assembler'. This will remove all block numbers from any found block containing the string 'Assembler'.
- Added: '!help' command. It is now possible to see the help text for every command by adding '!help' as another parameter. For example: 'autosort,!help' or 'addfront,!help'.
- Fixed: the script will no longer crash if the only specified command is a '!test', '!sort' or '!help' command.