amokrun1 Posted February 6, 2019 Share Posted February 6, 2019 (edited) I want to create an entry in a terminal that acts like a schematic where once it is accessed and read, it grants the ability to craft something at the chem station. I have looked at other similar instances of it in the game and tried mimicking what I found but without any luck. I know that there is a GetGlobalValue as a condition for the item to be crafted but I cannot figure out what the script is for the terminal entry. Can anyone nudge me in the right direction? EDIT: I found another terminal in Far Harbor that does exactly what I need, all I need is to just access the script, but I get a failed to load script error in the window. It seems to have this problem with just the DLCs, not the base game. How can I get this error resolved? Edited February 6, 2019 by amokrun1 Link to comment Share on other sites More sharing options...
SKKmods Posted February 6, 2019 Share Posted February 6, 2019 You probably need to unzip the DLC script files in ...\Fallout 4\Data\Scripts\Source\Base\ For the unlock terminal entry press the [properties] button and add a property/pointer to your global unlock variable. In the script window put GlobalVariableName.SetValue(1) assuming the construct object unlock condition is GetGlobalVariable GlobalVariableName == 1 Link to comment Share on other sites More sharing options...
amokrun1 Posted February 8, 2019 Author Share Posted February 8, 2019 You probably need to unzip the DLC script files in ...\Fallout 4\Data\Scripts\Source\Base\ For the unlock terminal entry press the [properties] button and add a property/pointer to your global unlock variable. In the script window put GlobalVariableName.SetValue(1) assuming the construct object unlock condition is GetGlobalVariable GlobalVariableName == 1Wow thanks, it worked! I had actually done exactly like you said but also included a lot of unnecessary stuff that was causing the problem. It seems to be much simpler than I thought. Link to comment Share on other sites More sharing options...
Recommended Posts