Decompiled source of ConfigurableScrapper v1.0.1

ConfigurableScrapper.dll

Decompiled 2 weeks ago
using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Configuration;
using Microsoft.CodeAnalysis;
using On.RoR2;
using RoR2;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: TargetFramework(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]
[assembly: AssemblyCompany("ConfigurableScrapper")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("ConfigurableScrapper")]
[assembly: AssemblyTitle("ConfigurableScrapper")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
namespace Microsoft.CodeAnalysis
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace System.Runtime.CompilerServices
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
	internal sealed class RefSafetyRulesAttribute : Attribute
	{
		public readonly int Version;

		public RefSafetyRulesAttribute(int P_0)
		{
			Version = P_0;
		}
	}
}
namespace ConfigurableScrapper
{
	[BepInPlugin("com.Nuxlar.ConfigurableScrapper", "ConfigurableScrapper", "1.0.1")]
	public class ConfigurableScrapper : BaseUnityPlugin
	{
		public static ConfigEntry<int> maxItemsToScrap;

		private static ConfigFile CSConfig { get; set; }

		public void Awake()
		{
			//IL_0010: Unknown result type (might be due to invalid IL or missing references)
			//IL_001a: Expected O, but got Unknown
			//IL_0041: Unknown result type (might be due to invalid IL or missing references)
			//IL_004b: Expected O, but got Unknown
			CSConfig = new ConfigFile(Paths.ConfigPath + "\\com.Nuxlar.ConfigurableScrapper.cfg", true);
			maxItemsToScrap = CSConfig.Bind<int>("General", "Max Items To Scrap", 20, "What is the maximum amount of items a scrapper can scrap at once. Vanilla: 10");
			ScrapperController.Start += new hook_Start(ChangeScrapperValue);
		}

		private void ChangeScrapperValue(orig_Start orig, ScrapperController self)
		{
			self.maxItemsToScrapAtATime = maxItemsToScrap.Value;
			orig.Invoke(self);
		}
	}
}