Skip to content

Jurij15/FortniteLauncher

Repository files navigation

Outdated New Repo Here

FortniteLauncher

A simple launcher for LawinServer, made in C# with ModernWPF

If you encounter any issues, scroll down to Troubleshooting section

As of 1.0.0.1, launcher only works on builds 1.7.2 to 5.41!

Full tutorial

tutorial vid

Setup

Prerequisites

Proxy setup

Even though proxy is included in the launcher, it can cause issues. I recommend using Fiddler.

Fiddler setup

  • Make sure you have installed Fiddler from the above link,
  • Open Fiddler and click on the FiddlerScript tab
  • Delete everything that is there and paste this script in:
import System;
import System.Web;
import System.Windows.Forms;
import Fiddler;

class Handlers
{ 
    static function OnBeforeRequest(oSession: Session) {
        if (oSession.hostname.Contains("ol.epicgames.com")) {
            if (oSession.HTTPMethodIs("CONNECT"))
            {
                oSession["x-replywithtunnel"] = "FortniteTunnel";
                return;
            }
            oSession.fullUrl = "http://localhost:3551" + oSession.PathAndQuery;
        }
    }
}
  • Go to Tools>Options
  • Click on the HTTPS tab
  • Check Capture HTTPS CONNECTs and Decrypt HTTPS CONNECTs
  • Click Actions>Trust Root Certificate
  • Click YES on all dialogs that show up
  • Close Options
  • You're now ready to use LawinServer

Installing

  • Download the latest one in Releases and extract it
  • Video : tbd

Compiling

  • Download source or clone
  • Compile with .NET 6

Troubleshooting

Launcher issues

  • Make sure you installed .NET 6.0 from above link ###Common issues

Launcher or proxy is not starting or closes after started

  • Make sure you installed .NET 6.0 from above link

LawinServer issues

Common issues:

My internet is not working after using LawinServer

  • Disable proxy in Windows settings
  • Video in Lawin's discord

Fortnite is showing Unable to login to Fortnite servers

  • Restart the launcher
  • Use Fiddler instead of the built-in proxy

Credits

Contact

  • Jurij15#1867 on Discord