Reversing - finding information about items in my inventory

02/13/2025 04:17 Awesome Smile#1
I'm currently trying to find out about items in players inventory.. so far I found the pointer to the amount of current items in inventory at "PathOfExileSteam.exe"+03BA8868 + 38 + 228 + 378 + 8 + 30 + 8 + 190 - so I looked at nearby memory regions, and at 170 as last offset instead of 190, I found something that has something to do with each inventory slot

Edit:

So every day I learn more :-) today I learned that dissecting structs in CE is sometimes not very accurate, I did the same in ReclassEx and now found a pointer for every item slot in inventory :-)

[Only registered and activated users can see links. Click Here To Register...]

Unfortunately, I still cant find out what item is in that slot - but I guess I just have to dig deeper :D
02/13/2025 06:23 nÂsty.#2
Quote:
Its same as PoE 1. just different offsets.

GameStates + 0x88 => IngameState pointer
InGameState + 0x298 => AreaInstance pointer
AreaInstance + 0xAF8 => EntityList
NOT MY
02/13/2025 11:37 Awesome Smile#3
Quote:
Originally Posted by nÂsty. View Post
NOT MY
read that in other places too that one can look up poe1 stuff and its similar just with different offsets, but to be honest I wouldnt even know where to look if I only have the base offset - I mean, as far as I know, there will be a full pointerchain to get to these addresses? and not only the base pointer
02/18/2025 17:51 nÂsty.#4
Quote:
Originally Posted by Awesome Smile View Post
read that in other places too that one can look up poe1 stuff and its similar just with different offsets, but to be honest I wouldnt even know where to look if I only have the base offset - I mean, as far as I know, there will be a full pointerchain to get to these addresses? and not only the base pointer
Similiar Poe1 =
The pointer chain acts as a guide to confirm you're on the right path. If your chain doesn't eventually lead to the expected structure—like the Entity List base address—it’s a sign that the approach might be off. In that case, you can safely discard that pointer path and try a different one, ensuring each step confirms you're moving in the correct direction.
09/10/2025 08:17 manuoderso#5
Quote:
Originally Posted by Awesome Smile View Post
I'm currently trying to find out about items in players inventory.. so far I found the pointer to the amount of current items in inventory at "PathOfExileSteam.exe"+03BA8868 + 38 + 228 + 378 + 8 + 30 + 8 + 190 - so I looked at nearby memory regions, and at 170 as last offset instead of 190, I found something that has something to do with each inventory slot

Edit:

So every day I learn more :-) today I learned that dissecting structs in CE is sometimes not very accurate, I did the same in ReclassEx and now found a pointer for every item slot in inventory :-)

[Only registered and activated users can see links. Click Here To Register...]

Unfortunately, I still cant find out what item is in that slot - but I guess I just have to dig deeper :D

Hi, You could try finding the item quantity and run a pointer scan on it. Then, remove one offset and explore the structure you will often find fields like Item ID, Rarity, and Quantity there. Sometimes you can even locate the Item Slot if it’s movable (e.g hotbar), though that part isn’t always needed