Not sure how difficult this would be, but I want to create an inventory like in the game feed me oil
I would make an array to hold the things
local inventory = {}
inventory[1] = “item1”
inventory[2]= " black"
You should also look at loadsave.lua from Rob Miracle to save the inventory data.
I would make an array to hold the things
local inventory = {}
inventory[1] = “item1”
inventory[2]= " black"
You should also look at loadsave.lua from Rob Miracle to save the inventory data.