From 5f20949713069c1f1027193dcf55088ad3351c66 Mon Sep 17 00:00:00 2001 From: Eusth Date: Fri, 20 Jan 2017 21:44:24 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5656e38..cfc4911 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,11 @@ Illusion Plugin Architecture (Reloaded) 3. Drag & drop the game exe onto **IPA.exe** 4. Start the game as usual +## How To Uninstall + +1. Drag & drop the game exe onto **IPA.exe** while holding Alt +2. Done + ## How To Develop 1. Create a new **Class Librar** C# project (.NET 2.0 to 3.5 (for LINQ)) @@ -17,8 +22,4 @@ Illusion Plugin Architecture (Reloaded) ## How To Keep The Game Patched -If you don't want to drag & drop the game exe onto IPA.exe everytime you replace CSharp-Assembly.dll, do this: - -1. Copy the file **Launcher.exe** from the **IPA** folder into your game folder -2. Name it like the game exe but append "_Patched" (e.g. **Game.exe** -> **Game_Patched.exe**) -3. Always start the game with the "_Patched" exe +When patching, IPA automatically creates a shortcut that keeps everything up-to-date. From dce4de792c63de7541a225230a23b269446ba826 Mon Sep 17 00:00:00 2001 From: Eusth Date: Sat, 21 Jan 2017 10:23:42 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index cfc4911..6a735eb 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ Illusion Plugin Architecture (Reloaded) 3. Drag & drop the game exe onto **IPA.exe** 4. Start the game as usual +To verify it worked, start the game with the `--verbose` flag. If a new console window opens with debug info, then you're good. + ## How To Uninstall 1. Drag & drop the game exe onto **IPA.exe** while holding Alt From 7a05849fba99c0fcce265263df17e1e7a4053797 Mon Sep 17 00:00:00 2001 From: Eusth Date: Sat, 21 Jan 2017 10:28:54 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 6a735eb..d2f437a 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,13 @@ To verify it worked, start the game with the `--verbose` flag. If a new console ## How To Keep The Game Patched When patching, IPA automatically creates a shortcut that keeps everything up-to-date. + +## Arguments + +`IPA.exe file-to-patch [arguments]` + +- `--launch`: Launch the game after patching +- `--revert`: Revert changes made by IPA (= unpatch the game) +- `--nowait`: Never keep the console open + +Unconsumed arguments will be passed on to the game in case of `--launch`.