• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[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