Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] How do I view all items from users inventory

Newbie Spellweaver
Joined
Dec 11, 2023
Messages
20
Reaction score
0
I just want to know how do i check their item in their vault

thanks :)
 
Experienced Elementalist
Joined
May 28, 2017
Messages
225
Reaction score
127
if you mean the global inventory then you can access the array in
C++:
ProfileData.Inventory

you usually iterate over it like


C++:
    for(uint32_t i=0; i<ProfileData.NumItems; i++)
    {
        const wiInventoryItem& wi= ProfileData.Inventory[i];
    }
 
Upvote 0
Back
Top