MissingMeshTV Posted November 10, 2016 Share Posted November 10, 2016 Hey NorthernNick! While poking around the YouTubes for soemthign totally unrelated, I stumbled across this tutorial by Darkfox127 that shows how to do pretty much what you want with no scripting! It's an older tutorial for Skyrim, but I see no reason it won't work for FO4 other than replacing the "dummy" default script he mentions with the DefaultActivateLinkedRefOnActivate script mentioned by LoneRaptor. All else seems the same as in FO4. It's so simple I had to do a facepalm for not thinking of it. No time to try this myself right now, but think it might be of some help to you. Link to comment Share on other sites More sharing options...
SoulMasterFinnigan Posted February 15, 2023 Share Posted February 15, 2023 I have sorted out a cloud storage system for my player homes , instead of having loads of containers around , Turn them to Activators. The CK has a script call DefaultLinkedRefOnActivate.Make Sure you have the keywords, WorkshopItemKeyword, WorkshopLinkContainer and WorkshopContainerKeyword.In the properties change the Link ref keyword to WorkshopLinkContainers. Object Ref under it choose your container. Then just go through all Activators you want to link to itLink Refs , WorkshopItemKeyWord, WorkshoplinkContainerIts Worked for me Link to comment Share on other sites More sharing options...
SKKmods Posted February 16, 2023 Share Posted February 16, 2023 You dont actually need any of those keywords on an activator, just a none keyword linkedref to the central storage. DefaultActivateLinkedRefOnActivate is a bit messy, this delivers abetter user experience by blocking button bounce; Event OnActivate(ObjectReference akActionRef) Self.BlockActivation(abBlocked = True, abHideActivateText = True) ObjectReference thisCentralStorage = Self.GetLinkedref(None) If (thisCentralStorage != None) thisCentralStorage.Activate(Game.GetPlayer()) EndIf Self.BlockActivation(abBlocked = False, abHideActivateText = False) EndEvent Standalone workBENCHEs will automatically use central storage if linkrefed using keyword WorkshopItemKeyword. Do not do this with workSHOPs or workSHOP connected workBENCHEs unless you understand exactly what you are doing to the game systems. Link to comment Share on other sites More sharing options...
SoulMasterFinnigan Posted February 16, 2023 Share Posted February 16, 2023 Button Bounce? Link to comment Share on other sites More sharing options...
SKKmods Posted February 16, 2023 Share Posted February 16, 2023 BlockActivation to avoid a player pressing a keyboard or mouse button multiple times to stack or queue calls. Link to comment Share on other sites More sharing options...
Recommended Posts