Files
2025-03-12 16:24:48 +01:00

31 lines
1.3 KiB
Markdown

# MacFNLauncher
## - Made to Launch 13.40 with custom Sinum, MacOS Compatible version found here: https://github.com/ApfelTeeSaft/SinumMacOS
## - Patch Binary using insert_dylib
# Step 1: Clone and build the insert_dylib tool
```
git clone https://github.com/Tyilo/insert_dylib
cd insert_dylib
xcodebuild
cd build/Release
```
# Step 2: Use the tool to modify the app's executable (example)
```
./insert_dylib --all-yes "/Users/apfelteesaft/Desktop/iOS/build/libNova.dylib" \
"/Volumes/Untitled/macFN/FortniteGame/Binaries/Mac/FortniteClient-Mac-Shipping.app/Contents/MacOS/FortniteClient-Mac-Shipping" \
"/Volumes/Untitled/macFN/FortniteGame/Binaries/Mac/FortniteClient-Mac-Shipping.app/Contents/MacOS/FortniteClient-Mac-Shipping.modified"
```
# Step 3: Replace the original executable with the modified one (example)
```
mv "/Volumes/Untitled/macFN/FortniteGame/Binaries/Mac/FortniteClient-Mac-Shipping.app/Contents/MacOS/FortniteClient-Mac-Shipping.modified" \
"/Volumes/Untitled/macFN/FortniteGame/Binaries/Mac/FortniteClient-Mac-Shipping.app/Contents/MacOS/FortniteClient-Mac-Shipping"
```
# Step 4: Copy your dylib into the app bundle (example)
```
cp "/Users/apfelteesaft/Desktop/iOS/build/libNova.dylib" \
"/Volumes/Untitled/macFN/FortniteGame/Binaries/Mac/FortniteClient-Mac-Shipping.app/Contents/MacOS/"
```