Getting started
written by tevtongermany this guide is specific for 24.20 UEFN PIE
so to start modding you would need following things
Some basic Knowledge about Unreal engine such as creating BP's, Import audio files, etc
24.20 including UEFN Paks and Executable
Xdelta
Neonite
import System;
import System.Web;
import System.Windows.Forms;
import Fiddler;
class Handlers
{
static function OnBeforeRequest(oSession: Session) {
if (oSession.hostname.Contains("epicgames.com")) {
if (oSession.HTTPMethodIs("CONNECT"))
{
oSession["x-replywithtunnel"] = "FortniteTunnel";
return;
}
oSession.fullUrl = "http://localhost:5595" + oSession.PathAndQuery;
}
else if (oSession.hostname.Contains("epicgames.net")) {
if (oSession.HTTPMethodIs("CONNECT"))
{
oSession["x-replywithtunnel"] = "FortniteTunnel";
return;
}
oSession.fullUrl = "http://localhost:5595" + oSession.PathAndQuery;
}
else if (oSession.hostname.Contains("epicgames.dev")) {
if (oSession.HTTPMethodIs("CONNECT"))
{
oSession["x-replywithtunnel"] = "FortniteTunnel";
return;
}
oSession.fullUrl = "http://localhost:5595" + oSession.PathAndQuery;
}
}
}And you are pretty much done! I would Recommend you joining the Fortnite Modding hub since this guide will reference files and other stuff from there! https://discord.gg/wsTdHHseGP
you can do almost everything you want in uefn pie here is some things you could try out [[Creating Custom Skins]] [[Creating Music Packs]]
Credits:
The Goat that even made this possible: Boredcrow24 The guy who showed me how to import custom skins: Armoon The Skin used in [[Creating Custom Skins]] made by: Snoopy
Last updated