Hi MMOwned,
I have got Unit, GameObject and Player name offset,
Code:
//Unit Name Offset 4.0.3.13329
unitOffset1 = ReadUint(currentUnit.BaseAddress + 0xA24);
unitOffset2 = ReadUnit(NameOffset1 + 0x60);
unitName = ReadString(NameOffset2, 20);
//GameObject Name Offset 4.0.3.13329
gameObjectOffset1 = ReadUint(currentGameObject.BaseAddress + 0x1CC);
gameObjectOffset2 = ReadUnit(gameObjectOffset1 + 0x94);
gameObjectName = ReadString(gameObjectOffset2, 20);
//Player Name Offset 4.0.3.13329
NameStore = 0x88FA90 + 0x8,
NameMask = 0x24,
NameBase = 0x1C,
NameString = 0x20
//use BlackRain player.Name function read it
but I can't find the Item and Container Name.I searched the threads, but can not found it also.
I got the WDB_CACHE_ITEMTEXT address is at 0x88FDF0 called by sub_922030(int a1, int a2), I tryuse BlackRain PlayerName function to read it, but failed.
anybody help?