Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
Decompiled source of Hunting v1.4.3
Hunting.dll
Decompiled 2 months ago
The result has been truncated due to the large size, download it to view full contents!
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.IO.Compression; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.Serialization; using System.Runtime.Versioning; using System.Security; using System.Security.Permissions; using System.Text.RegularExpressions; using BepInEx; using BepInEx.Bootstrap; using BepInEx.Configuration; using HarmonyLib; using Hunting.Functions; using Hunting.Patches; using JetBrains.Annotations; using Microsoft.CodeAnalysis; using ServerSync; using Splatform; using TMPro; using UnityEngine; using UnityEngine.UI; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] [assembly: AssemblyCompany("blacks7ar")] [assembly: AssemblyConfiguration("Release")] [assembly: AssemblyFileVersion("1.4.3")] [assembly: AssemblyInformationalVersion("1.0.0+b9837a44bfab3c9be80e0fe0f3d485463a88c11f")] [assembly: AssemblyProduct("Hunting")] [assembly: AssemblyTitle("Hunting")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.4.3.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 Hunting { [BepInPlugin("blacks7ar.Hunting", "Hunting", "1.4.3")] public class Plugin : BaseUnityPlugin { public enum DisplayOptions { Numerical, Percentage } private const string modGUID = "blacks7ar.Hunting"; public const string modName = "Hunting"; public const string modAuthor = "blacks7ar"; public const string modVersion = "1.4.3"; public const string modLink = "https://valheim.thunderstore.io/package/blacks7ar/Hunting/"; private static readonly Harmony _harmony = new Harmony("blacks7ar.Hunting"); private static readonly ConfigSync _configSync = new ConfigSync("blacks7ar.Hunting") { DisplayName = "Hunting", CurrentVersion = "1.4.3", MinimumRequiredVersion = "1.4.3" }; private static ConfigEntry<Toggle> _serverConfigLocked; private static ConfigEntry<float> _expGainFactor; public static ConfigEntry<float> _huntingYieldFactor; public static ConfigEntry<string> _tier1Meadows; public static ConfigEntry<int> _tier1MeadowsLevel; public static ConfigEntry<string> _tier2BlackForest; public static ConfigEntry<int> _tier2BlackForestLevel; public static ConfigEntry<string> _tier3Swamps; public static ConfigEntry<int> _tier3SwampsLevel; public static ConfigEntry<string> _tier4Mountains; public static ConfigEntry<int> _tier4MountainsLevel; public static ConfigEntry<string> _tier5Plains; public static ConfigEntry<int> _tier5PlainsLevel; public static ConfigEntry<string> _tier6Mistlands; public static ConfigEntry<int> _tier6MistlandsLevel; public static ConfigEntry<string> _tier7Ashlands; public static ConfigEntry<int> _tier7AshlandsLevel; public static ConfigEntry<string> _tier8DeepNorth; public static ConfigEntry<int> _tier8DeepNorthLevel; public static ConfigEntry<float> _detectionRadius; public static ConfigEntry<Toggle> _displayExpGained; public static ConfigEntry<Toggle> _displayEnemyHPEnable; public static ConfigEntry<int> _displayEnemyHPLevel; public static ConfigEntry<DisplayOptions> _displayEnemyHPOptions; private static ConfigEntry<int> _expLoss; public static ConfigEntry<Toggle> _useDropSystem; public static ConfigEntry<Toggle> _iconsOnly; public static ConfigEntry<int> _maxPin; public static ConfigEntry<KeyboardShortcut> _hidePinKey; public static bool _hidePins; private static Skill _hunting; public static HashSet<string> _CreatureList; private ConfigEntry<T> config<T>(string group, string name, T value, ConfigDescription description, bool synchronizedConfig = true) { //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Expected O, but got Unknown ConfigDescription val = new ConfigDescription(description.Description + (synchronizedConfig ? " [Synced with Server]" : " [Not Synced with Server]"), description.AcceptableValues, description.Tags); ConfigEntry<T> val2 = ((BaseUnityPlugin)this).Config.Bind<T>(group, name, value, val); _configSync.AddConfigEntry<T>(val2).SynchronizedConfig = synchronizedConfig; return val2; } private ConfigEntry<T> config2<T>(string group, string name, T value, string desc, bool synchronizedConfig = true) { //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Expected O, but got Unknown Hunting.Functions.ConfigurationManagerAttributes configurationManagerAttributes = new Hunting.Functions.ConfigurationManagerAttributes { CustomDrawer = TextBox }; return config(group, name, value, new ConfigDescription(desc, (AcceptableValueBase)null, new object[1] { configurationManagerAttributes }), synchronizedConfig); } public void Awake() { //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Expected O, but got Unknown //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Expected O, but got Unknown //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Expected O, but got Unknown //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Expected O, but got Unknown //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Expected O, but got Unknown //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Expected O, but got Unknown //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Expected O, but got Unknown //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Expected O, but got Unknown //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Expected O, but got Unknown //IL_0338: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Expected O, but got Unknown //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03d0: Expected O, but got Unknown //IL_0452: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Expected O, but got Unknown //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04ea: Expected O, but got Unknown //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Expected O, but got Unknown //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0604: Expected O, but got Unknown //IL_0620: Unknown result type (might be due to invalid IL or missing references) //IL_062b: Expected O, but got Unknown //IL_0647: Unknown result type (might be due to invalid IL or missing references) //IL_0652: Expected O, but got Unknown //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_0696: Expected O, but got Unknown //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06bd: Expected O, but got Unknown //IL_06eb: Unknown result type (might be due to invalid IL or missing references) //IL_06f6: Expected O, but got Unknown //IL_0756: Unknown result type (might be due to invalid IL or missing references) //IL_0761: Expected O, but got Unknown ((BaseUnityPlugin)this).Config.SaveOnConfigSet = false; _hunting = new Skill("Hunting", "deericon2.png"); _hunting.Description.English("Increase item yield when hunting wild animals and pins them on the minimap for easy hunting."); _hunting.Configurable = false; _serverConfigLocked = config("1- ServerSync", "Lock Configuration", Toggle.On, new ConfigDescription("If On, the configuration is locked and can be changed by server admins only.", (AcceptableValueBase)null, Array.Empty<object>())); _configSync.AddLockingConfigEntry<Toggle>(_serverConfigLocked); _huntingYieldFactor = config("2- Hunting", "Hunting Yield Factor", 2f, new ConfigDescription("Hunting yield factor at skill level 100.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(1f, 5f), Array.Empty<object>())); _detectionRadius = config("2- Hunting", "Detection Radius", 30f, new ConfigDescription("Detection radius for tracking down prey.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0f, 50f), Array.Empty<object>())); _useDropSystem = config("2- Hunting", "Use Drop System", Toggle.On, new ConfigDescription("If On, calculating the drops from preys will be handled by this mod.", (AcceptableValueBase)null, Array.Empty<object>())); _iconsOnly = config("2- Hunting", "Icons Only", Toggle.Off, new ConfigDescription("If On, only icons will be visible on the world map.", (AcceptableValueBase)null, Array.Empty<object>())); _maxPin = config("2- Hunting", "Max Pin", 10, new ConfigDescription("Max number of pins to be displayed on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 50), Array.Empty<object>())); _hidePinKey = config<KeyboardShortcut>("2- Hunting", "Hide Pin Hotkey", new KeyboardShortcut((KeyCode)102, (KeyCode[])(object)new KeyCode[1] { (KeyCode)308 }), new ConfigDescription("Quick hotkey to hide pins on the map", (AcceptableValueBase)null, Array.Empty<object>()), synchronizedConfig: false); _tier1Meadows = config2("3- Hunters Instinct", "Tier1 Meadows", "Deer,Boar,Neck,BOH_Hare_Brown,BOH_Hare_Native,BOH_Hare_DarkGrey,BOH_Hare_Exotic,BOH_Hare_White,Fox_TW", "Prefab names of creatures you want to track in meadows biome.\n(NOTE: You need to logout if you added additional creature while in-game)"); _tier1Meadows.SettingChanged += delegate { GenerateCreatureList(); }; _tier1MeadowsLevel = config("3- Hunters Instinct", "Tier1 Meadows Level", 10, new ConfigDescription("Required skill level needed to track down prey on meadows biome and pin them on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _tier2BlackForest = config2("3- Hunters Instinct", "Tier2 BlackForest", "Bjorn,Razorback_TW,BlackBear_TW", "Prefab names of creatures you want to track in blackforest biomes.\n(NOTE: You need to logout if you added additional creature while in-game)"); _tier2BlackForest.SettingChanged += delegate { GenerateCreatureList(); }; _tier2BlackForestLevel = config("3- Hunters Instinct", "Tier2 BlackForest Level", 20, new ConfigDescription("Required skill level needed to track down prey on blackforest biome and pin them on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _tier3Swamps = config2("3- Hunters Instinct", "Tier3 Swamp", "RottingElk_TW", "Prefab names of creatures you want to track in swamp biome.\n(NOTE: You need to logout if you added additional creature while in-game)"); _tier3Swamps.SettingChanged += delegate { GenerateCreatureList(); }; _tier3SwampsLevel = config("3- Hunters Instinct", "Tier3 Swamp Level", 30, new ConfigDescription("Required skill level needed to track down prey on swamp biome and pin them on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _tier4Mountains = config2("3- Hunters Instinct", "Tier4 Mountain", "Wolf,GrizzlyBear_TW", "Prefab names of creatures you want to track in mountain biome.\n(NOTE: You need to logout if you added additional creature while in-game)"); _tier4Mountains.SettingChanged += delegate { GenerateCreatureList(); }; _tier4MountainsLevel = config("3- Hunters Instinct", "Tier4 Mountain Level", 40, new ConfigDescription("Required skill level needed to track down prey on mountain biome and pin them on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _tier5Plains = config2("3- Hunters Instinct", "Tier5 Plains", "Unbjorn,Lox,Prowler_TW", "Prefab names of creatures you want to track in plains biome.\n(NOTE: You need to logout if you added additional creature while in-game)"); _tier5Plains.SettingChanged += delegate { GenerateCreatureList(); }; _tier5PlainsLevel = config("3- Hunters Instinct", "Tier5 Plains Level", 50, new ConfigDescription("Required skill level needed to track down prey on plains biome and pin them on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _tier6Mistlands = config2("3- Hunters Instinct", "Tier6 Mistlands", "Hare", "Prefab names of creatures you want to track in mistlands biome.\n(NOTE: You need to logout if you added additional creature while in-game)"); _tier6Mistlands.SettingChanged += delegate { GenerateCreatureList(); }; _tier6MistlandsLevel = config("3- Hunters Instinct", "Tier6 Mistlands Level", 60, new ConfigDescription("Required skill level needed to track down prey on mistlands biome and pin them on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _tier7Ashlands = config2("3- Hunters Instinct", "Tier7 Ashlands", "AshenScorpid_TW,AshenDimetrodon_TW,AshenDrake_TW,AshenCrab_TW", "Prefab names of creatures you want to track in ashlands biome.\n(NOTE: You need to logout if you added additional creature while in-game)"); _tier7Ashlands.SettingChanged += delegate { GenerateCreatureList(); }; _tier7AshlandsLevel = config("3- Hunters Instinct", "Tier7 Ashlands Level", 70, new ConfigDescription("Required skill level needed to track down prey on ashlands biome and pin them on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _tier8DeepNorth = config2("3- Hunters Instinct", "Tier8 DeepNorth", "ArcticBear_TW,ArcticWolf_TW,ArcticDrake_TW,ArcticSerpent_TW", "Prefab names of creatures you want to track in deepnorth biome.\n(NOTE: You need to logout if you added additional creature while in-game)"); _tier8DeepNorth.SettingChanged += delegate { GenerateCreatureList(); }; _tier8DeepNorthLevel = config("3- Hunters Instinct", "Tier8 DeepNorth Level", 80, new ConfigDescription("Required skill level needed to track down prey on deepnorth biome and pin them on the map.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _displayEnemyHPEnable = config("4- Hunters Vision", "Enable", Toggle.On, new ConfigDescription("If On, creatures health will be displayed in numerical or percentage value.", (AcceptableValueBase)null, Array.Empty<object>())); _displayEnemyHPOptions = config("4- Hunters Vision", "Display Creatures Health In", DisplayOptions.Percentage, new ConfigDescription("Displays creatures health in either numerical or percentage value.", (AcceptableValueBase)null, Array.Empty<object>())); _displayEnemyHPLevel = config("4- Hunters Vision", "Hunters Vision Level", 15, new ConfigDescription("Required skill level needed to display creatures health.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new Hunting.Functions.ConfigurationManagerAttributes { ShowRangeAsPercent = false } })); _displayExpGained = config("5- Skills Exp", "Display Exp Gain", Toggle.On, new ConfigDescription("Enable/Disable exp gain notification.", (AcceptableValueBase)null, Array.Empty<object>())); _expGainFactor = config("5- Skills Exp", "Exp Gain Factor", 1f, new ConfigDescription("Exp gain factor for Hunting skill.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0.01f, 5f), Array.Empty<object>())); _expGainFactor.SettingChanged += delegate { _hunting.SkillGainFactor = _expGainFactor.Value; }; _hunting.SkillGainFactor = _expGainFactor.Value; _expLoss = config("5- Skills Exp", "Exp Loss Amount", 0, new ConfigDescription("Skills exp loss on death.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), Array.Empty<object>())); _expLoss.SettingChanged += delegate { _hunting.SkillLoss = _expLoss.Value; }; _hunting.SkillLoss = _expLoss.Value; ((BaseUnityPlugin)this).Config.SaveOnConfigSet = true; ((BaseUnityPlugin)this).Config.Save(); GenerateCreatureList(); _hidePins = false; Assembly executingAssembly = Assembly.GetExecutingAssembly(); _harmony.PatchAll(executingAssembly); } public void Update() { //IL_0014: 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_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) Player localPlayer = Player.m_localPlayer; if (!Object.op_Implicit((Object)(object)localPlayer)) { return; } KeyboardShortcut value = _hidePinKey.Value; if (((KeyboardShortcut)(ref value)).IsDown() && ((Character)localPlayer).TakeInput() && !_hidePins) { _hidePins = true; ((Character)localPlayer).Message((MessageType)2, "Hunting tracker is turned Off.", 0, (Sprite)null); return; } value = _hidePinKey.Value; if (((KeyboardShortcut)(ref value)).IsDown() && ((Character)localPlayer).TakeInput() && _hidePins) { ((Character)localPlayer).Message((MessageType)2, "Hunting tracker is turned On.", 0, (Sprite)null); _hidePins = false; } } private void OnDestroy() { ((BaseUnityPlugin)this).Config.Save(); } private static void GenerateCreatureList() { HashSet<string> other = new HashSet<string>(_tier1Meadows.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); HashSet<string> other2 = new HashSet<string>(_tier2BlackForest.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); HashSet<string> other3 = new HashSet<string>(_tier3Swamps.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); HashSet<string> other4 = new HashSet<string>(_tier4Mountains.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); HashSet<string> other5 = new HashSet<string>(_tier5Plains.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); HashSet<string> other6 = new HashSet<string>(_tier6Mistlands.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); HashSet<string> other7 = new HashSet<string>(_tier7Ashlands.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); HashSet<string> other8 = new HashSet<string>(_tier8DeepNorth.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); HashSet<string> hashSet = new HashSet<string>(); hashSet.UnionWith(other); hashSet.UnionWith(other2); hashSet.UnionWith(other3); hashSet.UnionWith(other4); hashSet.UnionWith(other5); hashSet.UnionWith(other6); hashSet.UnionWith(other7); hashSet.UnionWith(other8); _CreatureList = hashSet; } private static void TextBox(ConfigEntryBase entryBase) { entryBase.BoxedValue = GUILayout.TextArea((string)entryBase.BoxedValue, (GUILayoutOption[])(object)new GUILayoutOption[2] { GUILayout.ExpandWidth(true), GUILayout.ExpandHeight(true) }); } } [PublicAPI] internal class Skill { public static class LocalizationCache { private static readonly Dictionary<string, Localization> localizations = new Dictionary<string, Localization>(); internal static void LocalizationPostfix(Localization __instance, string language) { Localization __instance2 = __instance; string key = Enumerable.FirstOrDefault(localizations, (KeyValuePair<string, Localization> l) => l.Value == __instance2).Key; if (key != null) { localizations.Remove(key); } if (!localizations.ContainsKey(language)) { localizations.Add(language, __instance2); } } public static Localization ForLanguage(string? language = null) { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Expected O, but got Unknown if (localizations.TryGetValue(language ?? PlayerPrefs.GetString("language", "English"), out Localization value)) { return value; } value = new Localization(); if (language != null) { value.SetupLanguage(language); } return value; } } [PublicAPI] public class LocalizeKey { private static readonly List<LocalizeKey> keys = new List<LocalizeKey>(); public readonly string Key; public readonly Dictionary<string, string> Localizations = new Dictionary<string, string>(); public LocalizeKey(string key) { Key = key.Replace("$", ""); keys.Add(this); } public void Alias(string alias) { Localizations.Clear(); if (!alias.Contains("$")) { alias = "$" + alias; } Localizations["alias"] = alias; if (Localization.m_instance != null) { Localization.instance.AddWord(Key, Localization.instance.Localize(alias)); } } public LocalizeKey English(string key) { return addForLang("English", key); } public LocalizeKey Swedish(string key) { return addForLang("Swedish", key); } public LocalizeKey French(string key) { return addForLang("French", key); } public LocalizeKey Italian(string key) { return addForLang("Italian", key); } public LocalizeKey German(string key) { return addForLang("German", key); } public LocalizeKey Spanish(string key) { return addForLang("Spanish", key); } public LocalizeKey Russian(string key) { return addForLang("Russian", key); } public LocalizeKey Romanian(string key) { return addForLang("Romanian", key); } public LocalizeKey Bulgarian(string key) { return addForLang("Bulgarian", key); } public LocalizeKey Macedonian(string key) { return addForLang("Macedonian", key); } public LocalizeKey Finnish(string key) { return addForLang("Finnish", key); } public LocalizeKey Danish(string key) { return addForLang("Danish", key); } public LocalizeKey Norwegian(string key) { return addForLang("Norwegian", key); } public LocalizeKey Icelandic(string key) { return addForLang("Icelandic", key); } public LocalizeKey Turkish(string key) { return addForLang("Turkish", key); } public LocalizeKey Lithuanian(string key) { return addForLang("Lithuanian", key); } public LocalizeKey Czech(string key) { return addForLang("Czech", key); } public LocalizeKey Hungarian(string key) { return addForLang("Hungarian", key); } public LocalizeKey Slovak(string key) { return addForLang("Slovak", key); } public LocalizeKey Polish(string key) { return addForLang("Polish", key); } public LocalizeKey Dutch(string key) { return addForLang("Dutch", key); } public LocalizeKey Portuguese_European(string key) { return addForLang("Portuguese_European", key); } public LocalizeKey Portuguese_Brazilian(string key) { return addForLang("Portuguese_Brazilian", key); } public LocalizeKey Chinese(string key) { return addForLang("Chinese", key); } public LocalizeKey Japanese(string key) { return addForLang("Japanese", key); } public LocalizeKey Korean(string key) { return addForLang("Korean", key); } public LocalizeKey Hindi(string key) { return addForLang("Hindi", key); } public LocalizeKey Thai(string key) { return addForLang("Thai", key); } public LocalizeKey Abenaki(string key) { return addForLang("Abenaki", key); } public LocalizeKey Croatian(string key) { return addForLang("Croatian", key); } public LocalizeKey Georgian(string key) { return addForLang("Georgian", key); } public LocalizeKey Greek(string key) { return addForLang("Greek", key); } public LocalizeKey Serbian(string key) { return addForLang("Serbian", key); } public LocalizeKey Ukrainian(string key) { return addForLang("Ukrainian", key); } private LocalizeKey addForLang(string lang, string value) { Localizations[lang] = value; if (Localization.m_instance != null) { if (Localization.instance.GetSelectedLanguage() == lang) { Localization.instance.AddWord(Key, value); } else if (lang == "English" && !Localization.instance.m_translations.ContainsKey(Key)) { Localization.instance.AddWord(Key, value); } } return this; } [HarmonyPriority(300)] internal static void AddLocalizedKeys(Localization __instance, string language) { foreach (LocalizeKey key in keys) { string value2; if (key.Localizations.TryGetValue(language, out string value) || key.Localizations.TryGetValue("English", out value)) { __instance.AddWord(key.Key, value); } else if (key.Localizations.TryGetValue("alias", out value2)) { __instance.AddWord(key.Key, Localization.instance.Localize(value2)); } } } } private class ConfigurationManagerAttributes { [UsedImplicitly] public string? Category; } [HarmonyPatch(typeof(Skills), "IsSkillValid")] private static class Patch_Skills_IsSkillValid { private static void Postfix(SkillType type, ref bool __result) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) if (!__result && skills.ContainsKey(type)) { __result = true; } } } private static readonly Dictionary<SkillType, Skill> skills; internal static readonly Dictionary<string, Skill> skillByName; private readonly string skillName; private readonly string internalSkillName; private readonly SkillDef skillDef; public readonly LocalizeKey Name; public readonly LocalizeKey Description; private float skillEffectFactor = 1f; private int skillLoss = 5; public bool Configurable; private static bool InitializedTerminal; private static Localization? _english; private static BaseUnityPlugin? _plugin; private static bool hasConfigSync; private static object? _configSync; public float SkillGainFactor { get { return skillDef.m_increseStep; } set { skillDef.m_increseStep = value; this.SkillGainFactorChanged?.Invoke(value); } } public float SkillEffectFactor { get { return skillEffectFactor; } set { skillEffectFactor = value; this.SkillEffectFactorChanged?.Invoke(value); } } public int SkillLoss { get { return skillLoss; } set { skillLoss = value; this.SkillLossChanged?.Invoke(value); } } private static Localization english => _english ?? (_english = LocalizationCache.ForLanguage("English")); private static BaseUnityPlugin plugin { get { //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Expected O, but got Unknown object obj = _plugin; if (obj == null) { BaseUnityPlugin val = (BaseUnityPlugin)Chainloader.ManagerObject.GetComponent((Type)Enumerable.First(Assembly.GetExecutingAssembly().DefinedTypes, (TypeInfo t) => t.IsClass && typeof(BaseUnityPlugin).IsAssignableFrom(t))); _plugin = val; obj = (object)val; } return (BaseUnityPlugin)obj; } } private static object? configSync { get { if (_configSync == null && hasConfigSync) { Type type = Assembly.GetExecutingAssembly().GetType("ServerSync.ConfigSync"); if ((object)type != null) { _configSync = Activator.CreateInstance(type, plugin.Info.Metadata.GUID + " SkillManager"); type.GetField("CurrentVersion").SetValue(_configSync, plugin.Info.Metadata.Version.ToString()); type.GetProperty("IsLocked").SetValue(_configSync, true); } else { hasConfigSync = false; } } return _configSync; } } public event Action<float>? SkillGainFactorChanged; public event Action<float>? SkillEffectFactorChanged; public event Action<float>? SkillLossChanged; public Skill(string englishName, string icon) : this(englishName, loadSprite(icon, 64, 64)) { } public Skill(string englishName, Sprite icon) { //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_003a: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Expected O, but got Unknown SkillType val = fromName(englishName); string text = new Regex("[^a-zA-Z]").Replace(englishName, "_"); skills[val] = this; skillByName[englishName] = this; skillDef = new SkillDef { m_description = "$skilldesc_" + text, m_icon = icon, m_increseStep = 1f, m_skill = val }; internalSkillName = text; skillName = englishName; Name = new LocalizeKey("skill_" + ((object)(SkillType)(ref val)).ToString()).English(englishName); Description = new LocalizeKey("skilldesc_" + text); } public static SkillType fromName(string englishName) { return (SkillType)Math.Abs(StringExtensionMethods.GetStableHashCode(englishName)); } static Skill() { //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Expected O, but got Unknown //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Expected O, but got Unknown //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Expected O, but got Unknown //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Expected O, but got Unknown //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Expected O, but got Unknown //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Expected O, but got Unknown //IL_01ab: Expected O, but got Unknown //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01da: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Expected O, but got Unknown //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_023c: Expected O, but got Unknown //IL_023c: Expected O, but got Unknown skills = new Dictionary<SkillType, Skill>(); skillByName = new Dictionary<string, Skill>(); InitializedTerminal = false; hasConfigSync = true; Harmony val = new Harmony("org.bepinex.helpers.skillmanager"); val.Patch((MethodBase)AccessTools.DeclaredMethod(typeof(FejdStartup), "Awake", (Type[])null, (Type[])null), (HarmonyMethod)null, new HarmonyMethod(AccessTools.DeclaredMethod(typeof(Skill), "Patch_FejdStartup", (Type[])null, (Type[])null)), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null); val.Patch((MethodBase)AccessTools.DeclaredMethod(typeof(Skills), "GetSkillDef", (Type[])null, (Type[])null), (HarmonyMethod)null, new HarmonyMethod(AccessTools.DeclaredMethod(typeof(Skill), "Patch_Skills_GetSkillDef", (Type[])null, (Type[])null)), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null); val.Patch((MethodBase)AccessTools.DeclaredMethod(typeof(Skills), "CheatRaiseSkill", (Type[])null, (Type[])null), new HarmonyMethod(AccessTools.DeclaredMethod(typeof(Skill), "Patch_Skills_CheatRaiseskill", (Type[])null, (Type[])null)), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null); val.Patch((MethodBase)AccessTools.DeclaredMethod(typeof(Skills), "CheatResetSkill", (Type[])null, (Type[])null), new HarmonyMethod(AccessTools.DeclaredMethod(typeof(Skill), "Patch_Skills_CheatResetSkill", (Type[])null, (Type[])null)), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null); val.Patch((MethodBase)AccessTools.DeclaredMethod(typeof(Localization), "LoadCSV", (Type[])null, (Type[])null), (HarmonyMethod)null, new HarmonyMethod(AccessTools.DeclaredMethod(typeof(LocalizeKey), "AddLocalizedKeys", (Type[])null, (Type[])null)), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null); val.Patch((MethodBase)AccessTools.DeclaredMethod(typeof(Terminal), "InitTerminal", (Type[])null, (Type[])null), new HarmonyMethod(AccessTools.DeclaredMethod(typeof(Skill), "Patch_Terminal_InitTerminal_Prefix", (Type[])null, (Type[])null)), new HarmonyMethod(AccessTools.DeclaredMethod(typeof(Skill), "Patch_Terminal_InitTerminal", (Type[])null, (Type[])null)), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null); val.Patch((MethodBase)AccessTools.DeclaredMethod(typeof(Localization), "SetupLanguage", (Type[])null, (Type[])null), (HarmonyMethod)null, new HarmonyMethod(AccessTools.DeclaredMethod(typeof(LocalizationCache), "LocalizationPostfix", (Type[])null, (Type[])null)), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null); val.Patch((MethodBase)AccessTools.DeclaredMethod(typeof(Skills), "OnDeath", (Type[])null, (Type[])null), new HarmonyMethod(AccessTools.DeclaredMethod(typeof(Skill), "Patch_Skills_OnDeath_Prefix", (Type[])null, (Type[])null)), (HarmonyMethod)null, (HarmonyMethod)null, new HarmonyMethod(AccessTools.DeclaredMethod(typeof(Skill), "Patch_Skills_OnDeath_Finalizer", (Type[])null, (Type[])null)), (HarmonyMethod)null); } private static void Patch_FejdStartup() { //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Expected O, but got Unknown //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Expected O, but got Unknown //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Expected O, but got Unknown foreach (Skill skill in skills.Values) { if (skill.Configurable) { string key = skill.Name.Key; string group = new Regex("['[\"\\]]").Replace(english.Localize(key), "").Trim(); string category = Localization.instance.Localize(key).Trim(); ConfigEntry<float> skillGain = config(group, "Skill gain factor", skill.SkillGainFactor, new ConfigDescription("The rate at which you gain experience for the skill.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0.01f, 5f), new object[1] { new ConfigurationManagerAttributes { Category = category } })); skill.SkillGainFactor = skillGain.Value; skillGain.SettingChanged += delegate { skill.SkillGainFactor = skillGain.Value; }; ConfigEntry<float> skillEffect = config(group, "Skill effect factor", skill.SkillEffectFactor, new ConfigDescription("The power of the skill, based on the default power.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0.01f, 5f), new object[1] { new ConfigurationManagerAttributes { Category = category } })); skill.SkillEffectFactor = skillEffect.Value; skillEffect.SettingChanged += delegate { skill.SkillEffectFactor = skillEffect.Value; }; ConfigEntry<int> skillLoss = config(group, "Skill loss", skill.skillLoss, new ConfigDescription("How much experience to lose on death.", (AcceptableValueBase)(object)new AcceptableValueRange<int>(0, 100), new object[1] { new ConfigurationManagerAttributes { Category = category } })); skill.skillLoss = skillLoss.Value; skillLoss.SettingChanged += delegate { skill.skillLoss = skillLoss.Value; }; } } } private static void Patch_Skills_GetSkillDef(ref SkillDef? __result, List<SkillDef> ___m_skills, SkillType type) { //IL_0004: Unknown result type (might be due to invalid IL or missing references) if (__result == null) { SkillDef val = GetSkillDef(type); if (val != null) { ___m_skills.Add(val); __result = val; } } } private static bool Patch_Skills_CheatRaiseskill(Skills __instance, string name, float value, Player ___m_player) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) foreach (SkillType key in skills.Keys) { SkillType current = key; Skill skill = skills[current]; if (string.Equals(skill.internalSkillName, name, StringComparison.CurrentCultureIgnoreCase)) { Skill skill2 = __instance.GetSkill(current); skill2.m_level += value; skill2.m_level = Mathf.Clamp(skill2.m_level, 0f, 100f); ((Character)___m_player).Message((MessageType)1, "Skill increased " + Localization.instance.Localize("$skill_" + ((object)(SkillType)(ref current)).ToString()) + ": " + (int)skill2.m_level, 0, skill2.m_info.m_icon); Console.instance.Print("Skill " + skill.internalSkillName + " = " + skill2.m_level); return false; } } return true; } private static bool Patch_Skills_CheatResetSkill(Skills __instance, string name) { //IL_0014: 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_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) foreach (SkillType key in skills.Keys) { Skill skill = skills[key]; if (string.Equals(skill.internalSkillName, name, StringComparison.CurrentCultureIgnoreCase)) { __instance.ResetSkill(key); Console.instance.Print("Skill " + skill.internalSkillName + " reset"); return false; } } return true; } private static void Patch_Skills_OnDeath_Prefix(Skills __instance, ref Dictionary<SkillType, Skill>? __state) { //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) if (__state == null) { __state = new Dictionary<SkillType, Skill>(); } foreach (KeyValuePair<SkillType, Skill> skill in skills) { if (__instance.m_skillData.TryGetValue(skill.Key, out var value)) { __state[skill.Key] = value; if (skill.Value.skillLoss > 0) { Skill obj = value; obj.m_level -= value.m_level * (float)skill.Value.SkillLoss / 100f; value.m_accumulator = 0f; } __instance.m_skillData.Remove(skill.Key); } } } private static void Patch_Skills_OnDeath_Finalizer(Skills __instance, ref Dictionary<SkillType, Skill>? __state) { //IL_001f: Unknown result type (might be due to invalid IL or missing references) if (__state == null) { return; } foreach (KeyValuePair<SkillType, Skill> item in __state) { __instance.m_skillData[item.Key] = item.Value; } __state = null; } private static void Patch_Terminal_InitTerminal_Prefix() { InitializedTerminal = Terminal.m_terminalInitialized; } private static void Patch_Terminal_InitTerminal() { if (!InitializedTerminal) { AddSkill(Terminal.commands["raiseskill"]); AddSkill(Terminal.commands["resetskill"]); } static void AddSkill(ConsoleCommand command) { //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Expected O, but got Unknown ConsoleOptionsFetcher fetcher = command.m_tabOptionsFetcher; command.m_tabOptionsFetcher = (ConsoleOptionsFetcher)delegate { List<string> list = fetcher.Invoke(); list.AddRange(Enumerable.Select(skills.Values, (Skill skill) => skill.internalSkillName)); return list; }; } } private static SkillDef? GetSkillDef(SkillType skillType) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!skills.ContainsKey(skillType)) { return null; } return skills[skillType].skillDef; } private static byte[] ReadEmbeddedFileBytes(string name) { using MemoryStream memoryStream = new MemoryStream(); Assembly.GetExecutingAssembly().GetManifestResourceStream(Assembly.GetExecutingAssembly().GetName().Name + "." + name).CopyTo(memoryStream); return memoryStream.ToArray(); } private static Texture2D loadTexture(string name) { //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_001d: Expected O, but got Unknown //IL_001f: Expected O, but got Unknown Texture2D val = new Texture2D(0, 0); ImageConversion.LoadImage(val, ReadEmbeddedFileBytes("icons." + name)); return val; } private static Sprite loadSprite(string name, int width, int height) { //IL_0014: 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) return Sprite.Create(loadTexture(name), new Rect(0f, 0f, (float)width, (float)height), Vector2.zero); } private static ConfigEntry<T> config<T>(string group, string name, T value, ConfigDescription description) { ConfigEntry<T> val = plugin.Config.Bind<T>(group, name, value, description); configSync?.GetType().GetMethod("AddConfigEntry").MakeGenericMethod(typeof(T)) .Invoke(configSync, new object[1] { val }); return val; } private static ConfigEntry<T> config<T>(string group, string name, T value, string description) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Expected O, but got Unknown return config(group, name, value, new ConfigDescription(description, (AcceptableValueBase)null, Array.Empty<object>())); } } [PublicAPI] internal static class SkillExtensions { public static float GetSkillFactor(this Character character, string name) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) return character.GetSkillFactor(Skill.fromName(name)) * Skill.skillByName[name].SkillEffectFactor; } public static float GetSkillFactor(this Skills skills, string name) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) return skills.GetSkillFactor(Skill.fromName(name)) * Skill.skillByName[name].SkillEffectFactor; } public static void RaiseSkill(this Character character, string name, float value = 1f) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) character.RaiseSkill(Skill.fromName(name), value); } public static void RaiseSkill(this Skills skill, string name, float value = 1f) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) skill.RaiseSkill(Skill.fromName(name), value); } public static void LowerSkill(this Character character, string name, float factor = 1f) { character.GetSkills().LowerSkill(name, factor); } public static void LowerSkill(this Skills skills, string name, float factor) { //IL_000f: Unknown result type (might be due to invalid IL or missing references) if (factor > 0f && skills.m_skillData.TryGetValue(Skill.fromName(name), out var value)) { Skill obj = value; obj.m_level -= value.m_level * factor; value.m_accumulator = 0f; } } } internal static class SkillManagerVersion { public const string Version = "1.7.0"; } } namespace Hunting.Patches { [HarmonyPatch(typeof(CharacterDrop), "GenerateDropList")] public class CharacterDropPatch { [HarmonyPriority(0)] [UsedImplicitly] private static void Postfix(CharacterDrop __instance, ref List<KeyValuePair<GameObject, int>> __result) { if (!CharacterPatch._isHunting || (Object)(object)__instance.m_character == (Object)null || (Object)(object)Player.m_localPlayer == (Object)null || !CharacterPatch.IsPrey(__instance.m_character) || __instance.m_character.IsTamed() || Plugin._useDropSystem.Value == Toggle.Off) { return; } List<KeyValuePair<GameObject, int>> list = new List<KeyValuePair<GameObject, int>>(); foreach (KeyValuePair<GameObject, int> item in __result) { if (item.Value < 0) { return; } int num = new Random().Next(1, 100); ((Character)Player.m_localPlayer).GetSkills().m_skillData.TryGetValue((SkillType)Mathf.Abs(StringExtensionMethods.GetStableHashCode("Hunting")), out var value); GameObject key = item.Key; int num2 = item.Value; if ((float)num <= value?.m_level) { float num3 = 1f + Plugin._huntingYieldFactor.Value * ((Character)(object)Player.m_localPlayer).GetSkillFactor("Hunting"); num2 *= (int)num3; } list.Add(new KeyValuePair<GameObject, int>(key, num2)); } __result = list; } } [HarmonyPatch] public class CharacterPatch { public static bool _isHunting; [HarmonyPrefix] [HarmonyPatch(typeof(Character), "RPC_Damage")] private static void RpcDamage_Prefix(Character __instance, HitData hit) { //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) Character attacker = hit.GetAttacker(); Player val = (Player)(object)((attacker is Player) ? attacker : null); if (val != null && ((Humanoid)val).GetCurrentWeapon() != null && ((Humanoid)val).GetCurrentWeapon() != ((Humanoid)val).m_unarmedWeapon.m_itemData && IsUsingHuntingWeapon(val) && IsPrey(__instance) && !__instance.IsTamed()) { _isHunting = true; ((Character)val).GetSkills().m_skillData.TryGetValue((SkillType)Mathf.Abs(StringExtensionMethods.GetStableHashCode("Hunting")), out var value); string value2 = ((Object)((Component)__instance).gameObject).name.Replace("(Clone)", ""); string[] source = Plugin._tier1Meadows.Value.Split(',', ' '); if (value != null && value.m_level > 10f) { ((Character)val).RaiseSkill(Skill.fromName("Hunting"), Enumerable.Contains(source, value2) ? 0.8f : 1f); } else if (value != null && value.m_level > 20f) { ((Character)val).RaiseSkill(Skill.fromName("Hunting"), Enumerable.Contains(source, value2) ? 0.5f : 1f); } else if (value != null && value.m_level > 30f) { ((Character)val).RaiseSkill(Skill.fromName("Hunting"), Enumerable.Contains(source, value2) ? 0.2f : 1f); } else { ((Character)val).RaiseSkill(Skill.fromName("Hunting"), 1f); } } } [HarmonyPostfix] [HarmonyPatch(typeof(Character), "Awake")] private static void Awake_Postfix(Character __instance) { if (!((Object)(object)__instance == (Object)null) && !__instance.IsTamed() && !((Object)(object)((Component)__instance).GetComponent<Tracker>() != (Object)null)) { string name = ((Object)((Component)__instance).gameObject).name; string localName = ((Localization.instance != null) ? Localization.instance.Localize(__instance.m_name) : __instance.m_name); AddTierTracker(((Component)__instance).gameObject, name, localName); } } private static void AddTierTracker(GameObject go, string name, string localName) { AddTracker(go, name, localName, Helper._Tier1Icons, Helper.GetTier1PinIcons, Plugin._tier1MeadowsLevel.Value); AddTracker(go, name, localName, Helper._Tier2Icons, Helper.GetTier2PinIcons, Plugin._tier2BlackForestLevel.Value); AddTracker(go, name, localName, Helper._Tier3Icons, Helper.GetTier3PinIcons, Plugin._tier3SwampsLevel.Value); AddTracker(go, name, localName, Helper._Tier4Icons, Helper.GetTier4PinIcons, Plugin._tier4MountainsLevel.Value); AddTracker(go, name, localName, Helper._Tier5Icons, Helper.GetTier5PinIcons, Plugin._tier5PlainsLevel.Value); AddTracker(go, name, localName, Helper._Tier6Icons, Helper.GetTier6PinIcons, Plugin._tier6MistlandsLevel.Value); AddTracker(go, name, localName, Helper._Tier7Icons, Helper.GetTier7PinIcons, Plugin._tier7AshlandsLevel.Value); AddTracker(go, name, localName, Helper._Tier8Icons, Helper.GetTier8PinIcons, Plugin._tier8DeepNorthLevel.Value); } private static void AddTracker(GameObject go, string name, string localName, IDictionary<string, Sprite> iconDict, Action<string> fetchIcons, int level) { string localName2 = localName; fetchIcons(name); if (iconDict.TryGetValue(name, out Sprite value) && !((Object)(object)Enumerable.FirstOrDefault(go.GetComponents<Tracker>(), (Tracker t) => ((Object)t).name == localName2) != (Object)null)) { go.AddComponent<Tracker>().Create(localName2, Plugin._detectionRadius.Value, value, level); } } public static bool IsPrey(Character character) { string[] source = Enumerable.ToArray(Plugin._CreatureList); string text = ((Object)character).name.Replace("(Clone)", ""); return Enumerable.Any(source, (string name) => text == name); } private static bool IsUsingHuntingWeapon(Player player) { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Invalid comparison between Unknown and I4 //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Invalid comparison between Unknown and I4 //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Invalid comparison between Unknown and I4 //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Invalid comparison between Unknown and I4 //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Invalid comparison between Unknown and I4 SkillType skillType = ((Humanoid)player).GetCurrentWeapon().m_shared.m_skillType; if ((int)skillType <= 5) { if ((int)skillType == 2 || (int)skillType == 5) { goto IL_0028; } } else if ((int)skillType == 8 || (int)skillType == 14) { goto IL_0028; } return false; IL_0028: return true; } } [HarmonyPatch] public class EnemyHudPatch { private static readonly ConditionalWeakTable<HudData, TMP_Text> HpText = new ConditionalWeakTable<HudData, TMP_Text>(); [HarmonyPrefix] [HarmonyPatch(typeof(EnemyHud), "ShowHud")] private static void ShowHud_Prefix(ref EnemyHud __instance, ref Character c, ref bool __state) { __state = __instance.m_huds.ContainsKey(c); } [HarmonyPostfix] [HarmonyPatch(typeof(EnemyHud), "ShowHud")] private static void ShowHud_Postfix(ref EnemyHud __instance, ref Character c, ref bool __state) { //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) if (!__state && __instance.m_huds.TryGetValue(c, out var value) && !c.IsPlayer() && !((Object)(object)c == (Object)null) && !((Object)(object)Player.m_localPlayer == (Object)null) && !((Object)(object)c == (Object)(object)Player.m_localPlayer) && Plugin._displayEnemyHPEnable.Value != 0 && Plugin._displayEnemyHPLevel.Value > 0 && ((Character)(object)Player.m_localPlayer).GetSkillFactor("Hunting") >= (float)Plugin._displayEnemyHPLevel.Value / 100f) { TMP_Text val = (TMP_Text)(object)Object.Instantiate<TextMeshProUGUI>(value.m_name, ((TMP_Text)value.m_name).transform.parent); ((Object)val).name = "enemyHPText"; switch (Plugin._displayEnemyHPOptions.Value) { case Plugin.DisplayOptions.Numerical: { float health = value.m_character.GetHealth(); float maxHealth = value.m_character.GetMaxHealth(); val.text = $"{health:0}/{maxHealth:0}"; break; } case Plugin.DisplayOptions.Percentage: { float healthPercentage = value.m_character.GetHealthPercentage(); val.text = $"{Mathf.FloorToInt(healthPercentage * 100f)}%"; break; } } ((Graphic)val).color = Color.white; if (c.IsBoss()) { val.rectTransform.anchoredPosition = new Vector2(val.rectTransform.anchoredPosition.x, -7f); val.fontSizeMax = 17f; val.fontSizeMin = 10f; } else { val.rectTransform.anchoredPosition = new Vector2(val.rectTransform.anchoredPosition.x, 6f); val.fontSizeMax = 13f; val.fontSizeMin = 7f; } HpText.Add(value, val); } } [HarmonyPostfix] [HarmonyPatch(typeof(EnemyHud), "UpdateHuds")] private static void UpdateHuds_Postfix(ref EnemyHud __instance) { Character val = null; foreach (HudData item in Enumerable.Select(__instance.m_huds, (KeyValuePair<Character, HudData> hud) => hud.Value)) { if (!Object.op_Implicit((Object)(object)item.m_character) || !__instance.TestShow(item.m_character, true)) { if ((Object)(object)val == (Object)null) { val = item.m_character; Object.Destroy((Object)(object)item.m_gui); } continue; } if (item.m_character.IsPlayer()) { return; } if (!HpText.TryGetValue(item, out TMP_Text value)) { continue; } if ((Object)(object)item.m_character == (Object)null || (Object)(object)Player.m_localPlayer == (Object)null || (Object)(object)item.m_character == (Object)(object)Player.m_localPlayer) { return; } if (Plugin._displayEnemyHPEnable.Value == Toggle.On && Plugin._displayEnemyHPLevel.Value > 0 && ((Character)(object)Player.m_localPlayer).GetSkillFactor("Hunting") >= (float)Plugin._displayEnemyHPLevel.Value / 100f) { switch (Plugin._displayEnemyHPOptions.Value) { case Plugin.DisplayOptions.Numerical: { float health = item.m_character.GetHealth(); float maxHealth = item.m_character.GetMaxHealth(); value.text = $"{health:0}/{maxHealth:0}"; break; } case Plugin.DisplayOptions.Percentage: { float healthPercentage = item.m_character.GetHealthPercentage(); value.text = $"{Mathf.FloorToInt(healthPercentage * 100f)}%"; break; } } } else if (Plugin._displayEnemyHPEnable.Value == Toggle.Off || Plugin._displayEnemyHPLevel.Value <= 0 || !(((Character)(object)Player.m_localPlayer).GetSkillFactor("Hunting") >= (float)Plugin._displayEnemyHPLevel.Value / 100f)) { value.text = ""; } } if ((Object)(object)val != (Object)null) { __instance.m_huds.Remove(val); } } } [HarmonyPatch(typeof(ObjectDB), "UpdateRegisters")] public class ObjectDBPatch { public static readonly IDictionary<string, Sprite> _SpritesDictTier1 = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _SpritesDictTier2 = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _SpritesDictTier3 = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _SpritesDictTier4 = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _SpritesDictTier5 = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _SpritesDictTier6 = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _SpritesDictTier7 = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _SpritesDictTier8 = new Dictionary<string, Sprite>(); [HarmonyPostfix] private static void Postfix(ObjectDB __instance) { GetTier1Sprites(__instance); GetTier2Sprites(__instance); GetTier3Sprites(__instance); GetTier4Sprites(__instance); GetTier5Sprites(__instance); GetTier6Sprites(__instance); GetTier7Sprites(__instance); GetTier8Sprites(__instance); } private static void GetTier1Sprites(ObjectDB objectDB) { _SpritesDictTier1.Clear(); HashSet<string> hashSet = new HashSet<string>(Plugin._tier1Meadows.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); ZNetScene instance = ZNetScene.instance; if (!Object.op_Implicit((Object)(object)instance) || instance.m_prefabs.Count <= 0) { return; } foreach (string item in hashSet) { string text = item; GameObject prefab = instance.GetPrefab(StringExtensionMethods.GetStableHashCode(item)); if ((Object)(object)prefab == (Object)null) { continue; } CharacterDrop component = prefab.GetComponent<CharacterDrop>(); if ((Object)(object)component != (Object)null) { foreach (Drop drop in component.m_drops) { text = (((Object)drop.m_prefab).name.ToLower().Contains("trophy") ? ((Object)drop.m_prefab).name : ((Object)component.m_drops[0].m_prefab).name); } } GameObject itemPrefab = objectDB.GetItemPrefab(StringExtensionMethods.GetStableHashCode(text)); if ((Object)(object)itemPrefab == (Object)null) { continue; } ItemDrop component2 = itemPrefab.GetComponent<ItemDrop>(); if ((Object)(object)component2 != (Object)null) { _SpritesDictTier1.Add(item, component2.m_itemData.GetIcon()); continue; } Sprite value = Enumerable.SingleOrDefault((IEnumerable<Sprite>)Resources.FindObjectsOfTypeAll<Sprite>(), (Func<Sprite, bool>)((Sprite x) => ((Object)x).name == "mapicon_pin")); _SpritesDictTier1.Add(item, value); } } private static void GetTier2Sprites(ObjectDB objectDB) { _SpritesDictTier2.Clear(); HashSet<string> hashSet = new HashSet<string>(Plugin._tier2BlackForest.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); ZNetScene instance = ZNetScene.instance; if (!Object.op_Implicit((Object)(object)instance) || instance.m_prefabs.Count <= 0) { return; } foreach (string item in hashSet) { string text = item; GameObject prefab = instance.GetPrefab(StringExtensionMethods.GetStableHashCode(item)); if ((Object)(object)prefab == (Object)null) { continue; } CharacterDrop component = prefab.GetComponent<CharacterDrop>(); if ((Object)(object)component != (Object)null) { foreach (Drop drop in component.m_drops) { text = (((Object)drop.m_prefab).name.ToLower().Contains("trophy") ? ((Object)drop.m_prefab).name : ((Object)component.m_drops[0].m_prefab).name); } } GameObject itemPrefab = objectDB.GetItemPrefab(StringExtensionMethods.GetStableHashCode(text)); if ((Object)(object)itemPrefab == (Object)null) { continue; } ItemDrop component2 = itemPrefab.GetComponent<ItemDrop>(); if ((Object)(object)component2 != (Object)null) { _SpritesDictTier2.Add(item, component2.m_itemData.GetIcon()); continue; } Sprite value = Enumerable.SingleOrDefault((IEnumerable<Sprite>)Resources.FindObjectsOfTypeAll<Sprite>(), (Func<Sprite, bool>)((Sprite x) => ((Object)x).name == "mapicon_pin")); _SpritesDictTier2.Add(item, value); } } private static void GetTier3Sprites(ObjectDB objectDB) { _SpritesDictTier3.Clear(); HashSet<string> hashSet = new HashSet<string>(Plugin._tier3Swamps.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); ZNetScene instance = ZNetScene.instance; if (!Object.op_Implicit((Object)(object)instance) || instance.m_prefabs.Count <= 0) { return; } foreach (string item in hashSet) { string text = item; GameObject prefab = instance.GetPrefab(StringExtensionMethods.GetStableHashCode(item)); if ((Object)(object)prefab == (Object)null) { continue; } CharacterDrop component = prefab.GetComponent<CharacterDrop>(); if ((Object)(object)component != (Object)null) { foreach (Drop drop in component.m_drops) { text = (((Object)drop.m_prefab).name.ToLower().Contains("trophy") ? ((Object)drop.m_prefab).name : ((Object)component.m_drops[0].m_prefab).name); } } GameObject itemPrefab = objectDB.GetItemPrefab(StringExtensionMethods.GetStableHashCode(text)); if ((Object)(object)itemPrefab == (Object)null) { continue; } ItemDrop component2 = itemPrefab.GetComponent<ItemDrop>(); if ((Object)(object)component2 != (Object)null) { _SpritesDictTier3.Add(item, component2.m_itemData.GetIcon()); continue; } Sprite value = Enumerable.SingleOrDefault((IEnumerable<Sprite>)Resources.FindObjectsOfTypeAll<Sprite>(), (Func<Sprite, bool>)((Sprite x) => ((Object)x).name == "mapicon_pin")); _SpritesDictTier3.Add(item, value); } } private static void GetTier4Sprites(ObjectDB objectDB) { _SpritesDictTier4.Clear(); HashSet<string> hashSet = new HashSet<string>(Plugin._tier4Mountains.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); ZNetScene instance = ZNetScene.instance; if (!Object.op_Implicit((Object)(object)instance) || instance.m_prefabs.Count <= 0) { return; } foreach (string item in hashSet) { string text = item; GameObject prefab = instance.GetPrefab(StringExtensionMethods.GetStableHashCode(item)); if ((Object)(object)prefab == (Object)null) { continue; } CharacterDrop component = prefab.GetComponent<CharacterDrop>(); if ((Object)(object)component != (Object)null) { foreach (Drop drop in component.m_drops) { text = (((Object)drop.m_prefab).name.ToLower().Contains("trophy") ? ((Object)drop.m_prefab).name : ((Object)component.m_drops[0].m_prefab).name); } } GameObject itemPrefab = objectDB.GetItemPrefab(StringExtensionMethods.GetStableHashCode(text)); if ((Object)(object)itemPrefab == (Object)null) { continue; } ItemDrop component2 = itemPrefab.GetComponent<ItemDrop>(); if ((Object)(object)component2 != (Object)null) { _SpritesDictTier4.Add(item, component2.m_itemData.GetIcon()); continue; } Sprite value = Enumerable.SingleOrDefault((IEnumerable<Sprite>)Resources.FindObjectsOfTypeAll<Sprite>(), (Func<Sprite, bool>)((Sprite x) => ((Object)x).name == "mapicon_pin")); _SpritesDictTier4.Add(item, value); } } private static void GetTier5Sprites(ObjectDB objectDB) { _SpritesDictTier5.Clear(); HashSet<string> hashSet = new HashSet<string>(Plugin._tier5Plains.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); ZNetScene instance = ZNetScene.instance; if (!Object.op_Implicit((Object)(object)instance) || instance.m_prefabs.Count <= 0) { return; } foreach (string item in hashSet) { string text = item; GameObject prefab = instance.GetPrefab(StringExtensionMethods.GetStableHashCode(item)); if ((Object)(object)prefab == (Object)null) { continue; } CharacterDrop component = prefab.GetComponent<CharacterDrop>(); if ((Object)(object)component != (Object)null) { foreach (Drop drop in component.m_drops) { text = (((Object)drop.m_prefab).name.ToLower().Contains("trophy") ? ((Object)drop.m_prefab).name : ((Object)component.m_drops[0].m_prefab).name); } } GameObject itemPrefab = objectDB.GetItemPrefab(StringExtensionMethods.GetStableHashCode(text)); if ((Object)(object)itemPrefab == (Object)null) { continue; } ItemDrop component2 = itemPrefab.GetComponent<ItemDrop>(); if ((Object)(object)component2 != (Object)null) { _SpritesDictTier5.Add(item, component2.m_itemData.GetIcon()); continue; } Sprite value = Enumerable.SingleOrDefault((IEnumerable<Sprite>)Resources.FindObjectsOfTypeAll<Sprite>(), (Func<Sprite, bool>)((Sprite x) => ((Object)x).name == "mapicon_pin")); _SpritesDictTier5.Add(item, value); } } private static void GetTier6Sprites(ObjectDB objectDB) { _SpritesDictTier6.Clear(); HashSet<string> hashSet = new HashSet<string>(Plugin._tier6Mistlands.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); ZNetScene instance = ZNetScene.instance; if (!Object.op_Implicit((Object)(object)instance) || instance.m_prefabs.Count <= 0) { return; } foreach (string item in hashSet) { string text = item; GameObject prefab = instance.GetPrefab(StringExtensionMethods.GetStableHashCode(item)); if ((Object)(object)prefab == (Object)null) { continue; } CharacterDrop component = prefab.GetComponent<CharacterDrop>(); if ((Object)(object)component != (Object)null) { foreach (Drop drop in component.m_drops) { text = (((Object)drop.m_prefab).name.ToLower().Contains("trophy") ? ((Object)drop.m_prefab).name : ((Object)component.m_drops[0].m_prefab).name); } } GameObject itemPrefab = objectDB.GetItemPrefab(StringExtensionMethods.GetStableHashCode(text)); if ((Object)(object)itemPrefab == (Object)null) { continue; } ItemDrop component2 = itemPrefab.GetComponent<ItemDrop>(); if ((Object)(object)component2 != (Object)null) { _SpritesDictTier6.Add(item, component2.m_itemData.GetIcon()); continue; } Sprite value = Enumerable.SingleOrDefault((IEnumerable<Sprite>)Resources.FindObjectsOfTypeAll<Sprite>(), (Func<Sprite, bool>)((Sprite x) => ((Object)x).name == "mapicon_pin")); _SpritesDictTier6.Add(item, value); } } private static void GetTier7Sprites(ObjectDB objectDB) { _SpritesDictTier7.Clear(); HashSet<string> hashSet = new HashSet<string>(Plugin._tier7Ashlands.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); ZNetScene instance = ZNetScene.instance; if (!Object.op_Implicit((Object)(object)instance) || instance.m_prefabs.Count <= 0) { return; } foreach (string item in hashSet) { string text = item; GameObject prefab = instance.GetPrefab(StringExtensionMethods.GetStableHashCode(item)); if ((Object)(object)prefab == (Object)null) { continue; } CharacterDrop component = prefab.GetComponent<CharacterDrop>(); if ((Object)(object)component != (Object)null) { foreach (Drop drop in component.m_drops) { text = (((Object)drop.m_prefab).name.ToLower().Contains("trophy") ? ((Object)drop.m_prefab).name : ((Object)component.m_drops[0].m_prefab).name); } } GameObject itemPrefab = objectDB.GetItemPrefab(StringExtensionMethods.GetStableHashCode(text)); if ((Object)(object)itemPrefab == (Object)null) { continue; } ItemDrop component2 = itemPrefab.GetComponent<ItemDrop>(); if ((Object)(object)component2 != (Object)null) { _SpritesDictTier7.Add(item, component2.m_itemData.GetIcon()); continue; } Sprite value = Enumerable.SingleOrDefault((IEnumerable<Sprite>)Resources.FindObjectsOfTypeAll<Sprite>(), (Func<Sprite, bool>)((Sprite x) => ((Object)x).name == "mapicon_pin")); _SpritesDictTier7.Add(item, value); } } private static void GetTier8Sprites(ObjectDB objectDB) { _SpritesDictTier8.Clear(); HashSet<string> hashSet = new HashSet<string>(Plugin._tier8DeepNorth.Value.Split(new char[1] { ',' }, StringSplitOptions.RemoveEmptyEntries)); ZNetScene instance = ZNetScene.instance; if (!Object.op_Implicit((Object)(object)instance) || instance.m_prefabs.Count <= 0) { return; } foreach (string item in hashSet) { string text = item; GameObject prefab = instance.GetPrefab(StringExtensionMethods.GetStableHashCode(item)); if ((Object)(object)prefab == (Object)null) { continue; } CharacterDrop component = prefab.GetComponent<CharacterDrop>(); if ((Object)(object)component != (Object)null) { foreach (Drop drop in component.m_drops) { text = (((Object)drop.m_prefab).name.ToLower().Contains("trophy") ? ((Object)drop.m_prefab).name : ((Object)component.m_drops[0].m_prefab).name); } } GameObject itemPrefab = objectDB.GetItemPrefab(StringExtensionMethods.GetStableHashCode(text)); if ((Object)(object)itemPrefab == (Object)null) { continue; } ItemDrop component2 = itemPrefab.GetComponent<ItemDrop>(); if ((Object)(object)component2 != (Object)null) { _SpritesDictTier8.Add(item, component2.m_itemData.GetIcon()); continue; } Sprite value = Enumerable.SingleOrDefault((IEnumerable<Sprite>)Resources.FindObjectsOfTypeAll<Sprite>(), (Func<Sprite, bool>)((Sprite x) => ((Object)x).name == "mapicon_pin")); _SpritesDictTier8.Add(item, value); } } } [HarmonyPatch] public class PlayerPatch { [HarmonyPostfix] [HarmonyPatch(typeof(Player), "Awake")] private static void Awake_Postfix(Player __instance) { Player __instance2 = __instance; ((Character)__instance2).m_nview.Register<int>("Hunting IncreaseSkill", (Action<long, int>)delegate(long _, int factor) { ((Character)(object)__instance2).RaiseSkill("Hunting", factor); }); } [HarmonyPostfix] [HarmonyPatch(typeof(Player), "Update")] private static void Update_Postfix(ref Player __instance) { //IL_0027: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)__instance != (Object)(object)Player.m_localPlayer)) { ((Character)__instance).m_nview.GetZDO().Set("Hunting Skill Factor", ((Character)__instance).GetSkillFactor(Skill.fromName("Hunting"))); } } } [HarmonyPatch(typeof(Projectile), "OnHit")] public class ProjectilePatch { private static void Prefix(Projectile __instance, Collider collider, Vector3 hitPoint, bool water) { //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Invalid comparison between Unknown and I4 //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Invalid comparison between Unknown and I4 //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Invalid comparison between Unknown and I4 //IL_016c: Unknown result type (might be due to invalid IL or missing references) Character owner = __instance.m_owner; Player val = (Player)(object)((owner is Player) ? owner : null); if (val == null) { return; } GameObject val2 = (Object.op_Implicit((Object)(object)collider) ? Projectile.FindHitObject(collider) : null); bool flag = false; bool flag2 = false; IDestructible val3 = (Object.op_Implicit((Object)(object)val2) ? val2.GetComponent<IDestructible>() : null); if (val3 != null) { flag2 = val3 is Character; if (!__instance.IsValidTarget(val3)) { return; } flag = true; } Character val4 = (Character)(object)((val3 is Character) ? val3 : null); if (!flag || (Object)(object)__instance.m_owner == (Object)null || !flag2 || !Object.op_Implicit((Object)(object)val4) || !CharacterPatch.IsPrey(val4) || val4.IsTamed() || ((int)__instance.m_skill != 5 && (int)__instance.m_skill != 2 && (int)__instance.m_skill != 7)) { return; } ((Character)val).GetSkills().m_skillData.TryGetValue((SkillType)Mathf.Abs(StringExtensionMethods.GetStableHashCode("Hunting")), out var value); string value2 = ((Object)((Component)val4).gameObject).name.Replace("(Clone)", ""); string[] array = Plugin._tier1Meadows.Value.Split(',', ' '); if (Plugin._tier4MountainsLevel.Value > 0 && value?.m_level > (float)Plugin._tier4MountainsLevel.Value) { if (array.Length != 0 && Enumerable.Contains(array, value2)) { ((Character)val).RaiseSkill(Skill.fromName("Hunting"), 0.2f); } } else { ((Character)val).RaiseSkill(Skill.fromName("Hunting"), 1f); } } } [HarmonyPatch(typeof(Skills), "RaiseSkill")] public class SkillsPatch { private static void Postfix(Skills __instance, SkillType skillType, float factor = 1f) { //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) if (Plugin._displayExpGained.Value == Toggle.Off) { return; } ((Character)__instance.m_player).GetSkills().m_skillData.TryGetValue((SkillType)Mathf.Abs(StringExtensionMethods.GetStableHashCode("Hunting")), out var value); if ((SkillType?)skillType != value?.m_info.m_skill) { return; } try { if (value.m_level < 100f) { float value2 = value.m_accumulator / (value.GetNextLevelRequirement() / 100f); ((Character)__instance.m_player).Message((MessageType)1, $"Level {value.m_level.tFloat(0)} Hunting [{value.m_accumulator.tFloat(2)}/{value.GetNextLevelRequirement().tFloat(2)}] ({value2.tFloat(0)}%)", 0, value.m_info.m_icon); } } catch { } } } public class Tracker : MonoBehaviour { public string m_resourceName = ""; private float m_trackRange; private Sprite? m_pinIcon; private PinData? m_pinData; private int m_requiredLevel; private static readonly List<PinData> m_pinList = new List<PinData>(); public void Create(string resourceName, float trackRange, Sprite pinIcon, int requiredLevel) { m_resourceName = resourceName; m_trackRange = trackRange; m_pinIcon = pinIcon; m_pinData = null; m_requiredLevel = requiredLevel; } private void Update() { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0218: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) Player player = Player.m_localPlayer; if (!Object.op_Implicit((Object)(object)player)) { return; } Vector3 position = ((Component)this).transform.position; position.y = 0f; Vector2 val = default(Vector2); ((Vector2)(ref val))..ctor(((Component)player).transform.position.x - position.x, ((Component)player).transform.position.z - position.z); float magnitude = ((Vector2)(ref val)).magnitude; float skillFactor = ((Character)(object)player).GetSkillFactor("Hunting"); bool flag = Plugin._iconsOnly.Value == Toggle.On; bool flag2 = magnitude < m_trackRange; m_pinList.RemoveAll((PinData pin) => pin == null || Vector3.Distance(((Component)player).transform.position, pin.m_pos) > m_trackRange); if (m_pinList.Count >= Plugin._maxPin.Value) { PinData val2 = m_pinList[0]; if (val2 != null) { Minimap.instance.RemovePin(val2); } m_pinList.RemoveAt(0); } if (m_pinData == null && flag2 && m_requiredLevel > 0 && skillFactor >= (float)m_requiredLevel / 100f && m_pinList.Count < Plugin._maxPin.Value) { m_pinData = Minimap.instance.AddPin(position, (PinType)8, flag ? "" : m_resourceName, false, false, 0L, default(PlatformUserID)); if (m_pinData != null) { m_pinData.m_icon = m_pinIcon; m_pinData.m_worldSize = 0f; m_pinList.Add(m_pinData); } } else if (m_pinData != null && !flag2) { RemovePin(); } else if (m_pinData != null && (m_requiredLevel <= 0 || (float)m_requiredLevel / 100f > skillFactor)) { RemovePin(); } else if (m_pinData != null && Plugin._hidePins) { RemovePin(); } if (m_pinData != null) { m_pinData.m_pos = position; } } private void RemovePin() { if (m_pinData == null) { return; } try { if (m_pinList.Contains(m_pinData)) { m_pinList.Remove(m_pinData); } Minimap.instance.RemovePin(m_pinData); } catch { } finally { m_pinData = null; } } private void OnDestroy() { RemovePin(); } } } namespace Hunting.Functions { public class ConfigurationManagerAttributes { [UsedImplicitly] public bool? ShowRangeAsPercent; [UsedImplicitly] public int? Order; [UsedImplicitly] public bool? Browsable; [UsedImplicitly] public string Category; [UsedImplicitly] public Action<ConfigEntryBase> CustomDrawer; } public static class Helper { public static readonly IDictionary<string, Sprite> _Tier1Icons = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _Tier2Icons = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _Tier3Icons = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _Tier4Icons = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _Tier5Icons = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _Tier6Icons = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _Tier7Icons = new Dictionary<string, Sprite>(); public static readonly IDictionary<string, Sprite> _Tier8Icons = new Dictionary<string, Sprite>(); public static float tFloat(this float value, int digits) { double num = Math.Pow(10.0, digits); return (float)(Math.Truncate(num * (double)value) / num); } private static string TrackPrey(string prey, string track) { Match match = new Regex(track, RegexOptions.IgnoreCase).Match(prey); if (!match.Success) { return ""; } return match.Value; } public static void GetTier1PinIcons(string prey) { if (_Tier1Icons.ContainsKey(prey)) { return; } foreach (string key in ObjectDBPatch._SpritesDictTier1.Keys) { if (!(TrackPrey(prey, key) == "")) { _Tier1Icons.Add(prey, ObjectDBPatch._SpritesDictTier1[key]); break; } } } public static void GetTier2PinIcons(string prey) { if (_Tier2Icons.ContainsKey(prey)) { return; } foreach (string key in ObjectDBPatch._SpritesDictTier2.Keys) { if (!(TrackPrey(prey, key) == "")) { _Tier2Icons.Add(prey, ObjectDBPatch._SpritesDictTier2[key]); break; } } } public static void GetTier3PinIcons(string prey) { if (_Tier3Icons.ContainsKey(prey)) { return; } foreach (string key in ObjectDBPatch._SpritesDictTier3.Keys) { if (!(TrackPrey(prey, key) == "")) { _Tier3Icons.Add(prey, ObjectDBPatch._SpritesDictTier3[key]); break; } } } public static void GetTier4PinIcons(string prey) { if (_Tier4Icons.ContainsKey(prey)) { return; } foreach (string key in ObjectDBPatch._SpritesDictTier4.Keys) { if (!(TrackPrey(prey, key) == "")) { _Tier4Icons.Add(prey, ObjectDBPatch._SpritesDictTier4[key]); break; } } } public static void GetTier5PinIcons(string prey) { if (_Tier5Icons.ContainsKey(prey)) { return; } foreach (string key in ObjectDBPatch._SpritesDictTier5.Keys) { if (!(TrackPrey(prey, key) == "")) { _Tier5Icons.Add(prey, ObjectDBPatch._SpritesDictTier5[key]); break; } } } public static void GetTier6PinIcons(string prey) { if (_Tier6Icons.ContainsKey(prey)) { return; } foreach (string key in ObjectDBPatch._SpritesDictTier6.Keys) { if (!(TrackPrey(prey, key) == "")) { _Tier6Icons.Add(prey, ObjectDBPatch._SpritesDictTier6[key]); break; } } } public static void GetTier7PinIcons(string prey) { if (_Tier7Icons.ContainsKey(prey)) { return; } foreach (string key in ObjectDBPatch._SpritesDictTier7.Keys) { if (!(TrackPrey(prey, key) == "")) { _Tier7Icons.Add(prey, ObjectDBPatch._SpritesDictTier7[key]); break; } } } public static void GetTier8PinIcons(string prey) { if (_Tier8Icons.ContainsKey(prey)) { return; } foreach (string key in ObjectDBPatch._SpritesDictTier8.Keys) { if (!(TrackPrey(prey, key) == "")) { _Tier8Icons.Add(prey, ObjectDBPatch._SpritesDictTier8[key]); break; } } } } public enum Toggle { On = 1, Off = 0 } } namespace ServerSync { [PublicAPI] internal abstract class OwnConfigEntryBase { public object? LocalBaseValue; public bool SynchronizedConfig = true; public abstract ConfigEntryBase BaseConfig { get; } } [PublicAPI] internal class SyncedConfigEntry<T> : OwnConfigEntryBase { public readonly ConfigEntry<T> SourceConfig; public override ConfigEntryBase BaseConfig => (ConfigEntryBase)(object)SourceConfig; public T Value { get { return SourceConfig.Value; } set { SourceConfig.Value = value; } } public SyncedConfigEntry(ConfigEntry<T> sourceConfig) { SourceConfig = sourceConfig; base..ctor(); } public void AssignLocalValue(T value) { if (LocalBaseValue == null) { Value = value; } else { LocalBaseValue = value; } } } internal abstract class CustomSyncedValueBase { public object? LocalBaseValue; public readonly string Identifier; public readonly Type Type; private object? boxedValue; protected bool localIsOwner; public readonly int Priority; public object? BoxedValue { get { return boxedValue; } set { boxedValue = value; this.ValueChanged?.Invoke(); } } public event Action? ValueChanged; protected CustomSyncedValueBase(ConfigSync configSync, string identifier, Type type, int priority) { Priority = priority; Identifier = identifier; Type = type; configSync.AddCustomValue(this); localIsOwner = configSync.IsSourceOfTruth; configSync.SourceOfTruthChanged += delegate(bool truth) { localIsOwner = truth; }; } } [PublicAPI] internal sealed class CustomSyncedValue<T> : CustomSyncedValueBase { public T Value { get { return (T)base.BoxedValue; } set { base.BoxedValue = value; } } public CustomSyncedValue(ConfigSync configSync, string identifier, T value = default(T), int priority = 0) : base(configSync, identifier, typeof(T), priority) { Value = value; } public void AssignLocalValue(T value) { if (localIsOwner) { Value = value; } else { LocalBaseValue = value; } } } internal class ConfigurationManagerAttributes { [UsedImplicitly] public bool? ReadOnly = false; } [PublicAPI] internal class ConfigSync { [HarmonyPatch(typeof(ZRpc), "HandlePackage")] private static class SnatchCurrentlyHandlingRPC { public static ZRpc? currentRpc; [HarmonyPrefix] private static void Prefix(ZRpc __instance) { currentRpc = __instance; } } [HarmonyPatch(typeof(ZNet), "Awake")] internal static class RegisterRPCPatch { [HarmonyPostfix] private static void Postfix(ZNet __instance) { isServer = __instance.IsServer(); foreach (ConfigSync configSync2 in configSyncs) { ZRoutedRpc.instance.Register<ZPackage>(configSync2.Name + " ConfigSync", (Action<long, ZPackage>)configSync2.RPC_FromOtherClientConfigSync); if (isServer) { configSync2.InitialSyncDone = true; Debug.Log((object)("Registered '" + configSync2.Name + " ConfigSync' RPC - waiting for incoming connections")); } } if (isServer) { ((MonoBehaviour)__instance).StartCoroutine(WatchAdminListChanges()); } static void SendAdmin(List<ZNetPeer> peers, bool isAdmin) { ZPackage package = ConfigsToPackage(null, null, new PackageEntry[1] { new PackageEntry { section = "Internal", key = "lockexempt", type = typeof(bool), value = isAdmin } }); ConfigSync configSync = Enumerable.First(configSyncs); if (configSync != null) { ((MonoBehaviour)ZNet.instance).StartCoroutine(configSync.sendZPackage(peers, package)); } } static IEnumerator WatchAdminListChanges() { MethodInfo listContainsId = AccessTools.DeclaredMethod(typeof(ZNet), "ListContainsId", (Type[])null, (Type[])null); SyncedList adminList = (SyncedList)AccessTools.DeclaredField(typeof(ZNet), "m_adminList").GetValue(ZNet.instance); List<string> CurrentList = new List<string>(adminList.GetList()); while (true) { yield return (object)new WaitForSeconds(30f); if (!Enumerable.SequenceEqual(adminList.GetList(), CurrentList)) { CurrentList = new List<string>(adminList.GetList()); List<ZNetPeer> adminPeer = Enumerable.ToList(Enumerable.Where(ZNet.instance.GetPeers(), delegate(ZNetPeer p) { string hostName = p.m_rpc.GetSocket().GetHostName(); return ((object)listContainsId == null) ? adminList.Contains(hostName) : ((bool)listContainsId.Invoke(ZNet.instance, new object[2] { adminList, hostName })); })); List<ZNetPeer> nonAdminPeer = Enumerable.ToList(Enumerable.Except(ZNet.instance.GetPeers(), adminPeer)); SendAdmin(nonAdminPeer, isAdmin: false); SendAdmin(adminPeer, isAdmin: true); } } } } } [HarmonyPatch(typeof(ZNet), "OnNewConnection")] private static class RegisterClientRPCPatch { [HarmonyPostfix] private static void Postfix(ZNet __instance, ZNetPeer peer) { if (__instance.IsServer()) { return; } foreach (ConfigSync configSync in configSyncs) { peer.m_rpc.Register<ZPackage>(configSync.Name + " ConfigSync", (Action<ZRpc, ZPackage>)configSync.RPC_FromServerConfigSync); } } } private class ParsedConfigs { public readonly Dictionary<OwnConfigEntryBase, object?> configValues = new Dictionary<OwnConfigEntryBase, object>(); public readonly Dictionary<CustomSyncedValueBase, object?> customValues = new Dictionary<CustomSyncedValueBase, object>(); } [HarmonyPatch(typeof(ZNet), "Shutdown")] private class ResetConfigsOnShutdown { [HarmonyPostfix] private static void Postfix() { ProcessingServerUpdate = true; foreach (ConfigSync configSync in configSyncs) { configSync.resetConfigsFromServer(); configSync.IsSourceOfTruth = true; configSync.InitialSyncDone = false; } ProcessingServerUpdate = false; } } [HarmonyPatch(typeof(ZNet), "RPC_PeerInfo")] private class SendConfigsAfterLogin { private class BufferingSocket : ZPlayFabSocket, ISocket { public volatile bool finished = false; public volatile int versionMatchQueued = -1; public readonly List<ZPackage> Package = new List<ZPackage>(); public readonly ISocket Original; public BufferingSocket(ISocket original) { Original = original; ((ZPlayFabSocket)this)..ctor(); } public bool IsConnected() { return Original.IsConnected(); } public ZPackage Recv() { return Original.Recv(); } public int GetSendQueueSize() { return Original.GetSendQueueSize(); } public int GetCurrentSendRate() { return Original.GetCurrentSendRate(); } public bool IsHost() { return Original.IsHost(); } public void Dispose() { Original.Dispose(); } public bool GotNewData() { return Original.GotNewData(); } public void Close() { Original.Close(); } public string GetEndPointString() { return Original.GetEndPointString(); } public void GetAndResetStats(out int totalSent, out int totalRecv) { Original.GetAndResetStats(ref totalSent, ref totalRecv); } public void GetConnectionQuality(out float localQuality, out float remoteQuality, out int ping, out float outByteSec, out float inByteSec) { Original.GetConnectionQuality(ref localQuality, ref remoteQuality, ref ping, ref outByteSec, ref inByteSec); } public ISocket Accept() { return Original.Accept(); } public int GetHostPort() { return Original.GetHostPort(); } public bool Flush() { return Original.Flush(); } public string GetHostName() { return Original.GetHostName(); } public void VersionMatch() { if (finished) { Original.VersionMatch(); } else { versionMatchQueued = Package.Count; } } public void Send(ZPackage pkg) { //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Expected O, but got Unknown int pos = pkg.GetPos(); pkg.SetPos(0); int num = pkg.ReadInt(); if ((num == StringExtensionMethods.GetStableHashCode("PeerInfo") || num == StringExtensionMethods.GetStableHashCode("RoutedRPC") || num == StringExtensionMethods.GetStableHashCode("ZDOData")) && !finished) { ZPackage val = new ZPackage(pkg.GetArray()); val.SetPos(pos); Package.Add(val); } else { pkg.SetPos(pos); Original.Send(pkg); } } } [HarmonyPriority(800)] [HarmonyPrefix] private static void Prefix(ref Dictionary<Assembly, BufferingSocket>? __state, ZNet __instance, ZRpc rpc) { //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Invalid comparison between Unknown and I4 if (!__instance.IsServer()) { return; } BufferingSocket bufferingSocket = new BufferingSocket(rpc.GetSocket()); AccessTools.DeclaredField(typeof(ZRpc), "m_socket").SetValue(rpc, bufferingSocket); object? obj = AccessTools.DeclaredMethod(typeof(ZNet), "GetPeer", new Type[1] { typeof(ZRpc) }, (Type[])null).Invoke(__instance, new object[1] { rpc }); ZNetPeer val = (ZNetPeer)((obj is ZNetPeer) ? obj : null); if (val != null && (int)ZNet.m_onlineBackend > 0) { FieldInfo fieldInfo = AccessTools.DeclaredField(typeof(ZNetPeer), "m_socket"); object? value = fieldInfo.GetValue(val); ZPlayFabSocket val2 = (ZPlayFabSocket)((value is ZPlayFabSocket) ? value : null); if (val2 != null) { typeof(ZPlayFabSocket).GetField("m_remotePlayerId").SetValue(bufferingSocket, val2.m_remotePlayerId); } fieldInfo.SetValue(val, bufferingSocket); } if (__state == null) { __state = new Dictionary<Assembly, BufferingSocket>(); } __state[Assembly.GetExecutingAssembly()] = bufferingSocket; } [HarmonyPostfix] private static void Postfix(Dictionary<Assembly, BufferingSocket> __state, ZNet __instance, ZRpc rpc) { ZRpc rpc2 = rpc; ZNet __instance2 = __instance; Dictionary<Assembly, BufferingSocket> __state2 = __state; ZNetPeer peer; if (__instance2.IsServer()) { object obj = AccessTools.DeclaredMethod(typeof(ZNet), "GetPeer", new Type[1] { typeof(ZRpc) }, (Type[])null).Invoke(__instance2, new object[1] { rpc2 }); peer = (ZNetPeer)((obj is ZNetPeer) ? obj : null); if (peer == null) { SendBufferedData(); } else { ((MonoBehaviour)__instance2).StartCoroutine(sendAsync()); } } void SendBufferedData() { if (rpc2.GetSocket() is BufferingSocket bufferingSocket) { AccessTools.DeclaredField(typeof(ZRpc), "m_socket").SetValue(rpc2, bufferingSocket.Original); object? obj2 = AccessTools.DeclaredMethod(typeof(ZNet), "GetPeer", new Type[1] { typeof(ZRpc) }, (Type[])null).Invoke(__instance2, new object[1] { rpc2 }); ZNetPeer val = (ZNetPeer)((obj2 is ZNetPeer) ? obj2 : null); if (val != null) { AccessTools.DeclaredField(typeof(ZNetPeer), "m_socket").SetValue(val, bufferingSocket.Original); } } BufferingSocket bufferingSocket2 = __state2[Assembly.GetExecutingAssembly()]; bufferingSocket2.finished = true; for (int i = 0; i < bufferingSocket2.Package.Count; i++) { if (i == bufferingSocket2.versionMatchQueued) { bufferingSocket2.Original.VersionMatch(); } bufferingSocket2.Original.Send(bufferingSocket2.Package[i]); } if (bufferingSocket2.Package.Count == bufferingSocket2.versionMatchQueued) { bufferingSocket2.Original.VersionMatch(); } } IEnumerator sendAsync() { foreach (ConfigSync configSync in configSyncs) { List<PackageEntry> entries = new List<PackageEntry>(); if (configSync.CurrentVersion != null) { entries.Add(new PackageEntry { section = "Internal", key = "serverversion", type = typeof(string), value = configSync.CurrentVersion }); } MethodInfo listContainsId = AccessTools.DeclaredMethod(typeof(ZNet), "ListContainsId", (Type[])null, (Type[])null); SyncedList adminList = (SyncedList)AccessTools.DeclaredField(typeof(ZNet), "m_adminList").GetValue(ZNet.instance); entries.Add(new PackageEntry { section = "Internal", key = "lockexempt", type = typeof(bool), value = (((object)listContainsId == null) ? ((object)adminList.Contains(rpc2.GetSocket().GetHostName())) : listContainsId.Invoke(ZNet.instance, new object[2] { adminList, rpc2.GetSocket().GetHostName() })) }); ZPackage package = ConfigsToPackage(Enumerable.Select(configSync.allConfigs, (OwnConfigEntryBase c) => c.BaseConfig), configSync.allCustomValues, entries, partial: false); yield return ((MonoBehaviour)__instance2).StartCoroutine(configSync.sendZPackage(new List<ZNetPeer> { peer }, package)); } SendBufferedData(); } } } private class PackageEntry { public string section = null; public string key = null; public Type type = null; public object? value; } [HarmonyPatch(typeof(ConfigEntryBase), "GetSerializedValue")] private static class PreventSavingServerInfo { [HarmonyPrefix] private static bool Prefix(ConfigEntryBase __instance, ref string __result) { OwnConfigEntryBase ownConfigEntryBase = configData(__instance); if (ownConfigEntryBase == null || isWritableConfig(ownConfigEntryBase)) { return true; } __result = TomlTypeConverter.ConvertToString(ownConfigEntryBase.LocalBaseValue, __instance.SettingType); return false; } } [HarmonyPatch(typeof(ConfigEntryBase), "SetSerializedValue")] private static class PreventConfigRereadChangingValues { [HarmonyPrefix] private static bool Prefix(ConfigEntryBase __instance, string value) { OwnConfigEntryBase ownConfigEntryBase = configData(__instance); if (ownConfigEntryBase == null || ownConfigEntryBase.LocalBaseValue == null) { return true; } try { ownConfigEntryBase.LocalBaseValue = TomlTypeConverter.ConvertToValue(value, __instance.SettingType); } catch (Exception ex) { Debug.LogWarning((object)$"Config value of setting \"{__instance.Definition}\" could not be parsed and will be ignored. Reason: {ex.Message}; Value: {value}"); } return false; } } private class InvalidDeserializationTypeException : Exception { public string expected = null; public string received = null; public string field = ""; } public static bool ProcessingServerUpdate; public readonly string Name; public string? DisplayName; public string? CurrentVersion; public string? MinimumRequiredVersion; public bool ModRequired = false; private bool? forceConfigLocking; private bool isSourceOfTruth = true; private static readonly HashSet<ConfigSync> configSyncs; private readonly HashSet<OwnConfigEntryBase> allConfigs = new HashSet<OwnConfigEntryBase>(); private HashSet<CustomSyncedValueBase> allCustomValues = new HashSet<CustomSyncedValueBase>(); private static bool isServer; private static bool lockExempt; private OwnConfigEntryBase? lockedConfig = null; private const byte PARTIAL_CONFIGS = 1; private const byte FRAGMENTED_CONFIG = 2; private const byte COMPRESSED_CONFIG = 4; private readonly Dictionary<string, SortedDictionary<int, byte[]>> configValueCache = new Dictionary<string, SortedDictionary<int, byte[]>>(); private readonly List<KeyValuePair<long, string>> cacheExpirations = new List<KeyValuePair<long, string>>(); private static long packageCounter; public bool IsLocked { get { bool? flag = forceConfigLocking; bool num; if (!flag.HasValue) { if (lockedConfig == null) { goto IL_0052; } num = ((IConvertible)lockedConfig.BaseConfig.BoxedValue).ToInt32(CultureInfo.InvariantCulture) != 0; } else { num = flag.GetValueOrDefault(); } if (!num) { goto IL_0052; } int result = ((!lockExempt) ? 1 : 0); goto IL_0053; IL_0053: return (byte)result != 0; IL_0052: result = 0; goto IL_0053; } set { forceC