Helper library for working with SCP:SL plugins.
Includes various methods to make workflow easier and to shorten code.
Makes using Reflection and patching methods with Harmony simpler.
Note: this is a dependency, not a plugin.
- Download the Axwabo.Helpers.dll from the latest release
- Put the DLL into the EXILED dependencies folder (on Windows: %appdata%/EXILED/Plugins/dependencies/)
- Any plugins using this library should work after a server restart
- Download the Axwabo.Helpers-nw.dll from the latest release
- Put the DLL into the PluginAPI dependencies folder (on Windows: %appdata%/SCP Secret Laboratory/PluginAPI/port/dependencies/)
- Any plugins using this library should work after a server restart
You can static import the Axwabo.Helpers.Harmony.InstructionHelper class to generate CodeInstructions faster.
CodeInstruction examples:
Property/Method | Corresponding OpCode |
---|---|
This | ldarg.0 |
Return | ret |
Duplicate | dup |
Pop | pop |
Ldloc(index) | ldloc index |
Call(type, method) | call/callvirt |
The Call method automatically sets the opcode to callvirt if the specified method is virtual.
Extension methods provide a quick way to access private fields and methods.
To get a field's value, simply use the Get
extension method on an object.
Sample code:
Stopwatch stopwatch = Stopwatch.StartNew();
long rawTicks = stopwatch.Get<long>("elapsed"); // gets the value of the 'elapsed' field