mirror of
https://github.com/awgil/ffxiv_reverse.git
synced 2025-04-21 14:47:45 +00:00
Fix for patch.
This commit is contained in:
parent
6d1f714981
commit
957b94f40e
2 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,7 @@ unsafe class PacketInterceptor : IDisposable
|
||||||
{
|
{
|
||||||
_decoder = decoder;
|
_decoder = decoder;
|
||||||
|
|
||||||
var fetchAddress = Service.SigScanner.ScanText("E8 ?? ?? ?? ?? 84 C0 0F 85 ?? ?? ?? ?? 44 0F B6 64 24");
|
var fetchAddress = Service.SigScanner.ScanText("E8 ?? ?? ?? ?? 84 C0 0F 85 ?? ?? ?? ?? 48 8D 35");
|
||||||
Service.LogInfo($"Fetch address: 0x{fetchAddress:X}");
|
Service.LogInfo($"Fetch address: 0x{fetchAddress:X}");
|
||||||
_fetchHook = Hook<FetchReceivedPacketDelegate>.FromAddress(fetchAddress, FetchReceivedPacketDetour);
|
_fetchHook = Hook<FetchReceivedPacketDelegate>.FromAddress(fetchAddress, FetchReceivedPacketDetour);
|
||||||
}
|
}
|
||||||
|
|
|
@ -429,6 +429,7 @@ public enum ActorControlCategory : ushort
|
||||||
TripleTriadUnknown = 1205, // from dissector
|
TripleTriadUnknown = 1205, // from dissector
|
||||||
FateNpc = 2351, // from dissector
|
FateNpc = 2351, // from dissector
|
||||||
FateInit = 2353, // from dissector
|
FateInit = 2353, // from dissector
|
||||||
|
FateAssignID = 2356, // p1 = fate id, assigned to main obj
|
||||||
FateStart = 2357, // from dissector
|
FateStart = 2357, // from dissector
|
||||||
FateEnd = 2358, // from dissector
|
FateEnd = 2358, // from dissector
|
||||||
FateProgress = 2366, // from dissector
|
FateProgress = 2366, // from dissector
|
||||||
|
|
Loading…
Add table
Reference in a new issue