Hello,
I have search before posting, and this is what I came up with!
Im trying to dump buffs...
Code:
Const $AURA_COUNT_1 = 0xDD8
Const $AURA_COUNT_2 = 0xC5C
Const $AURA_TABLE_1 = 0xC64
Const $AURA_TABLE_2 = 0xC60
Const $AURA_SIZE = 0x18
Const $AURA_SPELL_ID = 0x8
$auraTable = $pBase + $AURA_TABLE_1
$auraCount = _BMReadUInt($handle, $pBase + $AURA_COUNT_1)
$i = $auraCount
$spellId = _BMReadUInt($handle, $auraTable + $AURA_SIZE * $i + $AURA_SPELL_ID)
MsgBox(64, "Buff", $spellId)
Now I know im doing something wrong as it always returns 0!
Any ideas?