Hello MMOwned!
My question is am I reading Item Buff Id's correctly.
My code is:
Code:
public int MainHandBuffId
{
get
{
var MainHandBuff = WoW.Memory.ReadInt(WoW.Memory.ReadUInt(BaseAddress + Offsets.WowObject.Descriptor) + (uint)Offsets.PlayerFields.PLAYER_VISIBLE_ITEM_16_ENCHANTMENT*4);
return MainHandBuff;
}
}
Im read some Fishing buff ID's, here is what I got:
Code:
No buff = 0
Shiny Bauble = 17235968
NightCrawlers = 17301504
Bright Baubles = 17367040
Fishing Hat = 17367040
This is where I stopped because Bright Baubles & Fishing Hat are the same ID - this makes me think that I am doing something wrong