Installing plugins in OpenBullet 2 is a straightforward process:
[BlockParam("Secret Key")] public string SecretKey get; set; = "key";
| | External Library | |---|---| | Adds new blocks visible in the Stacker UI, usable in both visual and LoliScript modes. | Exposes additional C# methods and types inside LoliScript, but does not add new UI blocks. | | Must be compiled as a .NET class library referencing RuriLib.dll . | A simple .NET 8 DLL placed in the Plugins folder. | | Can implement arbitrary logic, including HTTP requests, cryptography, data parsing, etc. | Best for leveraging existing NuGet packages (e.g., Humanizer, Newtonsoft.Json, OpenCV). |