A Peaks of Yore. mod which disables the knockout animation in normal mode.
If you haven't installed BepInEx yet, follow the install instructions here.
- Download the latest BepInEx release here.
- The compressed zip will contain a
plugins
directory. - Copy the files in
plugins
toBepInEx/plugins
in your game directory.
If you haven't installed MelonLoader yet, follow the install instructions here:
- Download the latest MelonLoader release here.
- The compressed zip file will contain a
Mods
directory. - Copy the files from
Mods
toMods
in your game directory.
Whichever approach you use for building from source, the resulting
patcher and plugin can be found in bin/
.
The following configurations are supported:
- Debug-BepInEx
- Release-BepInEx
- Debug-MelonLoader
- Release-MelonLoader
To build with dotnet, run the following command, replacing with the desired value:
dotnet build -c <configuration>
To build with Visual Studio, open NoKnockouts.sln and build by pressing ctrl + shift + b, or by selecting Build -> Build Solution.
If you installed Peaks of Yore in a custom game location, you may require an extra file to configure the build so it knows where to find the Peaks of Yore game libraries.
The file must be in the root of this repository and must be called "GamePath.props".
Below gives an example where Peaks of Yore is installed on the F drive:
<Project>
<PropertyGroup>
<GamePath>F:\Games\Peaks of Yore</GamePath>
</PropertyGroup>
</Project>