Old Blueprint String

by DaveMcW

Load blueprint strings created in Factorio 0.14 and earlier

Content
6 years ago
0.13 - 0.16
140
Blueprints

i Open at start of game?

7 years ago

Is there a way to use this at start of game instead of waiting on research?

7 years ago

+1. I'm using a mod that gives me a blueprint at the start of the game but I don't see the button for loading a blueprint from string.

7 years ago
(updated 7 years ago)

For a workaround:
The code that checks if blueprints are researched is in the control.lua file.
Find
function init_gui(player)
if (not player.force.technologies["automated-construction"].researched) then
return
end

Put "-- " before the "return" line
Like so:
function init_gui(player)
if (not player.force.technologies["automated-construction"].researched) then
-- return
end
Doing so will comment out the part that stops the UI from showing. You could just remove everything between "if" and "end" but this is easier to undo.

7 years ago

Hello Guys

I did comment the line for the button to show at the start, but it only shows on a new game.
If I load a game it will not show.
Any ideas?
Thanks

New response