mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-11 23:07:59 +08:00
[+] Basic fix
This commit is contained in:
@@ -3,15 +3,13 @@ using AMDaemon.Allnet;
|
||||
using HarmonyLib;
|
||||
using Manager;
|
||||
using Manager.Operation;
|
||||
using IniFile = MAI2System.IniFile;
|
||||
using Network = AMDaemon.Network;
|
||||
|
||||
namespace AquaMai.Fix;
|
||||
|
||||
public class BasicFix
|
||||
{
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(IniFile), "clear")]
|
||||
[HarmonyPatch(typeof(MAI2System.IniFile), "clear")]
|
||||
private static bool PreIniFileClear()
|
||||
{
|
||||
return false;
|
||||
@@ -26,7 +24,7 @@ public class BasicFix
|
||||
}
|
||||
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(Network), "IsLanAvailable", MethodType.Getter)]
|
||||
[HarmonyPatch(typeof(AMDaemon.Network), "IsLanAvailable", MethodType.Getter)]
|
||||
private static bool PreIsLanAvailable(ref bool __result)
|
||||
{
|
||||
__result = false;
|
||||
@@ -42,4 +40,12 @@ public class BasicFix
|
||||
____operationData.ServerUri = Auth.GameServerUri;
|
||||
}
|
||||
}
|
||||
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(Manager.Credit), "IsFreePlay")]
|
||||
private static bool PreIsFreePlay(ref bool __result)
|
||||
{
|
||||
__result = true;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
86
AquaMai/Fix/DisableReboot.cs
Normal file
86
AquaMai/Fix/DisableReboot.cs
Normal file
@@ -0,0 +1,86 @@
|
||||
using HarmonyLib;
|
||||
using Manager.Operation;
|
||||
|
||||
namespace AquaMai.Fix
|
||||
{
|
||||
public class DisableReboot
|
||||
{
|
||||
// IsAutoRebootNeeded
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(MaintenanceTimer), "IsAutoRebootNeeded")]
|
||||
public static bool IsAutoRebootNeeded(ref bool __result)
|
||||
{
|
||||
__result = false;
|
||||
return false;
|
||||
}
|
||||
|
||||
// IsUnderServerMaintenance
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(MaintenanceTimer), "IsUnderServerMaintenance")]
|
||||
public static bool IsUnderServerMaintenance(ref bool __result)
|
||||
{
|
||||
__result = false;
|
||||
return false;
|
||||
}
|
||||
|
||||
// RemainingMinutes
|
||||
// Original: private int RemainingMinutes => (this._secServerMaintenance + 59) / 60;
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(MaintenanceTimer), "RemainingMinutes", MethodType.Getter)]
|
||||
public static bool RemainingMinutes(ref int __result)
|
||||
{
|
||||
__result = 600;
|
||||
return false;
|
||||
}
|
||||
|
||||
// GetAutoRebootSec
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(MaintenanceTimer), "GetAutoRebootSec")]
|
||||
public static bool GetAutoRebootSec(ref int __result)
|
||||
{
|
||||
__result = 60 * 60 * 10;
|
||||
return false;
|
||||
}
|
||||
|
||||
// GetServerMaintenanceSec
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(MaintenanceTimer), "GetServerMaintenanceSec")]
|
||||
public static bool GetServerMaintenanceSec(ref int __result)
|
||||
{
|
||||
__result = 60 * 60 * 10;
|
||||
return false;
|
||||
}
|
||||
|
||||
// Execute
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(MaintenanceTimer), "Execute")]
|
||||
public static bool Execute(MaintenanceTimer __instance)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
// UpdateTimes
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(MaintenanceTimer), "UpdateTimes")]
|
||||
public static bool UpdateTimes(MaintenanceTimer __instance)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(ClosingTimer), "IsShowRemainingMinutes")]
|
||||
public static bool IsShowRemainingMinutes(ref bool __result)
|
||||
{
|
||||
__result = false;
|
||||
return false;
|
||||
}
|
||||
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(ClosingTimer), "IsClosed")]
|
||||
public static bool IsClosed(ref bool __result)
|
||||
{
|
||||
__result = false;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user