请跟随下面的视频,了解如何将我们的网站安装为您主屏幕上的 Web 应用。
请注意: 目前,此功能需要通过内置的 Safari 浏览器访问网站。
order_without_power 说: Hey, try this Harmony patch. You can change 10 to the number of tiers you want. C#: [HarmonyPatch(typeof(CharacterHelper), "GetCharacterTier")] public static bool Prefix(CharacterObject character, ref int __result) { if (character.IsHero) { __result = 0; } __result = Math.Min(Math.Max(MathF.Ceiling(((float)character.Level - 5f) / 5f), 0), 10); return false; } 点击展开...
[HarmonyPatch(typeof(CharacterHelper), "GetCharacterTier")] public static bool Prefix(CharacterObject character, ref int __result) { if (character.IsHero) { __result = 0; } __result = Math.Min(Math.Max(MathF.Ceiling(((float)character.Level - 5f) / 5f), 0), 10); return false; }