Target Info

add target info to ClientState
This commit is contained in:
pohky 2020-07-28 10:40:32 +02:00
parent 8b749be730
commit d9c8eeedd3
3 changed files with 38 additions and 0 deletions

View file

@ -10,6 +10,7 @@ namespace Dalamud.Game.ClientState
public IntPtr LocalContentId { get; private set; }
public IntPtr JobGaugeData { get; private set; }
public IntPtr KeyboardState { get; private set; }
public IntPtr TargetManager { get; private set; }
// Functions
public IntPtr SetupTerritoryType { get; private set; }
@ -35,6 +36,8 @@ namespace Dalamud.Game.ClientState
PartyListUpdate = sig.ScanText("E8 ?? ?? ?? ?? 49 8B D4 4C 8D 87 ?? ?? ?? ??");
ConditionFlags = sig.GetStaticAddressFromSig("48 8D 0D ?? ?? ?? ?? BA ?? ?? ?? ?? 45 33 C0");
TargetManager = sig.GetStaticAddressFromSig("48 8B 05 ?? ?? ?? ?? 48 8D 0D ?? ?? ?? ?? FF 50 ?? 48 85 DB", 3);
}
}
}