Decompiled source of Scrub Boombox v0.1.0

ScrubBoombox.dll

Decompiled 5 months ago
using 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.IgnoreSymbolStoreSequencePoints)]
[assembly: AssemblyTitle("ScrubBoombox")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ScrubBoombox")]
[assembly: AssemblyCopyright("Copyright ©  2024")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("34094423-d7e9-4df1-b355-235aa89ab60d")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace ScrubBoomBox;

[BepInPlugin("scrubcord.ScrubBoomBox", "Scrub Boombox", "0.1.0")]
[BepInProcess("Lethal Company.exe")]
[BepInDependency("ImoutoSama.PersonalBoombox", "1.1.0")]
public class ScrubBoomBoxPlugin : BaseUnityPlugin
{
	private const string modGUID = "scrubcord.ScrubBoomBox";

	private const string modName = "Scrub Boombox";

	private const string modVersion = "0.1.0";

	private readonly Harmony harmony = new Harmony("scrubcord.ScrubBoomBox");

	internal ManualLogSource logger;

	public ConfigEntry<bool> overridePriceFlagConfig;

	public ConfigEntry<int> overridePriceValueConfig;

	private void Awake()
	{
		logger = Logger.CreateLogSource("scrubcord.ScrubBoomBox");
		logger.LogInfo((object)"Plugin Scrub Boombox 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 obj = PersonalBoomboxPlugin.AddFromAssemblyDll(Assembly.GetExecutingAssembly().Location);
		obj.overridePriceFlag = overridePriceFlagConfig.Value;
		obj.overridePriceValue = overridePriceValueConfig.Value;
	}

	public ConfigEntry<int> ConfigBindClamp(string section, string key, int defaultValue, string description, int min, int max)
	{
		ConfigEntry<int> obj = ((BaseUnityPlugin)this).Config.Bind<int>(section, key, defaultValue, description);
		obj.Value = Mathf.Clamp(obj.Value, min, max);
		return obj;
	}
}