Hello, I'm having problem finding a base address for inventory in Runescape 3. I'm about to make a realtime calculator (xp per hour). I need to only read the values from the process to do calculations.

I've tried both ways of finding base pointer:
1. Pointer scanner
2. "Find out what accesses ..."

Using the pointer scanner:
After I reload the game none of the pointers (over 500 million) point to correct value (max level 10).

Find out what accesses:
1. Found address of first item in inventory (V)
2. There is just one pointer (P1) which points to this value (offset 0) PV->V
3. After "What uses" of P1 -> again just one address (P2) which points to P1
4. After scanning for address P2 it shows no addresses

Is there a chance there are some nasty things preventing from finding it?

Here is a quick guide of finding inventory pointer:
1. Use process "rs2client.exe"
2. Put coins on first slot of inventory (or any item you know id of -> itemdb.biz is item database)
3. Scan for "995" (coins itemId)
4. Move coins to different slot and leave first one empty
5. Scan for Changed value
6. There are just two addresses with value -1 (4 294 967 295)
7. The one with higher address is the one

I would appreciate if anyone could point me to right direction.