mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
Co-authored-by: Dev <dev@dev.sp-tarkov.com> Co-authored-by: CWX <CWX@noreply.dev.sp-tarkov.com> Co-authored-by: DrakiaXYZ <drakiaxyz@noreply.dev.sp-tarkov.com> Co-authored-by: RaiRaiTheRaichu <rairaitheraichu@noreply.dev.sp-tarkov.com> Co-authored-by: CWX <cwx@noreply.dev.sp-tarkov.com> Co-authored-by: Kaeno <e> Reviewed-on: SPT-AKI/Modules#33
62 lines
2.1 KiB
C#
62 lines
2.1 KiB
C#
using Aki.Reflection.Patching;
|
|
using Aki.Reflection.Utils;
|
|
using EFT;
|
|
using System;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
namespace Aki.Custom.Patches
|
|
{
|
|
/// <summary>
|
|
/// SPT PMC enum value is high enough in wildspawntype it means the first aid class that gets init doesnt have an implementation
|
|
/// On heal event, remove all negative effects from limbs e.g. light/heavy bleeds
|
|
/// </summary>
|
|
public class PmcFirstAidPatch : ModulePatch
|
|
{
|
|
private static Type _targetType;
|
|
private static readonly string methodName = "FirstAidApplied";
|
|
|
|
public PmcFirstAidPatch()
|
|
{
|
|
_targetType = PatchConstants.EftTypes.FirstOrDefault(IsTargetType);
|
|
}
|
|
|
|
protected override MethodBase GetTargetMethod()
|
|
{
|
|
return _targetType.GetMethod(methodName, BindingFlags.Instance | BindingFlags.NonPublic);
|
|
}
|
|
|
|
/// <summary>
|
|
/// GCLass350 for client version 25782
|
|
/// </summary>
|
|
private bool IsTargetType(Type type)
|
|
{
|
|
if (type.GetMethod("GetHpPercent") != null && type.GetMethod("TryApplyToCurrentPart") != null)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
[PatchPrefix]
|
|
private static bool PatchPrefix(BotOwner ___botOwner_0)
|
|
{
|
|
if (___botOwner_0.IsRole((WildSpawnType)33) || ___botOwner_0.IsRole((WildSpawnType)34))
|
|
{
|
|
var healthController = ___botOwner_0.GetPlayer.ActiveHealthController;
|
|
|
|
healthController.RemoveNegativeEffects(EBodyPart.Head);
|
|
healthController.RemoveNegativeEffects(EBodyPart.Chest);
|
|
healthController.RemoveNegativeEffects(EBodyPart.Stomach);
|
|
healthController.RemoveNegativeEffects(EBodyPart.LeftLeg);
|
|
healthController.RemoveNegativeEffects(EBodyPart.RightLeg);
|
|
healthController.RemoveNegativeEffects(EBodyPart.LeftArm);
|
|
healthController.RemoveNegativeEffects(EBodyPart.RightArm);
|
|
}
|
|
|
|
return true; // Do original
|
|
}
|
|
}
|
|
}
|