Dec 26, 2023 #1 dew84210za 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
Dec 26, 2023 #2 I IKaruzI15 Experienced Elementalist Joined May 28, 2017 Messages 244 Reaction score 147 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
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]; }