Hey
I've been working on a private bot for wow, and got most of the work set up, however, there is one thing that annoys me right now. I'm trying to check wether a Action is usable using IsUsableAction.
My code:
The problem is, no matter what number slot, they both return 0.Code:int IsUsableAction = Memory.Read<int>(Memory.BaseAdress + (uint)Offsets.ActionBar.IsUsableAction + (slot * 0x4)); int IsUsableActionNoMana = Memory.Read<int>(Memory.BaseAdress + (uint)Offsets.ActionBar.IsUsableActionNoMana + (slot * 0x4)); IsUsableAction = 0xB42648, IsUsableActionNoMana = 0xB42408,
Any help is greatly appreciated
- Pladi