Skip to content

Commit

Permalink
3.0.5666.14749
Browse files Browse the repository at this point in the history
  • Loading branch information
Icehunter committed Jul 7, 2015
1 parent 85e1fa0 commit ca885a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions FFXIVAPP.Client/Memory/PlayerInfoWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,8 @@ private void ScanTimerElapsed(object sender, ElapsedEventArgs e)
enmityStructure = MemoryHandler.Instance.SigScanner.Locations["CHARMAP"] + 3384;
break;
default:
enmityStructure = MemoryHandler.ResolvePointerPath("AGRO");
enmityCount = MemoryHandler.Instance.GetInt16(MemoryHandler.ResolvePointerPath("AGRO_COUNT"));

//enmityCount = MemoryHandler.Instance.GetInt16(MemoryHandler.Instance.SigScanner.Locations["CHARMAP"] + 0x16C35C); // 0x1C590); // 116032
//enmityStructure = MemoryHandler.Instance.SigScanner.Locations["CHARMAP"] + 0x16BA5C; // 0x1CE94; // 118340;
enmityStructure = MemoryHandler.ResolvePointerPath("AGRO");
break;
}
var enmityEntries = new List<EnmityEntry>();
Expand Down Expand Up @@ -199,10 +196,10 @@ private void ScanTimerElapsed(object sender, ElapsedEventArgs e)
PlayerInfoMap = MemoryHandler.Instance.SigScanner.Locations["CHARMAP"] + 5724;
break;
default:
//PlayerInfoMap = MemoryHandler.Instance.SigScanner.Locations["CHARMAP"] + 0x16C380; // old: 115996;
PlayerInfoMap = MemoryHandler.ResolvePointerPath("PLAYERINFO");
break;
}
MemoryHandler.Instance.SigScanner.Locations.Add("PLAYERINFO", MemoryHandler.ResolvePointerPath("PLAYERINFO"));
MemoryHandler.Instance.SigScanner.Locations.Add("PLAYERINFO", PlayerInfoMap);
}
catch (Exception ex)
{
Expand Down
Binary file modified distribution/FFXIVAPP.Client.exe
Binary file not shown.

0 comments on commit ca885a3

Please sign in to comment.