Space Engineers

Space Engineers

Taleden's Inventory Manager
newscientist 2017 年 8 月 20 日 下午 9:52
Adding Canvas and Parachute Compatibility
I decided to not wait for compatibility with parachutes so I did it myself.

New item types are automatically discovered by TIM so no need to add an entry for canvas into the script itself. It should appear in INVEN and QUOTA LCDs automatically. You may need to refresh the QUOTA LCD for it to show up.

To add basic compatibility with parachute hatches add the following to line 2154
ScanBlocks<IMyParachute>();
It should look like this:
ScanBlocks<IMyUserControllableGun>(); ScanBlocks<IMyParachute>(); // if we found any new item type/subtypes, re-sort the lists
This adds tag autocomplete and automatic item transfer as well as other inventory features.

To prevent TIM from trying to transfer items other than canvas to parachute hatches first add a plus sign "+" to the end of line 126.
Then add the following to a new line underneath line 126:
MOB+"Parachute:Ingot,Ore,OxygenContainerObject,PhysicalGunObject,AmmoMagazine,GasContainerObject,Component/Construction,Component/MetalGrid,Component/InteriorPlate,Component/SteelPlate,Component/Girder,Component/SmallTube,Component/LargeTube,Component/Motor,Component/Display,Component/BulletproofGlass,Component/Superconductor,Component/Computer,Component/Reactor,Component/Thrust,Component/GravityGenerator,Component/Medical,Component/RadioCommunication,Component/Detector,Component/Explosives,Component/Scrap,Component/SolarCell,Component/PowerCell"
This will put the script over the size limit so just delete a couple of words from the second line of the script. The reason this list of restrictions is so long is because this block only accepts a single type of component, which is unique in the game as far as I know.

Let me know if you have any problems with this fix and I'll do what I can to help.

P.S. This seems to work with small grid parachute hatches despite the bug that prevent them from transfering canvas normally.
最后由 newscientist 编辑于; 2017 年 8 月 20 日 下午 10:03
< >
正在显示第 1 - 2 条,共 2 条留言
Auynonymous 2017 年 8 月 26 日 下午 5:07 
wat?
newscientist 2017 年 8 月 26 日 下午 8:11 
引用自 SmackDabTKB
wat?
Is there anything in the guide that isn't clear? I wrote it for those who are comfortable with editing scripts. I posted this because it seems unlikely that this script will get a feature update anytime soon.
< >
正在显示第 1 - 2 条,共 2 条留言
每页显示数: 1530 50