Decompiled source of DogShotgun v1.0.1

DogShotgun.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.Logging;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using Photon.Pun;
using UnityEngine;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("DogShotgun")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("DogShotgunCWH")]
[assembly: AssemblyTitle("DogShotgun")]
[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.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)]
	internal sealed class NullableAttribute : Attribute
	{
		public readonly byte[] NullableFlags;

		public NullableAttribute(byte P_0)
		{
			NullableFlags = new byte[1] { P_0 };
		}

		public NullableAttribute(byte[] P_0)
		{
			NullableFlags = P_0;
		}
	}
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)]
	internal sealed class NullableContextAttribute : Attribute
	{
		public readonly byte Flag;

		public NullableContextAttribute(byte P_0)
		{
			Flag = P_0;
		}
	}
	[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 DogPatch
{
	[HarmonyPatch(typeof(Attack_Dog))]
	[HarmonyPatch("Start")]
	internal class AttackDogStartPatch
	{
		private static void Postfix(ref Attack_Dog __instance)
		{
			Attack_Dog obj = __instance;
			obj.spread *= 3f;
			__instance.counter = 0f;
			__instance.fireRate = 4f;
		}
	}
	[HarmonyPatch(typeof(Attack_Dog))]
	[HarmonyPatch("RPCA_DogFire")]
	internal class AttackDogRPCPatch
	{
		private static void Prefix(ref Attack_Dog __instance, Vector3 pos, Vector3 dir)
		{
			//IL_0001: Unknown result type (might be due to invalid IL or missing references)
			//IL_0002: Unknown result type (might be due to invalid IL or missing references)
			//IL_0007: Unknown result type (might be due to invalid IL or missing references)
			//IL_000d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0019: Unknown result type (might be due to invalid IL or missing references)
			//IL_001e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0023: Unknown result type (might be due to invalid IL or missing references)
			//IL_0024: Unknown result type (might be due to invalid IL or missing references)
			//IL_0025: Unknown result type (might be due to invalid IL or missing references)
			//IL_0026: Unknown result type (might be due to invalid IL or missing references)
			//IL_002b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0033: Unknown result type (might be due to invalid IL or missing references)
			//IL_0034: Unknown result type (might be due to invalid IL or missing references)
			Quaternion val = Quaternion.LookRotation(dir);
			for (int i = 0; i < 20; i++)
			{
				Quaternion val2 = Quaternion.Euler(Random.insideUnitSphere * __instance.spread);
				val *= val2;
				Object.Instantiate<GameObject>(__instance.projectile, pos, val).GetComponent<Projectile>().Ignore(((Component)__instance).transform.root, 1f);
			}
		}
	}
	[HarmonyPatch(typeof(Attack_Dog))]
	[HarmonyPatch("Attack")]
	internal class AttackDogPatch
	{
		private static void Prefix(ref Attack_Dog __instance)
		{
			//IL_0065: Unknown result type (might be due to invalid IL or missing references)
			//IL_0079: Unknown result type (might be due to invalid IL or missing references)
			Attack_Dog obj = __instance;
			obj.counter += Time.deltaTime;
			if (!(__instance.aimLevel < 4f) && !(__instance.counter < __instance.fireRate))
			{
				__instance.counter = 0f;
				__instance.view.RPC("RPCA_DogFire", (RpcTarget)0, new object[2]
				{
					__instance.firePos.position,
					__instance.firePos.forward
				});
			}
		}
	}
}
namespace DogShotgunCWH
{
	[ContentWarningPlugin("DogShotgun", "1.0.0", false)]
	[BepInPlugin("DogShotgun", "DogShotgunCWH", "1.0.0")]
	public class DogShotgunCWH : BaseUnityPlugin
	{
		public static DogShotgunCWH Instance { get; private set; }

		internal static ManualLogSource Logger { get; private set; }

		internal static Harmony? Harmony { get; set; }

		private void Awake()
		{
			Logger = ((BaseUnityPlugin)this).Logger;
			Instance = this;
			Patch();
			Logger.LogInfo((object)"DogShotgun v1.0.0 has loaded!");
		}

		internal static void Patch()
		{
			//IL_000d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0012: Unknown result type (might be due to invalid IL or missing references)
			//IL_0018: Expected O, but got Unknown
			if (Harmony == null)
			{
				Harmony = new Harmony("DogShotgun");
			}
			Logger.LogDebug((object)"Patching...");
			Harmony.PatchAll();
			Logger.LogDebug((object)"Finished patching!");
		}

		internal static void Unpatch()
		{
			Logger.LogDebug((object)"Unpatching...");
			Harmony? harmony = Harmony;
			if (harmony != null)
			{
				harmony.UnpatchSelf();
			}
			Logger.LogDebug((object)"Finished unpatching!");
		}
	}
	public static class MyPluginInfo
	{
		public const string PLUGIN_GUID = "DogShotgun";

		public const string PLUGIN_NAME = "DogShotgunCWH";

		public const string PLUGIN_VERSION = "1.0.0";
	}
}
namespace DogShotgunCWH.Patches
{
	[HarmonyPatch(typeof(ShoppingCart))]
	public class ExampleShoppingCartPatch
	{
		[HarmonyPatch("AddItemToCart")]
		[HarmonyPostfix]
		private static void AddItemToCartPostfix(ShoppingCart __instance)
		{
			AccessTools.PropertySetter(typeof(ShoppingCart), "CartValue").Invoke(__instance, new object[1] { __instance.CartValue + new Random().Next(0, 100) });
		}
	}
}