Brimir weapon scanner address looks wrong.
cshell base is 0x10000000 but this address is 02F607D0.
I checked this address in CE, value ?? so it isnt valid in CFNA.
You pictures look correct. I started making my own logger.
Mine would of given you AE8370 but this offset isnt the same as mine.
Code:
WeaponMgr- cshell.dll+C25BC8 / Offset = 0xC25BC8
ReloadAnimRatio- cshell.dll+C26800 / Offset = 0xC38
ChangeWeaponAnimRatio- cshell.dll+C26804 / Offset = 0xC3C
What are you using to view the memory?
Remember your address is cshell.dll+AE8370
The term you're looking for is offset not pointer.
A pointer is an address the points to another address.
The addresses we use are static, so we use the module base plus the offset.
The only time you would use a pointer is when the address we need is dynamic.