I think I have found a pretty promising offset. I did a bunch of testing and it seems to work for what I am trying to do. I am very new to actual memory reading and found this using TSearch.
Code:
protected const uint PlayerComboPointGUID = 0x99C7B8;
This also can be derived with the following commonly used offsets:
Code:
protected const uint PlayerComboPoint = 0x99C759;
protected const uint PlayerComboPointGUID = PlayerComboPoint + 0x05F;
or:
Code:
protected const uint TARGET_GUID = 0x99C6B8;
protected const uint PlayerComboPointGUID = TARGET_GUID + 0x0100;
I included the other routes to the offset incase someone more knowedgeable than I can see a relationship.