How to get Inventory Information

07/09/2025 09:49 lachmed#1
Hey guys,

I´m trying to read the inventory data.
Is it possible to get the information from your equipped items such like level, durability, blues and whites?

I tried to read the 0x3013 packet but i the only information i can extract is the item slot and itemRefId.

Is there any other packet i should look for? If not, can someone help me with the 3013 packet?

I´m trying to do this on vSRO Files.

Thanks for any help :)
07/09/2025 09:56 NecroEyes#2
Quote:
Originally Posted by lachmed View Post
Hey guys,

I´m trying to read the inventory data.
Is it possible to get the information from your equipped items such like level, durability, blues and whites?

I tried to read the 0x3013 packet but i the only information i can extract is the item slot and itemRefId.

Is there any other packet i should look for? If not, can someone help me with the 3013 packet?

I´m trying to do this on vSRO Files.

Thanks for any help :)
You must look up the itemRefID in the database tables like:
RefObjCommon
RefObjItem
RefObjEquip
RefObjStruct
RefObjItemEtc
07/09/2025 11:47 lachmed#3
Quote:
Originally Posted by NecroEyes View Post
You must look up the itemRefID in the database tables like:
RefObjCommon
RefObjItem
RefObjEquip
RefObjStruct
RefObjItemEtc
Isn´t this only possible if i run the server?
What i want to do is get the information as a player not as an owner.
So just like the Bots do.
Is that possible?
07/09/2025 11:49 NecroEyes#4
Quote:
Originally Posted by lachmed View Post
Isn´t this only possible if i run the server?
What i want to do is get the information as a player not as an owner.
So just like the Bots do.
Is that possible?
the solution i gaved you is as a owner.

as a player i never tried it to know.
07/09/2025 18:43 lachmed#5
I read that it should be 3013 but it seems Like that its not the case.
07/12/2025 06:41 AceSpace#6
Your only option is parsing CharacterData packet.

You should check open source bots like [Only registered and activated users can see links. Click Here To Register...] and [Only registered and activated users can see links. Click Here To Register...]

They should have these packets parsed and inventory logic.
07/12/2025 23:11 lachmed#7
Quote:
Originally Posted by AceSpace View Post
Your only option is parsing CharacterData packet.

You should check open source bots like [Only registered and activated users can see links. Click Here To Register...] and [Only registered and activated users can see links. Click Here To Register...]

They should have these packets parsed and inventory logic.
I see. Thank you, I will try it out