[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 :)
 
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