using System; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.Versioning; using System.Security; using System.Security.Permissions; using System.Threading.Tasks; using BepInEx; using HarmonyLib; using Microsoft.CodeAnalysis; using WebSocketSharp; [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("SilkShock")] [assembly: AssemblyConfiguration("Debug")] [assembly: AssemblyDescription("Adds PiShock integration via the v4 MultiShock plugin DynamicShock")] [assembly: AssemblyFileVersion("0.1.0.0")] [assembly: AssemblyInformationalVersion("0.1.0+9405d0a8a339f89dd51226e89d28e98f743fa328")] [assembly: AssemblyProduct("SilkShock")] [assembly: AssemblyTitle("SilkShock")] [assembly: AssemblyMetadata("RepositoryUrl", "https://github.com/Aesteralias/SilkShock")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("0.1.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 System.Runtime.Versioning { [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class RequiresPreviewFeaturesAttribute : Attribute { public string? Message { get; } public string? Url { get; set; } public RequiresPreviewFeaturesAttribute() { } public RequiresPreviewFeaturesAttribute(string? message) { Message = message; } } } namespace System.Runtime.CompilerServices { [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class CallerArgumentExpressionAttribute : Attribute { public string ParameterName { get; } public CallerArgumentExpressionAttribute(string parameterName) { ParameterName = parameterName; } } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class CollectionBuilderAttribute : Attribute { public Type BuilderType { get; } public string MethodName { get; } public CollectionBuilderAttribute(Type builderType, string methodName) { BuilderType = builderType; MethodName = methodName; } } [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class CompilerFeatureRequiredAttribute : Attribute { public const string RefStructs = "RefStructs"; public const string RequiredMembers = "RequiredMembers"; public string FeatureName { get; } public bool IsOptional { get; set; } public CompilerFeatureRequiredAttribute(string featureName) { FeatureName = featureName; } } [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class InterpolatedStringHandlerArgumentAttribute : Attribute { public string[] Arguments { get; } public InterpolatedStringHandlerArgumentAttribute(string argument) { Arguments = new string[1] { argument }; } public InterpolatedStringHandlerArgumentAttribute(params string[] arguments) { Arguments = arguments; } } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class InterpolatedStringHandlerAttribute : Attribute { } [EditorBrowsable(EditorBrowsableState.Never)] [ExcludeFromCodeCoverage] internal static class IsExternalInit { } [AttributeUsage(AttributeTargets.Method, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class ModuleInitializerAttribute : Attribute { } [AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class OverloadResolutionPriorityAttribute : Attribute { public int Priority { get; } public OverloadResolutionPriorityAttribute(int priority) { Priority = priority; } } [AttributeUsage(AttributeTargets.Parameter, Inherited = true, AllowMultiple = false)] [ExcludeFromCodeCoverage] internal sealed class ParamCollectionAttribute : Attribute { } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class RequiredMemberAttribute : Attribute { } [AttributeUsage(AttributeTargets.Parameter, Inherited = false)] [EditorBrowsable(EditorBrowsableState.Never)] [ExcludeFromCodeCoverage] internal sealed class RequiresLocationAttribute : Attribute { } [AttributeUsage(AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Event | AttributeTargets.Interface, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class SkipLocalsInitAttribute : Attribute { } } namespace System.Diagnostics.CodeAnalysis { [AttributeUsage(AttributeTargets.Parameter, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class ConstantExpectedAttribute : Attribute { public object? Min { get; set; } public object? Max { get; set; } } [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class ExperimentalAttribute : Attribute { public string DiagnosticId { get; } public string? UrlFormat { get; set; } public ExperimentalAttribute(string diagnosticId) { DiagnosticId = diagnosticId; } } [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = false, AllowMultiple = true)] [ExcludeFromCodeCoverage] internal sealed class MemberNotNullAttribute : Attribute { public string[] Members { get; } public MemberNotNullAttribute(string member) { Members = new string[1] { member }; } public MemberNotNullAttribute(params string[] members) { Members = members; } } [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = false, AllowMultiple = true)] [ExcludeFromCodeCoverage] internal sealed class MemberNotNullWhenAttribute : Attribute { public bool ReturnValue { get; } public string[] Members { get; } public MemberNotNullWhenAttribute(bool returnValue, string member) { ReturnValue = returnValue; Members = new string[1] { member }; } public MemberNotNullWhenAttribute(bool returnValue, params string[] members) { ReturnValue = returnValue; Members = members; } } [AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class SetsRequiredMembersAttribute : Attribute { } [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class StringSyntaxAttribute : Attribute { public const string CompositeFormat = "CompositeFormat"; public const string DateOnlyFormat = "DateOnlyFormat"; public const string DateTimeFormat = "DateTimeFormat"; public const string EnumFormat = "EnumFormat"; public const string GuidFormat = "GuidFormat"; public const string Json = "Json"; public const string NumericFormat = "NumericFormat"; public const string Regex = "Regex"; public const string TimeOnlyFormat = "TimeOnlyFormat"; public const string TimeSpanFormat = "TimeSpanFormat"; public const string Uri = "Uri"; public const string Xml = "Xml"; public string Syntax { get; } public object?[] Arguments { get; } public StringSyntaxAttribute(string syntax) { Syntax = syntax; Arguments = new object[0]; } public StringSyntaxAttribute(string syntax, params object?[] arguments) { Syntax = syntax; Arguments = arguments; } } [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class UnscopedRefAttribute : Attribute { } } namespace BepInEx { [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)] [Conditional("CodeGeneration")] internal sealed class BepInAutoPluginAttribute : Attribute { public BepInAutoPluginAttribute(string? id = null, string? name = null, string? version = null) { } } } namespace BepInEx.Preloader.Core.Patching { [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)] [Conditional("CodeGeneration")] internal sealed class PatcherAutoPluginAttribute : Attribute { public PatcherAutoPluginAttribute(string? id = null, string? name = null, string? version = null) { } } } namespace SilkShock { [BepInPlugin("io.github.aesteralias.silkshock", "SilkShock", "0.1.0")] public class SilkShockPlugin : BaseUnityPlugin { [HarmonyPatch(typeof(PlayerData), "TakeHealth")] private class Take_Damge { private static void Prefix(int amount, int ___health) { if (amount > 0) { if (___health - amount <= 0) { Send($"{{\"Event_Name\":\"Silksong/Death\", \"Input\":{amount}}}"); } else { Send($"{{\"Event_Name\":\"Silksong/Damage\", \"Input\":{amount}}}"); } } } } [HarmonyPatch(typeof(DeliveryQuestItem), "TakeHit")] private class Bonk { [HarmonyPatch(new Type[] { })] private static void Prefix() { Send("{\"Event_Name\":\"Silksong/Bonk\"}"); } } private const string Exported_Default = "{\"Event_Name\":\"\", \"Register_Events\":[{\"Name\":\"Damage\",\"Group\":\"Silksong\",\"Description\":\"On taking damage, scaling with damage taken\",\"Registered_Event\":true,\"Label_X\":\"Masks\",\"Min_X\":1,\"Max_X\":9,\"X_Precision\":0,\"Values\":{\"intensity\":{\"Setup\":24,\"Value_Type\":0,\"String_Output\":\"\",\"Static_Value\":20,\"Dynamic_Value\":{\"Min_X\":1,\"Max_X\":9,\"Min_Y\":0,\"Max_Y\":100,\"Keyframes\":[{\"Input\":1,\"Output\":20,\"Interpolation\":0},{\"Input\":3,\"Output\":40,\"Interpolation\":0}],\"T_Name\":\"\",\"Group\":\"\",\"Description\":\"\",\"Label_X\":\"Masks\",\"X_Precision\":0,\"Label_Y\":\"Intensity\",\"Y_Precision\":0,\"Clamp_Min\":0,\"Clamp_Max\":100}},\"duration\":{\"Setup\":24,\"Value_Type\":1,\"String_Output\":\"\",\"Static_Value\":1.5,\"Dynamic_Value\":{\"Min_X\":1,\"Max_X\":9,\"Min_Y\":0.1,\"Max_Y\":15,\"Keyframes\":[{\"Input\":1,\"Output\":1,\"Interpolation\":0},{\"Input\":3,\"Output\":3,\"Interpolation\":0}],\"T_Name\":\"\",\"Group\":\"\",\"Description\":\"\",\"Label_X\":\"Masks\",\"X_Precision\":0,\"Label_Y\":\"Duration\",\"Y_Precision\":1,\"Clamp_Min\":0.1,\"Clamp_Max\":15}},\"delay\":{\"Setup\":0,\"Value_Type\":2,\"String_Output\":\"\",\"Static_Value\":3,\"Dynamic_Value\":null},\"chance\":{\"Setup\":0,\"Value_Type\":3,\"String_Output\":\"\",\"Static_Value\":100,\"Dynamic_Value\":null},\"failure\":{\"Setup\":7,\"Value_Type\":4,\"String_Output\":\"\",\"Static_Value\":10,\"Dynamic_Value\":null}},\"Ids\":[],\"Selection\":0,\"Command\":0},{\"Name\":\"Death\",\"Group\":\"Silksong/\",\"Description\":\"On death scaling with how much damage killed you.\",\"Registered_Event\":true,\"Label_X\":\"Damage\",\"Min_X\":1,\"Max_X\":9,\"X_Precision\":0,\"Values\":{\"intensity\":{\"Setup\":24,\"Value_Type\":0,\"String_Output\":\"\",\"Static_Value\":50,\"Dynamic_Value\":{\"Min_X\":1,\"Max_X\":9,\"Min_Y\":0,\"Max_Y\":100,\"Keyframes\":[{\"Input\":1,\"Output\":40,\"Interpolation\":0},{\"Input\":3,\"Output\":70,\"Interpolation\":0}],\"T_Name\":\"\",\"Group\":\"\",\"Description\":\"\",\"Label_X\":\"Damage\",\"X_Precision\":0,\"Label_Y\":\"Intensity\",\"Y_Precision\":0,\"Clamp_Min\":0,\"Clamp_Max\":100}},\"duration\":{\"Setup\":24,\"Value_Type\":1,\"String_Output\":\"\",\"Static_Value\":4,\"Dynamic_Value\":{\"Min_X\":1,\"Max_X\":9,\"Min_Y\":0.1,\"Max_Y\":15,\"Keyframes\":[{\"Input\":1,\"Output\":4,\"Interpolation\":0},{\"Input\":3,\"Output\":8,\"Interpolation\":0}],\"T_Name\":\"\",\"Group\":\"\",\"Description\":\"\",\"Label_X\":\"Damage\",\"X_Precision\":0,\"Label_Y\":\"Duration\",\"Y_Precision\":1,\"Clamp_Min\":0.1,\"Clamp_Max\":15}},\"delay\":{\"Setup\":0,\"Value_Type\":2,\"String_Output\":\"\",\"Static_Value\":3,\"Dynamic_Value\":null},\"chance\":{\"Setup\":0,\"Value_Type\":3,\"String_Output\":\"\",\"Static_Value\":100,\"Dynamic_Value\":null},\"failure\":{\"Setup\":7,\"Value_Type\":4,\"String_Output\":\"\",\"Static_Value\":10,\"Dynamic_Value\":null}},\"Ids\":[],\"Selection\":0,\"Command\":0},{\"Name\":\"Bonk\",\"Group\":\"Silksong/\",\"Description\":\"When hard colliding with terrain.\",\"Registered_Event\":false,\"Label_X\":null,\"Min_X\":null,\"Max_X\":null,\"X_Precision\":null,\"Values\":{\"intensity\":{\"Setup\":24,\"Value_Type\":0,\"String_Output\":\"\",\"Static_Value\":15,\"Dynamic_Value\":null},\"duration\":{\"Setup\":24,\"Value_Type\":1,\"String_Output\":\"\",\"Static_Value\":0.3,\"Dynamic_Value\":null},\"delay\":{\"Setup\":0,\"Value_Type\":2,\"String_Output\":\"\",\"Static_Value\":3,\"Dynamic_Value\":null},\"chance\":{\"Setup\":0,\"Value_Type\":3,\"String_Output\":\"\",\"Static_Value\":100,\"Dynamic_Value\":null},\"failure\":{\"Setup\":7,\"Value_Type\":4,\"String_Output\":\"\",\"Static_Value\":10,\"Dynamic_Value\":null}},\"Ids\":[],\"Selection\":0,\"Command\":0}]}"; private static readonly WebSocket Socket = new WebSocket("ws://localhost:4569/Aes-DynamicShock/Event", Array.Empty()); private static long next_attempt; public const string Id = "io.github.aesteralias.silkshock"; public static string Name => "SilkShock"; public static string Version => "0.1.0"; private void Awake() { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Expected O, but got Unknown Socket.OnOpen += Socket_OnOpen; Harmony val = new Harmony("Aes-SilkShock"); val.PatchAll(); Connect(); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Plugin " + Name + " (io.github.aesteralias.silkshock) has loaded!")); } private void Socket_OnOpen(object sender, EventArgs e) { Socket.Send("{\"Event_Name\":\"\", \"Register_Events\":[{\"Name\":\"Damage\",\"Group\":\"Silksong\",\"Description\":\"On taking damage, scaling with damage taken\",\"Registered_Event\":true,\"Label_X\":\"Masks\",\"Min_X\":1,\"Max_X\":9,\"X_Precision\":0,\"Values\":{\"intensity\":{\"Setup\":24,\"Value_Type\":0,\"String_Output\":\"\",\"Static_Value\":20,\"Dynamic_Value\":{\"Min_X\":1,\"Max_X\":9,\"Min_Y\":0,\"Max_Y\":100,\"Keyframes\":[{\"Input\":1,\"Output\":20,\"Interpolation\":0},{\"Input\":3,\"Output\":40,\"Interpolation\":0}],\"T_Name\":\"\",\"Group\":\"\",\"Description\":\"\",\"Label_X\":\"Masks\",\"X_Precision\":0,\"Label_Y\":\"Intensity\",\"Y_Precision\":0,\"Clamp_Min\":0,\"Clamp_Max\":100}},\"duration\":{\"Setup\":24,\"Value_Type\":1,\"String_Output\":\"\",\"Static_Value\":1.5,\"Dynamic_Value\":{\"Min_X\":1,\"Max_X\":9,\"Min_Y\":0.1,\"Max_Y\":15,\"Keyframes\":[{\"Input\":1,\"Output\":1,\"Interpolation\":0},{\"Input\":3,\"Output\":3,\"Interpolation\":0}],\"T_Name\":\"\",\"Group\":\"\",\"Description\":\"\",\"Label_X\":\"Masks\",\"X_Precision\":0,\"Label_Y\":\"Duration\",\"Y_Precision\":1,\"Clamp_Min\":0.1,\"Clamp_Max\":15}},\"delay\":{\"Setup\":0,\"Value_Type\":2,\"String_Output\":\"\",\"Static_Value\":3,\"Dynamic_Value\":null},\"chance\":{\"Setup\":0,\"Value_Type\":3,\"String_Output\":\"\",\"Static_Value\":100,\"Dynamic_Value\":null},\"failure\":{\"Setup\":7,\"Value_Type\":4,\"String_Output\":\"\",\"Static_Value\":10,\"Dynamic_Value\":null}},\"Ids\":[],\"Selection\":0,\"Command\":0},{\"Name\":\"Death\",\"Group\":\"Silksong/\",\"Description\":\"On death scaling with how much damage killed you.\",\"Registered_Event\":true,\"Label_X\":\"Damage\",\"Min_X\":1,\"Max_X\":9,\"X_Precision\":0,\"Values\":{\"intensity\":{\"Setup\":24,\"Value_Type\":0,\"String_Output\":\"\",\"Static_Value\":50,\"Dynamic_Value\":{\"Min_X\":1,\"Max_X\":9,\"Min_Y\":0,\"Max_Y\":100,\"Keyframes\":[{\"Input\":1,\"Output\":40,\"Interpolation\":0},{\"Input\":3,\"Output\":70,\"Interpolation\":0}],\"T_Name\":\"\",\"Group\":\"\",\"Description\":\"\",\"Label_X\":\"Damage\",\"X_Precision\":0,\"Label_Y\":\"Intensity\",\"Y_Precision\":0,\"Clamp_Min\":0,\"Clamp_Max\":100}},\"duration\":{\"Setup\":24,\"Value_Type\":1,\"String_Output\":\"\",\"Static_Value\":4,\"Dynamic_Value\":{\"Min_X\":1,\"Max_X\":9,\"Min_Y\":0.1,\"Max_Y\":15,\"Keyframes\":[{\"Input\":1,\"Output\":4,\"Interpolation\":0},{\"Input\":3,\"Output\":8,\"Interpolation\":0}],\"T_Name\":\"\",\"Group\":\"\",\"Description\":\"\",\"Label_X\":\"Damage\",\"X_Precision\":0,\"Label_Y\":\"Duration\",\"Y_Precision\":1,\"Clamp_Min\":0.1,\"Clamp_Max\":15}},\"delay\":{\"Setup\":0,\"Value_Type\":2,\"String_Output\":\"\",\"Static_Value\":3,\"Dynamic_Value\":null},\"chance\":{\"Setup\":0,\"Value_Type\":3,\"String_Output\":\"\",\"Static_Value\":100,\"Dynamic_Value\":null},\"failure\":{\"Setup\":7,\"Value_Type\":4,\"String_Output\":\"\",\"Static_Value\":10,\"Dynamic_Value\":null}},\"Ids\":[],\"Selection\":0,\"Command\":0},{\"Name\":\"Bonk\",\"Group\":\"Silksong/\",\"Description\":\"When hard colliding with terrain.\",\"Registered_Event\":false,\"Label_X\":null,\"Min_X\":null,\"Max_X\":null,\"X_Precision\":null,\"Values\":{\"intensity\":{\"Setup\":24,\"Value_Type\":0,\"String_Output\":\"\",\"Static_Value\":15,\"Dynamic_Value\":null},\"duration\":{\"Setup\":24,\"Value_Type\":1,\"String_Output\":\"\",\"Static_Value\":0.3,\"Dynamic_Value\":null},\"delay\":{\"Setup\":0,\"Value_Type\":2,\"String_Output\":\"\",\"Static_Value\":3,\"Dynamic_Value\":null},\"chance\":{\"Setup\":0,\"Value_Type\":3,\"String_Output\":\"\",\"Static_Value\":100,\"Dynamic_Value\":null},\"failure\":{\"Setup\":7,\"Value_Type\":4,\"String_Output\":\"\",\"Static_Value\":10,\"Dynamic_Value\":null}},\"Ids\":[],\"Selection\":0,\"Command\":0}]}"); } private static void Connect() { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Invalid comparison between Unknown and I4 if ((int)Socket.ReadyState != 1 && DateTime.UtcNow.Ticks > next_attempt) { next_attempt = DateTime.UtcNow.AddSeconds(10.0).Ticks; Task.Run(delegate { Socket.Connect(); }); } } private static void Send(string msg) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Invalid comparison between Unknown and I4 if ((int)Socket.ReadyState == 1) { Socket.Send(msg); } else { Connect(); } } } }