Skip to content

1. Installation

ALEX2014 edited this page Jun 27, 2025 · 2 revisions

Quick guide with the process of installing TimeStopDependency library.

  1. Get yourself up to date version of TimeStopDependency's DLL. You can either get it from releases or copy it from mod's folder in your Steam directory.
  2. Reference the DLL file in your IDE. It's the same process that you go through in order to reference game's DLLs.
  3. At this point you already should have ability to work with API, but you will need to add TimeStopDependency mod as dependency to your plugin. Do it by specifying whenever it has to be soft or hard dependency like so
[BepInDependency(TimeStopDependency.TimeStopDependency.PLUGIN_GUID, BepInDependency.DependencyFlags.HardDependency)]
[BepInDependency(TimeStopDependency.TimeStopDependency.PLUGIN_GUID, BepInDependency.DependencyFlags.SoftDependency)]

Example mod that was built by using this dependency can be found here.

Clone this wiki locally