RoNin1971 Posted April 6, 2023 Share Posted April 6, 2023 As for storing weapons and armor: I'm looking into creating a 'shelter' mod (as requested by somebody else).The mod is supposed to let you build a 'hatch' inside each settlement, which links to (one and the same) shelter. This shelter (which I already finnished) contains all workbenches, a stove, clean water, a bed & some storage space. Although its not linked to anything else for resource sharing, anything you bring here will stay here and be accessible at any settlement you build the "hatch" in. Because of this, which could be regarded as 'cheat', I'm thinking about adding a version without all that, but this could help you with your weapon storage. Link to comment Share on other sites More sharing options...
ImmortalAbsol Posted April 11, 2023 Share Posted April 11, 2023 Failing the inventory thing a non-raider equivalent of the Overboss tribute chest would be cool, the caps gather in a craftable safe.yee id take that as a second option that aside though i swear u are like the nexus equivalent of justin y lol. I see u everywhere, u even on commented on one of my modsI hope that's not bad haha.There's a few reasons lol.I've had Nexus people recognise me on Twitch and Instagram aha :') Link to comment Share on other sites More sharing options...
Fantafaust Posted April 16, 2023 Share Posted April 16, 2023 This mod might be of interest, though it isn't supply line specific: Global Stash (Connect all Workshops and Workbenches) by SKK Link to comment Share on other sites More sharing options...
hereami Posted April 24, 2023 Share Posted April 24, 2023 (edited) hey so, all of this flies over my head since I really don't understand coding but, are yall just talking hypotheticals or r u thinking about making this? sorry if this message comes off as rude btw I just wasnt sure how to askHaha.., fair. Well, i was under impression that Fantafaust was interested and obviously is capable. I could do, but unable to make sure that scripts work as should, so it would be a troublesome process of testing.In particular, not sure how Inventory filter should be applied to RefCollection - either for each member or just once. Scriptname Workshops_MoveCapsScript extends RefCollectionAlias Const Form Property Caps001 Auto Const Event OnAliasInit() ; do we need to address each member of collection here? Assuming usage in game, OnAliasInit fires for Collection and not each member? int i = 0 While (i < Self.GetCount()) (Self.GetAt(i) as ScriptObject).AddInventoryEventFilter(Caps001) i = i + 1 EndWhile ; or just do at once for collection as parent ScriptObject? AddInventoryEventFilter(Caps001) EndEvent Event OnItemAdded(ObjectReference akSenderRef, Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer) ; move Caps to Player when dropped in a Workshop ObjectReference PlayerRef = Game.GetPlayer() if (akSourceContainer != PlayerRef) ; just in case akSenderRef.RemoveItem(akItemToRemove = Caps001, aiCount = aiItemCount, abSilent = false, akOtherContainer = PlayerRef) endif EndEvent Basically, this script made working and a StartGame dummy quest with a RefColl alias filled by Condition HasKeyword(WorkshopKeyword) is all what's needed for basic functionality. Anyone can do with just ground knowledge of CK. Edited April 24, 2023 by hereami Link to comment Share on other sites More sharing options...
Fantafaust Posted April 24, 2023 Share Posted April 24, 2023 If the mod I linked above isn't sufficient, I'll take this on. SKK's mod goes further than I would really, since I would have just transferred items as hereami is intending in the script above. Link to comment Share on other sites More sharing options...
virgoproxyy Posted April 24, 2023 Author Share Posted April 24, 2023 I've actually tried the mod linked above in the past but it didn't seem to get along very well with another mod I use, sorry for the late reply on that it just occurred to me today that I hadn't checked my posts in awhile Link to comment Share on other sites More sharing options...
ImmortalAbsol Posted April 27, 2023 Share Posted April 27, 2023 If you can identify which mod then maybe only a patch request is in order. Link to comment Share on other sites More sharing options...
STR4NGERxD4NGER Posted April 30, 2023 Share Posted April 30, 2023 Have you tried using IDEKs Logistics Station? It allows you to designate a container for collection (typically a workshop) and it will auto collect everything from connected workshops. Setup (in game): Build logistics desk and assign settler (1 per settlement) this will automatically create supply lines. Activate the desk (not the terminal) and select the "Set Up Locker". This will give you a misc. item that you should put in your workbench. Open the terminal and go to collection settings and enable global collection. By default it will periodically collect everything from deposit it in your selected workshop. Build a storage locker in each settlementThe storage locker will allow you to access the storage from any other settlement that is part of the network. Everything from Weapons to Ammo will be accessible. It also allows you to disable attacks at your settlment with designated for storage keeping your stuff safe. I do suggest setting the locker where there are no naturally accuring enemies. https://www.nexusmods.com/fallout4/mods/48389 Link to comment Share on other sites More sharing options...
Fantafaust Posted May 31, 2023 Share Posted May 31, 2023 There's also this: Item Transfer Station Link to comment Share on other sites More sharing options...
Recommended Posts