#Inventory Help
15 messages · Page 1 of 1 (latest)
There simply are not any "plug and play" inventory systems. And they are not the easiest thing to make either.
First you gotta figure out exactly what your inventory system should look and feel like. (Diablo? Minecraft? WoW? DayZ? etc etc)
Then it's down to build the actual UI for it, and then build a script (or several) to handle what's in your inventory, how the inventory UI is handled, how to equip/unequip items from inventory etc etc.
But very very simplified, you need an array wich keeps track of your items in your inventory. So when you pick something up, item is added to the array. Your Inventory UI will have to reflect the items in the array.
Just know that if you're a beginner, inventory systems are not the easiest. It was one of the first things i tried aswell because i thought i'd make a diablo-like game!
I gave up eventually though.....
I kind of got the inventory to work... ish.
But it wasn't good 😛
I'd advice just looking up random youtube guides for inventories, to get some grasp of what it entails to try and make one