Fallout 4
0 of 0

File information

Last updated

Original upload

Created by

LazyGirl

Uploaded by

LazyGirl

Virus scan

Safe to use

Tags for this mod

About this mod

Just makes the Nuka World Red Rocket workshop usable from start.

Requirements
Permissions and credits
This mod just makes the workshop in the Nuka World normally not accessible until very late in the DLC available from start so you can set up a base to work from quickly.

WHAT IT DOES
Simply edits the attached check in the DLC04RedRocketWorkbenchScript attached to the workbench from

if DLC04PlayerKickedOut.GetValue() > 0
[code]

to

if (DLC04PlayerKickedOut.GetValue() > 0 || !(Game.GetPlayer().IsDead()))
[code]

And since the player most likely is alive when activating the workbench it'll evaluate to true making it enabled.

DISCLAIMER
Since the mod adds a new check rather than changing an existing it should not break anything. I haven't seen any checks towards the workbench to see if it's pre-maturely enabled and there most likely are none since there isn't anything in the vanilla game to do so. While I haven't played through the entire DLC (again) with this mod I have with the workshop unlocked early using console commands without problem including triggering/completing the late DLC quest to unlock it "normally". However, I do not rule out or guarantee there might be mods, game state or quest orders that might throw a wrench or entire toolbox into the machinery. Due to these numerous factors playing in I have no possibility to offer support if the mod doesn't work with your configuration (keep a save to revert to if it doesn't)  but if you find a conflict and know what the cause is specifically (e.g "Doing/not doing quest X or installing/removing mod Y fixed/broke it") feel free to post so other know. 

ALTERNATIVE NON-MOD METHOD
If you're uncomfortable with having base scripts edited you can use the console method previously mentioned to achieve the same by doing the following

1. Target workbench in console
2. Type "set DLC04PlayerKickedOut to 1"
3. Activate workbench
4. Type "set DLC04PlayerKickedOut to 0" in console.

Fourth point is not needed but I recommend it just as a precaution to make sure the value is reverted to its default.