PlayFallout4Now

Fallout 4 Mods |

PlayFallout4Now

Skips the launcher menu when you start Fallout 4 through Steam.

This is easily accomplished by running the following console command from inside the Fallout 4 directory:

set SteamAppID=377160&Fallout4.exe

This is simply a wrapper for this command for those people who don’t know about batch files.

SOURCE CODE
———————
using System.Diagnostics;
namespace PlayFallout4Now
{
class Program
{
static void Main(string[] args)
{
var command = new ProcessStartInfo(“cmd”, @”/c set SteamAppID=377160&Fallout4.exe”);
command.WorkingDirectory = @”C:\Program Files (x86)\Steam\steamapps\common\Fallout 4″;
Process.Start(command);
}
}
}


Credits: Elmar le Grange
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...

This content was uploaded by website visitors. If you notice any mistake, please let us know.




You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *