using System; using System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.Versioning; using BepInEx; using Microsoft.CodeAnalysis; using On.RoR2; using RoR2; using UnityEngine; using UnityEngine.Networking; [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("LunarQoLMod")] [assembly: AssemblyConfiguration("Debug")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyInformationalVersion("1.0.0")] [assembly: AssemblyProduct("LunarQoLMod")] [assembly: AssemblyTitle("LunarQoLMod")] [assembly: AssemblyVersion("1.0.0.0")] namespace Microsoft.CodeAnalysis { [CompilerGenerated] [Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace System.Runtime.CompilerServices { [CompilerGenerated] [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] [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; } } } namespace LunarQoLMod { public static class BlueOrbGuarantor { public static void Init() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Expected O, but got Unknown TeleporterInteraction.Start += new hook_Start(TeleporterInteraction_Start); } private static void TeleporterInteraction_Start(orig_Start orig, TeleporterInteraction self) { orig.Invoke(self); self.shouldAttemptToSpawnShopPortal = true; } } [BepInPlugin("com.TuNombre.LunarQoLMod", "LunarQoLMod", "1.0.0")] public class MainPlugin : BaseUnityPlugin { public const string PluginGUID = "com.TuNombre.LunarQoLMod"; public const string PluginName = "LunarQoLMod"; public const string PluginVersion = "1.0.0"; private void Awake() { BlueOrbGuarantor.Init(); ZeroCostReroll.Init(); ((BaseUnityPlugin)this).Logger.LogInfo((object)"LunarQoLMod v1.0.0 se ha cargado correctamente."); } } public static class ZeroCostReroll { public static void Init() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Expected O, but got Unknown PurchaseInteraction.Awake += new hook_Awake(PurchaseInteraction_Awake); } private static void PurchaseInteraction_Awake(orig_Awake orig, PurchaseInteraction self) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Invalid comparison between Unknown and I4 orig.Invoke(self); if ((int)self.costType == 3) { ((Component)self).gameObject.AddComponent(); } } } public class ZeroCostEnforcer : MonoBehaviour { private PurchaseInteraction interaction = null; private void Awake() { interaction = ((Component)this).GetComponent(); } private void FixedUpdate() { if (NetworkServer.active && (Object)(object)interaction != (Object)null && interaction.cost != 0) { interaction.Networkcost = 0; } } } }