Assert.Equal(expectedPath, actualPath);
1 Test Failed. Unexpected path.
Id: reloaded.universal.monitorThis project is a set of mods for Reloaded II Mod Loader that provides support for file redirection that can be used by other mods.
In other words, it makes games load files from your mod folders rather than the game folder.
- Redirector (Tutorial Here!): *Makes games/programs load different than original files.
- Monitor: *Prints out the files being accessed by the application.
- RedirectorMonitor: *Prints out the files being redirected by the redirector.
(Click to read individual mods' readmes)
- Add the
Reloaded.Universal.Redirector.Interfaces
NuGet package to your project. - Add the dependency
reloaded.universal.redirector
toModDependencies
in yourModConfig.json
. - In your
Start()
function, acquire the Controller_modLoader.GetController<IRedirectorController>()
For more information and best practices, refer to Reloaded-II Docs: Inter Mod Communication.
For an example, consider looking at Reloaded.Universal.Monitor
in this repository.