mirror of
https://github.com/LBPUnion/UnionPatcher.git
synced 2025-04-20 11:36:14 +00:00
22 lines
828 B
Markdown
22 lines
828 B
Markdown
# UnionPatcher
|
|
|
|
A tool that will take the official EBOOT of a LittleBigPlanet title and replace the server URLs with a custom one
|
|
|
|
## Prerequisites
|
|
* For running the console application, you will need the [.NET 6 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/6.0/runtime?utm_source=getdotnetcore&utm_medium=referral)
|
|
* You will need to know the server URL you wish to use
|
|
|
|
## Getting the latest build
|
|
You can obtain UnionPatcher builds via GitHub releases: https://github.com/LBPUnion/UnionPatcher/releases
|
|
|
|
## Building manually (Required for MacOS)
|
|
You will need the [.NET 6 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
|
|
|
|
```bash
|
|
git clone https://github.com/LBPUnion/UnionPatcher
|
|
cd UnionPatcher
|
|
dotnet build UnionPatcher.sln
|
|
#Running
|
|
cd UnionPatcher/bin/Debug/net6.0/
|
|
./LBPUnion.UnionPatcher
|
|
```
|