subtle54 Posted November 13, 2017 Share Posted November 13, 2017 I got sick of keeping all my loot for arming settlers, and the process of giving it to them was tedious. The following Batch file was the result, it puts the armour (with a couple of mods) and weapon in their inventory, the game automatically adds the ammo. The code is EXAMPLE only, as the mods i've used on the armour are from Nexus downloads, but it does show you how to add mods to armour via console.So you can basically add modifications to any armour piece or weapon this way, so you could go really stupid and have a settlement full of tanks -grin- malemin.txt additem e517b ;Minuteman Outfit cf "ObjectReference.AttachModToInventoryItem" e517b 33000f55 ;attach Hybrid Weave MkV additem 11d3c3 ;Combat Armour cf "ObjectReference.AttachModToInventoryItem" 11d3c3 49000800 ;minuteman paint additem df42e ;Combat Rifle ;additem 316d4 ;Minuteman Hat additem 11e2c8 ;combat helmet additem 11d3c5 ;Combat Armour left leg additem 11d3c4 ;Combat Armour right leg additem 11d3c6 ;Combat Armour right arm additem 11d3c7 ;Combat Armour left armHow to use:Write your batch fileSave it as a .txt file to your main Fallout 4 directory, the one with Fallout4.exe in it. IngameStand in front of the receiving settler, open consoleClick on Settler, so refid appearsType "bat nameoftextfile" (without the extension)close consoleTrade with Settler and activate all his new gear It might appear a long process on paper, it takes about 15 secs to completely arm a settler. (remember you only have to type the command once, the up arrow key recalls all your previous commands in the console. Hope someone finds this useful anyway. Link to comment Share on other sites More sharing options...
subtle54 Posted November 16, 2017 Author Share Posted November 16, 2017 Here's a revision to the batch file, it now auto-equips the items. A slightly revised procedure.1. Open trade window2. Open Console3. Select Settler4. Run batch file5. Close console6. Clean up inventory (optional)7. Close trade window additem e517b ;Minuteman Outfit cf "ObjectReference.AttachModToInventoryItem" e517b 34000f55 ;attach Hybrid Weave MkV equipitem e517b ;Minuteman Outfit additem 11d3c3 ;Combat Armour cf "ObjectReference.AttachModToInventoryItem" 11d3c3 49000800 ;minuteman paint equipitem 11d3c3 ;Combat Armour additem df42e ;Combat Rifle equipitem df42e ;Combat Rifle additem 11e2c8 ;combat helmet equipitem 11e2c8 ;combat helmet ;additem 316d4 ;Minuteman Hat additemitem 11d3c5 ;Combat Armour left leg equipitem 11d3c5 ;Combat Armour left leg additem 11d3c4 ;Combat Armour right leg equipitem 11d3c4 ;Combat Armour right leg additem 11d3c6 ;Combat Armour right arm equipitem 11d3c6 ;Combat Armour right arm additem 11d3c7 ;Combat Armour left arm equipitem 11d3c7 ;Combat Armour left arm Link to comment Share on other sites More sharing options...
Recommended Posts