Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
Decompiled source of Random Music Mix v1.0.1
RandomBoomBoxMix.dll
Decompiled 2 years agousing System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Versioning; using BepInEx; using BepInEx.Configuration; using BepInEx.Logging; using HarmonyLib; using PersonalBoombox; using UnityEngine; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)] [assembly: AssemblyTitle("RandomBoomBoxMix")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("RandomBoomBoxMix")] [assembly: AssemblyCopyright("Copyright © 2023")] [assembly: AssemblyTrademark("")] [assembly: ComVisible(false)] [assembly: Guid("9f90cfc6-98e3-4467-94af-2f7e7481b0cc")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] [assembly: AssemblyVersion("1.0.0.0")] namespace RandomBoomBoxMix; [BepInPlugin("Rappy.RandomBoomBoxMix", "Random BoomBox Mix", "1.0.1")] [BepInProcess("Lethal Company.exe")] [BepInDependency("ImoutoSama.PersonalBoombox", "1.1.1")] public class RandomBoomBoxMixPlugin : BaseUnityPlugin { private const string modGUID = "Rappy.RandomBoomBoxMix"; private const string modName = "Random BoomBox Mix"; private const string modVersion = "1.0.1"; private readonly Harmony harmony = new Harmony("Rappy.RandomBoomBoxMix"); internal ManualLogSource logger; public ConfigEntry<bool> overridePriceFlagConfig; public ConfigEntry<int> overridePriceValueConfig; private void Awake() { logger = Logger.CreateLogSource("Rappy.RandomBoomBoxMix"); logger.LogInfo((object)"Plugin Random BoomBox Mix has been added!"); overridePriceFlagConfig = ((BaseUnityPlugin)this).Config.Bind<bool>("General", "Override Price Flag", false, "If you want to override price of the boomboxes, you MUST set this to true."); overridePriceValueConfig = ConfigBindClamp("General", "Override Price Value", 30, "Overrides the price of the boomboxes by this value. Clamped from 0 to 1000.", 0, 1000); RequestData val = PersonalBoomboxPlugin.AddFromAssemblyDll(Assembly.GetExecutingAssembly().Location); val.overridePriceFlag = overridePriceFlagConfig.Value; val.overridePriceValue = overridePriceValueConfig.Value; } public ConfigEntry<int> ConfigBindClamp(string section, string key, int defaultValue, string description, int min, int max) { ConfigEntry<int> val = ((BaseUnityPlugin)this).Config.Bind<int>(section, key, defaultValue, description); val.Value = Mathf.Clamp(val.Value, min, max); return val; } }