Can someone confirm that my reversing is correct for the spell history structure -- I'm getting:
0x15F0A58
Thanks!
-Ev
Can someone confirm that my reversing is correct for the spell history structure -- I'm getting:
0x15F0A58
Thanks!
-Ev
I got 0x15F0A50 from Spell_C_GetSpellCooldown.
I haven't update for the patch yet... but the struct was this (as of 7.1)
Code:[StructLayout(LayoutKind.Sequential, Pack = 1)] public struct WowCooldownEntry { public IntPtr Previous; public IntPtr Next; public uint SpellId; public uint ItemId; public int unk2; public int StartTime; public int SpellOrItemCooldownDuration; public uint SpellCategoryId; public int CategoryCooldownStartTime; public int CategoryCooldownDuration; public byte HasCooldown; public byte pad1; public byte pad2; public byte pad3; public int GCDStartTime; public uint StartRecoveryCategoryId; public int GCDDuration; }
|Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|
What's the purpose of StartRecoveryCategoryId? Can't I just keep track of the SpellCategoryID and the Cat Start + Duration?
Its the GCD category